Quantcast
Channel: How can I automatically set write permissions on mounting a usb drive in linux? - Super User
Browsing all 4 articles
Browse latest View live

Answer by Rick for How can I automatically set write permissions on mounting...

Type mount. This will give the current place it is at. Here is my output.rick@rick-Main ~ $ mount/dev/sda4 on / type ext4 (rw,errors=remount-ro)proc on /proc type proc (rw,noexec,nosuid,nodev)sysfs on...

View Article



Answer by temoto for How can I automatically set write permissions on...

To enable everyone rw access, the key is umask=0 option to mount command.sudo mount -o umask=0,uid=nobody,gid=nobody /dev/something /mnt/somewhereumask=0 is enough, uid and gid just for sake of...

View Article

Answer by Tom for How can I automatically set write permissions on mounting a...

Add an entry to /etc/fstab. Here is an entry that I added just a few hours ago for my Seagate USB drive:UUID=4ACC734ECC733375 /media/Linux ext3 errors=remount-ro,defaults,users,noatime,nodiratime 0...

View Article

How can I automatically set write permissions on mounting a usb drive in linux?

When I mount an external usb drive on linux (CentOs4), the permissions are by default set to read-only. Since there are multiple users on the computer who need to use the external drive, I want...

View Article
Browsing all 4 articles
Browse latest View live


Latest Images