Re: mount -o question

2014-05-08 Thread ToddAndMargo
On 05/08/2014 03:47 PM, Franchisseur Robert wrote: -- Le (On) 2014-05-06 -0700 à (at) 12:12:56 ToddAndMargo écrivit (wrote): -- On 05/05/2014 08:23 PM, Franchisseur Robert wrote: snip Hello, with : # mount -t ext3 -o user,exec /dev/sdc1 /mnt/LIVE

Re: mount -o question

2014-05-06 Thread ToddAndMargo
On 05/05/2014 08:23 PM, Franchisseur Robert wrote: -- Le (On) 2014-05-04 -0700 à (at) 23:09:32 ToddAndMargo écrivit (wrote): -- Hi All, # is roots user prompt $ is my user's prompt # mount -t ext3 -o users,exec /dev/sdc1 /mnt/LIVE # chmod -R 2777 /mnt/LIVE $ cp -R

Re: mount -o question

2014-05-06 Thread Gilbert E. Detillieux
I don't think you're going to be able to do what you want in an ad-hoc way, i.e. without using an fstab entry. Take a look at both the user and users options (the latter which is more permissive), in the mount(8) man page. These both seem to work when placed in /etc/fstab entries, but not

Re: mount -o question

2014-05-06 Thread ToddAndMargo
On 05/06/2014 01:47 PM, Gilbert E. Detillieux wrote: I don't think you're going to be able to do what you want in an ad-hoc way, i.e. without using an fstab entry. Take a look at both the user and users options (the latter which is more permissive), in the mount(8) man page. These both seem to

mount -o question

2014-05-05 Thread ToddAndMargo
Hi All, # is roots user prompt $ is my user's prompt # mount -t ext3 -o users,exec /dev/sdc1 /mnt/LIVE # chmod -R 2777 /mnt/LIVE $ cp -R /home/CDs/Keepers/Linux/Usb.CreateLiveUSB /mnt/LIVE $ umount /mnt/LIVE I can not umount /mnt/LIVE because it is not in fstab and $ is not root. I want the

Re: mount -o question

2014-05-05 Thread Paul Robert Marino
Well you shouldn't have mounted it as root.There is a wealth of documentation on this subject from granting servers access to mount and unmount file systems to users using fuse mounts like most desktop environments do as us Perl guys say there are many ways to do it!-- Sent from my HP Pre3On May

Re: mount -o question

2014-05-05 Thread ToddAndMargo
On May 5, 2014 2:10, ToddAndMargo toddandma...@zoho.com wrote: Hi All, # is roots user prompt $ is my user's prompt # mount -t ext3 -o users,exec /dev/sdc1 /mnt/LIVE # chmod -R 2777 /mnt/LIVE $ cp -R /home/CDs/Keepers/Linux/Usb.CreateLiveUSB /mnt/LIVE $ umount /mnt/LIVE I can not umount

Re: mount -o question

2014-05-05 Thread Chris Schanzle
On 5/5/14, 3:21 AM, ToddAndMargo wrote: On May 5, 2014 2:10, ToddAndMargo toddandma...@zoho.com wrote: Hi All, # is roots user prompt $ is my user's prompt # mount -t ext3 -o users,exec /dev/sdc1 /mnt/LIVE # chmod -R 2777 /mnt/LIVE $ cp -R /home/CDs/Keepers/Linux/Usb.CreateLiveUSB /mnt/LIVE $

Re: mount -o question

2014-05-05 Thread ToddAndMargo
On 05/05/2014 05:53 AM, Chris Schanzle wrote: On 5/5/14, 3:21 AM, ToddAndMargo wrote: On May 5, 2014 2:10, ToddAndMargo toddandma...@zoho.com wrote: Hi All, # is roots user prompt $ is my user's prompt # mount -t ext3 -o users,exec /dev/sdc1 /mnt/LIVE # chmod -R 2777 /mnt/LIVE $ cp -R

Re: mount -o question

2014-05-05 Thread Paul Robert Marino
The truth is there was a method at one time but selinux killed it and devfs killed it so autofs and or fuse is the way to do it now.The other option is to use sudo instead of su -c because with sudo you can give the user only permission to run the exact command as root. Further more you can

Re: mount -o question

2014-05-05 Thread Franchisseur Robert
-- Le (On) 2014-05-04 -0700 à (at) 23:09:32 ToddAndMargo écrivit (wrote): -- Hi All, # is roots user prompt $ is my user's prompt # mount -t ext3 -o users,exec /dev/sdc1 /mnt/LIVE # chmod -R 2777 /mnt/LIVE $ cp -R /home/CDs/Keepers/Linux/Usb.CreateLiveUSB /mnt/LIVE $ umount /mnt/LIVE