NTFS Permissions
I'm running ubuntu 13.10 x86_64 and I have modified /etc/fstab to mount my NTFS HDD with permissions but I'm getting some permissions errors because the owner is "root" instead of my user.
Thanks in advance
P.S: I had no problems doing this in Ubuntu 13.04 32bits
EDIT:
fstab content:
#/etc/fstab: static file system information.
#Use 'blkid' to print the universally unique identifier for a
#device; this may be used with UUID= as a more robust way to name devices
#that works even if disks are added and removed. See fstab(5).
#<file system> <mount point> <type> <options> <dump> <pass>
#/ was on /dev/sda5 during installation
UUID=3e857b61-2d2b-469a-a3eb-de1cf4d5130a / ext4 errors=remount-ro 0
#/home was on /dev/sda7 during installation
#UUID=14887804-6799-443e-955f-6b2872cd441a /home ext4 defaults 0 2
#swap was on /dev/sda6 during installation
#UUID=2da59282-61ee-40d2-821b-2042ff556748 none swap sw 0 0
#UUID=4A1499C11499B085 /media/ivykoko/269Gb ntfs umask=0000,utf8 0 0
permissions ntfs
add a comment |
I'm running ubuntu 13.10 x86_64 and I have modified /etc/fstab to mount my NTFS HDD with permissions but I'm getting some permissions errors because the owner is "root" instead of my user.
Thanks in advance
P.S: I had no problems doing this in Ubuntu 13.04 32bits
EDIT:
fstab content:
#/etc/fstab: static file system information.
#Use 'blkid' to print the universally unique identifier for a
#device; this may be used with UUID= as a more robust way to name devices
#that works even if disks are added and removed. See fstab(5).
#<file system> <mount point> <type> <options> <dump> <pass>
#/ was on /dev/sda5 during installation
UUID=3e857b61-2d2b-469a-a3eb-de1cf4d5130a / ext4 errors=remount-ro 0
#/home was on /dev/sda7 during installation
#UUID=14887804-6799-443e-955f-6b2872cd441a /home ext4 defaults 0 2
#swap was on /dev/sda6 during installation
#UUID=2da59282-61ee-40d2-821b-2042ff556748 none swap sw 0 0
#UUID=4A1499C11499B085 /media/ivykoko/269Gb ntfs umask=0000,utf8 0 0
permissions ntfs
Please post/etc/fstabcontent.
– Web-E
Nov 1 '13 at 14:08
add a comment |
I'm running ubuntu 13.10 x86_64 and I have modified /etc/fstab to mount my NTFS HDD with permissions but I'm getting some permissions errors because the owner is "root" instead of my user.
Thanks in advance
P.S: I had no problems doing this in Ubuntu 13.04 32bits
EDIT:
fstab content:
#/etc/fstab: static file system information.
#Use 'blkid' to print the universally unique identifier for a
#device; this may be used with UUID= as a more robust way to name devices
#that works even if disks are added and removed. See fstab(5).
#<file system> <mount point> <type> <options> <dump> <pass>
#/ was on /dev/sda5 during installation
UUID=3e857b61-2d2b-469a-a3eb-de1cf4d5130a / ext4 errors=remount-ro 0
#/home was on /dev/sda7 during installation
#UUID=14887804-6799-443e-955f-6b2872cd441a /home ext4 defaults 0 2
#swap was on /dev/sda6 during installation
#UUID=2da59282-61ee-40d2-821b-2042ff556748 none swap sw 0 0
#UUID=4A1499C11499B085 /media/ivykoko/269Gb ntfs umask=0000,utf8 0 0
permissions ntfs
I'm running ubuntu 13.10 x86_64 and I have modified /etc/fstab to mount my NTFS HDD with permissions but I'm getting some permissions errors because the owner is "root" instead of my user.
Thanks in advance
P.S: I had no problems doing this in Ubuntu 13.04 32bits
EDIT:
fstab content:
#/etc/fstab: static file system information.
#Use 'blkid' to print the universally unique identifier for a
#device; this may be used with UUID= as a more robust way to name devices
#that works even if disks are added and removed. See fstab(5).
#<file system> <mount point> <type> <options> <dump> <pass>
#/ was on /dev/sda5 during installation
UUID=3e857b61-2d2b-469a-a3eb-de1cf4d5130a / ext4 errors=remount-ro 0
#/home was on /dev/sda7 during installation
#UUID=14887804-6799-443e-955f-6b2872cd441a /home ext4 defaults 0 2
#swap was on /dev/sda6 during installation
#UUID=2da59282-61ee-40d2-821b-2042ff556748 none swap sw 0 0
#UUID=4A1499C11499B085 /media/ivykoko/269Gb ntfs umask=0000,utf8 0 0
permissions ntfs
permissions ntfs
edited Nov 1 '13 at 14:38
Eric Carvalho
41.3k17113144
41.3k17113144
asked Nov 1 '13 at 14:04
ivykoko
83
83
Please post/etc/fstabcontent.
– Web-E
Nov 1 '13 at 14:08
add a comment |
Please post/etc/fstabcontent.
– Web-E
Nov 1 '13 at 14:08
Please post
/etc/fstab content.– Web-E
Nov 1 '13 at 14:08
Please post
/etc/fstab content.– Web-E
Nov 1 '13 at 14:08
add a comment |
1 Answer
1
active
oldest
votes
To mount the drive with your user as the owner add the uid option.
Type id in the terminal to get your user ID from the output: uid=####.
Then add that option to fstab so your new entry will look like:
UUID=4A1499C11499B085 /media/ivykoko/269Gb ntfs umask=0000,utf8,uid=#### 0 0
Where #### is your actual uid.
Then unmount and remount the drive.
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
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',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
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
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f369508%2fntfs-permissions%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
To mount the drive with your user as the owner add the uid option.
Type id in the terminal to get your user ID from the output: uid=####.
Then add that option to fstab so your new entry will look like:
UUID=4A1499C11499B085 /media/ivykoko/269Gb ntfs umask=0000,utf8,uid=#### 0 0
Where #### is your actual uid.
Then unmount and remount the drive.
add a comment |
To mount the drive with your user as the owner add the uid option.
Type id in the terminal to get your user ID from the output: uid=####.
Then add that option to fstab so your new entry will look like:
UUID=4A1499C11499B085 /media/ivykoko/269Gb ntfs umask=0000,utf8,uid=#### 0 0
Where #### is your actual uid.
Then unmount and remount the drive.
add a comment |
To mount the drive with your user as the owner add the uid option.
Type id in the terminal to get your user ID from the output: uid=####.
Then add that option to fstab so your new entry will look like:
UUID=4A1499C11499B085 /media/ivykoko/269Gb ntfs umask=0000,utf8,uid=#### 0 0
Where #### is your actual uid.
Then unmount and remount the drive.
To mount the drive with your user as the owner add the uid option.
Type id in the terminal to get your user ID from the output: uid=####.
Then add that option to fstab so your new entry will look like:
UUID=4A1499C11499B085 /media/ivykoko/269Gb ntfs umask=0000,utf8,uid=#### 0 0
Where #### is your actual uid.
Then unmount and remount the drive.
answered Nov 1 '13 at 14:44
dan08
5,15721840
5,15721840
add a comment |
add a comment |
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
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
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f369508%2fntfs-permissions%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
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
Required, but never shown
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
Required, but never shown
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
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Please post
/etc/fstabcontent.– Web-E
Nov 1 '13 at 14:08