Mount external HDD with writing permissions

The name of the pictureThe name of the pictureThe name of the pictureClash Royale CLAN TAG#URR8PPP











up vote
-2
down vote

favorite
1












I'm using a 2.7T Porsche Design Desktop Drive (external HDD) at work and I need to mount it on a Proxmox 4.4-13 server. Currently I have several personal info but also have around 1TB free and the Proxmox server is running out of space. So after plug-in the disk to the server and execute fdisk -l the output is:



Device Boot Start End Sectors Size Id Type
/dev/sdc1 * 63 732566645 732566583 2.7T 7 HPFS/NTFS/exFAT


And the output for blkid is:



/dev/sdc1: LABEL="linux" UUID="2AB890F5B890C12D" TYPE="ntfs"


So far Proxmox is listing the external device with the identifier sdc1. Now I need to create a mount point for the external HDD. I won't use /mnt/ because Proxmox has some relevant info already there. The directory will be created at /home/ and the name will be mountpoint so:



mkdir mountpoint


The next steps show the process of mounting the device (mount) with rw permission, entering the mountpoint file (cd) and listing the files within (ls)



root@pve02:/home# mount -o rw /dev/sdc1 /home/mountpoint/
root@pve02:/home# cd mountpoint/
root@pve02:/home/mountpoint# ls
admin.jpg BackupsELEKA Pedro $RECYCLE.BIN System Volume Information
root@pve02:/home/mountpoint#


As the picture describes, the mount process was good, the ls command lists all the folder inside the external HDD. However when I try to create a folder (mkdir) or even create a file (touch) I got this:



root@pve02:/home/mountpoint# mkdir test
mkdir: cannot create directory ‘test’: Read-only file system
root@pve02:/home/mountpoint#


Then WHY? Didn't the option rw specify to allow read and write on the external disk? I have to say I tried to create folder and files inside a folder (Pedro and BackupsELEKA) and still nothing.



The thing is this should be a simple process to achieve, not a big deal, just like any other OS could do, why so difficult?



I'm posting this question after reading several posts such as:
https://askubuntu.com/questions/333287/external-hard-disk-read-only
and
https://askubuntu.com/questions/47538/how-to-make-read-only-file-system-writable







share|improve this question






















  • Don't post screenshots of text, paste the actual text.
    – jasonwryan
    Jan 4 at 21:14










  • I don't get why that could be a reason to downvote the post, still I will put the actual text.
    – Ophion
    Jan 4 at 21:18














up vote
-2
down vote

favorite
1












I'm using a 2.7T Porsche Design Desktop Drive (external HDD) at work and I need to mount it on a Proxmox 4.4-13 server. Currently I have several personal info but also have around 1TB free and the Proxmox server is running out of space. So after plug-in the disk to the server and execute fdisk -l the output is:



Device Boot Start End Sectors Size Id Type
/dev/sdc1 * 63 732566645 732566583 2.7T 7 HPFS/NTFS/exFAT


And the output for blkid is:



/dev/sdc1: LABEL="linux" UUID="2AB890F5B890C12D" TYPE="ntfs"


So far Proxmox is listing the external device with the identifier sdc1. Now I need to create a mount point for the external HDD. I won't use /mnt/ because Proxmox has some relevant info already there. The directory will be created at /home/ and the name will be mountpoint so:



mkdir mountpoint


The next steps show the process of mounting the device (mount) with rw permission, entering the mountpoint file (cd) and listing the files within (ls)



root@pve02:/home# mount -o rw /dev/sdc1 /home/mountpoint/
root@pve02:/home# cd mountpoint/
root@pve02:/home/mountpoint# ls
admin.jpg BackupsELEKA Pedro $RECYCLE.BIN System Volume Information
root@pve02:/home/mountpoint#


As the picture describes, the mount process was good, the ls command lists all the folder inside the external HDD. However when I try to create a folder (mkdir) or even create a file (touch) I got this:



root@pve02:/home/mountpoint# mkdir test
mkdir: cannot create directory ‘test’: Read-only file system
root@pve02:/home/mountpoint#


Then WHY? Didn't the option rw specify to allow read and write on the external disk? I have to say I tried to create folder and files inside a folder (Pedro and BackupsELEKA) and still nothing.



The thing is this should be a simple process to achieve, not a big deal, just like any other OS could do, why so difficult?



