Re: Mounting device using UUID by non-root

2021-03-26 Thread Patrick O'Callaghan
On Thu, 2021-03-25 at 10:44 -0600, Joe Zeff wrote: > On 3/25/21 5:51 AM, Patrick O'Callaghan wrote: > > Add a line to /etc/fstab, specifying 'user' as one of the mount > > options. > > And, if you don't want it mounted at boot, put in noauto as well. Indeed. poc _

Re: Mounting device using UUID by non-root

2021-03-25 Thread Joe Zeff
On 3/25/21 5:51 AM, Patrick O'Callaghan wrote: Add a line to /etc/fstab, specifying 'user' as one of the mount options. And, if you don't want it mounted at boot, put in noauto as well. ___ users mailing list -- users@lists.fedoraproject.org To unsubs

Re: Mounting device using UUID by non-root

2021-03-25 Thread Patrick O'Callaghan
On Wed, 2021-03-24 at 18:20 -0700, Geoffrey Leach wrote: > Suppose I have a USB stick with UUID 1234. I am able to mount it as > root > # mount UUID=1234 /Media > or as a non-root user > % sudo  mount UUID=1234 /Media > unsafe! > > Question: is there any way to perform the mount (f

Mounting device using UUID by non-root

2021-03-24 Thread Geoffrey Leach
Suppose I have a USB stick with UUID 1234. I am able to mount it as root # mount UUID=1234 /Media or as a non-root user % sudo mount UUID=1234 /Media unsafe! Question: is there any way to perform the mount (from the command line) without the sudo? Thanks.