Mount external HDD with writing permissions
Clash Royale CLAN TAG#URR8PPP
up vote
-2
down vote
favorite
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
mount external-hdd readonly
add a comment |Â
up vote
-2
down vote
favorite
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
mount external-hdd readonly
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
add a comment |Â
up vote
-2
down vote
favorite
up vote
-2
down vote
favorite
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
mount external-hdd readonly
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
mount external-hdd readonly
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
add a comment |Â
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
add a comment |Â
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/
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
add a comment |Â
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/
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
add a comment |Â
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/
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
add a comment |Â
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/
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/
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
add a comment |Â
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
add a comment |Â
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
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
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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