I'm posting this question after reading several posts such as:
https://askubuntu.com/questions/333287/external-hard-disk-read-only
and
https://askubuntu.com/questions/47538/how-to-make-read-only-file-system-writable







share|improve this question






















  • Don't post screenshots of text, paste the actual text.
    – jasonwryan
    Jan 4 at 21:14










  • I don't get why that could be a reason to downvote the post, still I will put the actual text.
    – Ophion
    Jan 4 at 21:18












up vote
-2
down vote

favorite
1









up vote
-2
down vote

favorite
1






1





I'm using a 2.7T Porsche Design Desktop Drive (external HDD) at work and I need to mount it on a Proxmox 4.4-13 server. Currently I have several personal info but also have around 1TB free and the Proxmox server is running out of space. So after plug-in the disk to the server and execute fdisk -l the output is:



Device Boot Start End Sectors Size Id Type
/dev/sdc1 * 63 732566645 732566583 2.7T 7 HPFS/NTFS/exFAT


And the output for blkid is:



/dev/sdc1: LABEL="linux" UUID="2AB890F5B890C12D" TYPE="ntfs"


So far Proxmox is listing the external device with the identifier sdc1. Now I need to create a mount point for the external HDD. I won't use /mnt/ because Proxmox has some relevant info already there. The directory will be created at /home/ and the name will be mountpoint so:



mkdir mountpoint


The next steps show the process of mounting the device (mount) with rw permission, entering the mountpoint file (cd) and listing the files within (ls)



root@pve02:/home# mount -o rw /dev/sdc1 /home/mountpoint/
root@pve02:/home# cd mountpoint/
root@pve02:/home/mountpoint# ls
admin.jpg BackupsELEKA Pedro $RECYCLE.BIN System Volume Information
root@pve02:/home/mountpoint#


As the picture describes, the mount process was good, the ls command lists all the folder inside the external HDD. However when I try to create a folder (mkdir) or even create a file (touch) I got this:



root@pve02:/home/mountpoint# mkdir test
mkdir: cannot create directory ‘test’: Read-only file system
root@pve02:/home/mountpoint#


Then WHY? Didn't the option rw specify to allow read and write on the external disk? I have to say I tried to create folder and files inside a folder (Pedro and BackupsELEKA) and still nothing.



The thing is this should be a simple process to achieve, not a big deal, just like any other OS could do, why so difficult?



I'm posting this question after reading several posts such as:
https://askubuntu.com/questions/333287/external-hard-disk-read-only
and
https://askubuntu.com/questions/47538/how-to-make-read-only-file-system-writable







share|improve this question














I'm using a 2.7T Porsche Design Desktop Drive (external HDD) at work and I need to mount it on a Proxmox 4.4-13 server. Currently I have several personal info but also have around 1TB free and the Proxmox server is running out of space. So after plug-in the disk to the server and execute fdisk -l the output is:



Device Boot Start End Sectors Size Id Type
/dev/sdc1 * 63 732566645 732566583 2.7T 7 HPFS/NTFS/exFAT


And the output for blkid is:



/dev/sdc1: LABEL="linux" UUID="2AB890F5B890C12D" TYPE="ntfs"


So far Proxmox is listing the external device with the identifier sdc1. Now I need to create a mount point for the external HDD. I won't use /mnt/ because Proxmox has some relevant info already there. The directory will be created at /home/ and the name will be mountpoint so:



mkdir mountpoint


The next steps show the process of mounting the device (mount) with rw permission, entering the mountpoint file (cd) and listing the files within (ls)



root@pve02:/home# mount -o rw /dev/sdc1 /home/mountpoint/
root@pve02:/home# cd mountpoint/
root@pve02:/home/mountpoint# ls
admin.jpg BackupsELEKA Pedro $RECYCLE.BIN System Volume Information
root@pve02:/home/mountpoint#


As the picture describes, the mount process was good, the ls command lists all the folder inside the external HDD. However when I try to create a folder (mkdir) or even create a file (touch) I got this:



root@pve02:/home/mountpoint# mkdir test
mkdir: cannot create directory ‘test’: Read-only file system
root@pve02:/home/mountpoint#


Then WHY? Didn't the option rw specify to allow read and write on the external disk? I have to say I tried to create folder and files inside a folder (Pedro and BackupsELEKA) and still nothing.



