Gentoo Archives: gentoo-user

From: Grant <emailgrant@×××××.com>
To: Gentoo mailing list <gentoo-user@l.g.o>
Subject: [gentoo-user] Re: user folder in path when mounting
Date: Thu, 28 Mar 2013 20:56:43
Message-Id: CAN0CFw3iLf2t+Bie-6=LFcsFOhwzvqpBCYpWQ+_Pn_M4V2mvnQ@mail.gmail.com
In Reply to: [gentoo-user] user folder in path when mounting by Grant
1 > I've been mounting my external HD in thunar. When I clicked the
2 > device icon, the HD was mounted to /media/VOLUME_LABEL/. Now I see
3 > the path has changed to /run/media/grant/VOLUME_LABEL/ and the "grant"
4 > folder is:
5 >
6 > drwxr-x---+ 3 root root
7 >
8 > which I think is preventing my automated remote backups from working
9 > because the backup user's home directory which contains
10 > authorized_keys is on the backup HD.
11 >
12 > What is the right way to get this working again?
13 >
14 > - Grant
15
16 I was able to get this working by defining a label for the HD with
17 e2label and adding it to /etc/fstab like so:
18
19 LABEL=backup /mnt/backup ext3
20 defaults,noauto,noatime 0 2
21
22 - Grant