The thing is this should be a simple process to achieve, not a big deal, just like any other OS could do, why so difficult?



I'm posting this question after reading several posts such as:
https://askubuntu.com/questions/333287/external-hard-disk-read-only
and
https://askubuntu.com/questions/47538/how-to-make-read-only-file-system-writable









share|improve this question













share|improve this question




share|improve this question








edited Jan 4 at 21:23

























asked Jan 4 at 21:08









Ophion

34




34











  • Don't post screenshots of text, paste the actual text.
    – jasonwryan
    Jan 4 at 21:14










  • I don't get why that could be a reason to downvote the post, still I will put the actual text.
    – Ophion
    Jan 4 at 21:18
















  • Don't post screenshots of text, paste the actual text.
    – jasonwryan
    Jan 4 at 21:14










  • I don't get why that could be a reason to downvote the post, still I will put the actual text.
    – Ophion
    Jan 4 at 21:18















Don't post screenshots of text, paste the actual text.
– jasonwryan
Jan 4 at 21:14




Don't post screenshots of text, paste the actual text.
– jasonwryan
Jan 4 at 21:14












I don't get why that could be a reason to downvote the post, still I will put the actual text.
– Ophion
Jan 4 at 21:18




I don't get why that could be a reason to downvote the post, still I will put the actual text.
– Ophion
Jan 4 at 21:18










1 Answer
1






active

oldest

votes

















up vote
0
down vote



accepted










it's an ntfs filesystem , so you must pass the right type of filesystem to the mount command



mount -t ntfs-3g /dev/sdc1 /home/mountpoint/





share|improve this answer




















  • You should explain there is a performance impact to using that and why his original command didn't work.
    – jdwolf
    Jan 4 at 21:23










  • After running that command I get: mount: unknown filesystem type 'ntfs-3g'
    – Ophion
    Jan 4 at 21:25










  • Looks like I don't have ntfs-3g installed, going out from work, will feed tomorrow the result after installing ntfs-3g
    – Ophion
    Jan 4 at 21:30










  • you don't have the ntfs-3g package already installed on your system.
    – D'Arcy Nader
    Jan 4 at 21:31










  • I updated repositories then did apt-get install ntfs-3g. Finally mount -t ntfs-3g /dev/sdc1 /home/mountpoint as @D'ArcyNader suggested and now I can create directories inside the external drive.
    – Ophion
    Jan 5 at 12:35










Your Answer







StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "106"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
convertImagesToLinks: false,
noModals: false,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);








 

draft saved


draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f414857%2fmount-external-hdd-with-writing-permissions%23new-answer', 'question_page');

);

Post as a guest






























1 Answer
1






active

oldest

votes








1 Answer
1






active

oldest

votes









active

oldest

votes






active

oldest

votes








up vote
0
down vote



accepted










it's an ntfs filesystem , so you must pass the right type of filesystem to the mount command



mount -t ntfs-3g /dev/sdc1 /home/mountpoint/





share|improve this answer




















  • You should explain there is a performance impact to using that and why his original command didn't work.
    – jdwolf
    Jan 4 at 21:23










  • After running that command I get: mount: unknown filesystem type 'ntfs-3g'
    – Ophion
    Jan 4 at 21:25










  • Looks like I don't have ntfs-3g installed, going out from work, will feed tomorrow the result after installing ntfs-3g
    – Ophion
    Jan 4 at 21:30










  • you don't have the ntfs-3g package already installed on your system.
    – D'Arcy Nader
    Jan 4 at 21:31










  • I updated repositories then did apt-get install ntfs-3g. Finally mount -t ntfs-3g /dev/sdc1 /home/mountpoint as @D'ArcyNader suggested and now I can create directories inside the external drive.
    – Ophion
    Jan 5 at 12:35














up vote
0
down vote



accepted










it's an ntfs filesystem , so you must pass the right type of filesystem to the mount command



mount -t ntfs-3g /dev/sdc1 /home/mountpoint/





share|improve this answer




















  • You should explain there is a performance impact to using that and why his original command didn't work.
    – jdwolf
    Jan 4 at 21:23










  • After running that command I get: mount: unknown filesystem type 'ntfs-3g'
    – Ophion
    Jan 4 at 21:25










  • Looks like I don't have ntfs-3g installed, going out from work, will feed tomorrow the result after installing ntfs-3g
    – Ophion
    Jan 4 at 21:30










  • you don't have the ntfs-3g package already installed on your system.
    – D'Arcy Nader
    Jan 4 at 21:31










  • I updated repositories then did apt-get install ntfs-3g. Finally mount -t ntfs-3g /dev/sdc1 /home/mountpoint as @D'ArcyNader suggested and now I can create directories inside the external drive.
    – Ophion
    Jan 5 at 12:35












up vote
0
down vote



accepted







up vote
0
down vote



accepted






it's an ntfs filesystem , so you must pass the right type of filesystem to the mount command



mount -t ntfs-3g /dev/sdc1 /home/mountpoint/





share|improve this answer












it's an ntfs filesystem , so you must pass the right type of filesystem to the mount command



mount -t ntfs-3g /dev/sdc1 /home/mountpoint/






share|improve this answer












share|improve this answer



share|improve this answer










answered Jan 4 at 21:22









D'Arcy Nader

678414




678414











  • You should explain there is a performance impact to using that and why his original command didn't work.
    – jdwolf
    Jan 4 at 21:23










  • After running that command I get: mount: unknown filesystem type 'ntfs-3g'
    – Ophion
    Jan 4 at 21:25










  • Looks like I don't have ntfs-3g installed, going out from work, will feed tomorrow the result after installing ntfs-3g
    – Ophion
    Jan 4 at 21:30










  • you don't have the ntfs-3g package already installed on your system.
    – D'Arcy Nader
    Jan 4 at 21:31










  • I updated repositories then did apt-get install ntfs-3g. Finally mount -t ntfs-3g /dev/sdc1 /home/mountpoint as @D'ArcyNader suggested and now I can create directories inside the external drive.
    – Ophion
    Jan 5 at 12:35
















  • You should explain there is a performance impact to using that and why his original command didn't work.
    – jdwolf
    Jan 4 at 21:23










  • After running that command I get: mount: unknown filesystem type 'ntfs-3g'
    – Ophion
    Jan 4 at 21:25










  • Looks like I don't have ntfs-3g installed, going out from work, will feed tomorrow the result after installing ntfs-3g
    – Ophion
    Jan 4 at 21:30










  • you don't have the ntfs-3g package already installed on your system.
    – D'Arcy Nader
    Jan 4 at 21:31










  • I updated repositories then did apt-get install ntfs-3g. Finally mount -t ntfs-3g /dev/sdc1 /home/mountpoint as @D'ArcyNader suggested and now I can create directories inside the external drive.
    – Ophion
    Jan 5 at 12:35















You should explain there is a performance impact to using that and why his original command didn't work.
– jdwolf
Jan 4 at 21:23




You should explain there is a performance impact to using that and why his original command didn't work.
– jdwolf
Jan 4 at 21:23












After running that command I get: mount: unknown filesystem type 'ntfs-3g'
– Ophion
Jan 4 at 21:25




After running that command I get: mount: unknown filesystem type 'ntfs-3g'
– Ophion
Jan 4 at 21:25












Looks like I don't have ntfs-3g installed, going out from work, will feed tomorrow the result after installing ntfs-3g
– Ophion
Jan 4 at 21:30




Looks like I don't have ntfs-3g installed, going out from work, will feed tomorrow the result after installing ntfs-3g
– Ophion
Jan 4 at 21:30












you don't have the ntfs-3g package already installed on your system.
– D'Arcy Nader
Jan 4 at 21:31




you don't have the ntfs-3g package already installed on your system.
– D'Arcy Nader
Jan 4 at 21:31












I updated repositories then did apt-get install ntfs-3g. Finally mount -t ntfs-3g /dev/sdc1 /home/mountpoint as @D'ArcyNader suggested and now I can create directories inside the external drive.
– Ophion
Jan 5 at 12:35




I updated repositories then did apt-get install ntfs-3g. Finally mount -t ntfs-3g /dev/sdc1 /home/mountpoint as @D'ArcyNader suggested and now I can create directories inside the external drive.
– Ophion
Jan 5 at 12:35












 

draft saved


draft discarded


























 


draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f414857%2fmount-external-hdd-with-writing-permissions%23new-answer', 'question_page');

);

Post as a guest













































































Popular posts from this blog

How to check contact read email or not when send email to Individual?

Bahrain

Postfix configuration issue with fips on centos 7; mailgun relay