dmesg will tell you how the device got detected; typically it&#39;ll be /dev/sdb or similar<br><br>sudo mkdir /media/usb<br>sudo mount /dev/sdb /media/usb<br><br>If you want ordinary users to have r/w access, you will want to throw in some options with that, such as;<br>
<br>sudo mount /dev/sdb /media/usb -o umask=0<br><br><div class="gmail_quote">(read/write access for everybody!)<br><br><br>2008/4/30 Sid Bachtiar &lt;<a href="mailto:sid.bachtiar@gmail.com">sid.bachtiar@gmail.com</a>&gt;:<br>
<blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">I think there are two ways that I&#39;m aware of ... both using /etc/fstab<br>
(<a href="http://ubuntuforums.org/showthread.php?t=283131" target="_blank">http://ubuntuforums.org/showthread.php?t=283131</a>)<br>
- One is to allow users to use pmount command to mount the drive<br>
- Another is to set the mounting to auto which would mount the drive<br>
automatically when the system boot<br>
<br>
I&#39;m a newbie myself so I don&#39;t have the details on top of my head.<br>
<div><div></div><div class="Wj3C7c"><br>
On Wed, Apr 30, 2008 at 2:29 PM, Johann Schoonees<br>
&lt;<a href="mailto:j.schoonees@irl.cri.nz">j.schoonees@irl.cri.nz</a>&gt; wrote:<br>
&gt; I&#39;ve googled and searched the archives but I&#39;m getting swamped with<br>
&gt; &nbsp;marginally related &quot;USB drive does not mount&quot; hits. &nbsp;Here goes:<br>
&gt;<br>
&gt; &nbsp;When I log into the kubuntu Feisty desktop, there is an icon showing<br>
&gt; &nbsp;that my external USB drive is connected and mounted.<br>
&gt;<br>
&gt; &nbsp;However, cron runs a nightly back-up script for me at 3 am when no-one<br>
&gt; &nbsp;should be logged in, but after migrating from Fedora to Feisty, it fails<br>
&gt; &nbsp;at the point where I try to mount the external USB drive:<br>
&gt;<br>
&gt; &nbsp;MOUNT_OK=no<br>
&gt; &nbsp;for DISK in $DISK_LABELS<br>
&gt; &nbsp;do<br>
&gt; &nbsp;# mount -w &quot;$MOUNT_POINT/$DISK&quot; 2&gt; /dev/null<br>
&gt; &nbsp;mount -w &quot;$MOUNT_POINT/$DISK&quot;<br>
&gt; &nbsp;MOUNT_RES=$?<br>
&gt; &nbsp;if [ &quot;$MOUNT_RES&quot; = &quot;0&quot; ]; then<br>
&gt; &nbsp;MOUNT_OK=yes<br>
&gt; &nbsp;break<br>
&gt; &nbsp;fi<br>
&gt; &nbsp;done<br>
&gt;<br>
&gt; &nbsp;results in:<br>
&gt;<br>
&gt; &nbsp;mount: can&#39;t find /media/backup_0 in /etc/fstab or /etc/mtab<br>
&gt; &nbsp;mount: can&#39;t find /media/backup_1 in /etc/fstab or /etc/mtab<br>
&gt; &nbsp;mount: can&#39;t find /media/backup_2 in /etc/fstab or /etc/mtab<br>
&gt; &nbsp;...<br>
&gt;<br>
&gt; &nbsp;even when a disk with label backup_1 (or 2 etc.) is connected.<br>
&gt;<br>
&gt; &nbsp;There is no entry for /dev/sdb1 in /etc/fstab. &nbsp;There is one in etc/mtab<br>
&gt; &nbsp;when someone is logged into the desktop, but not when not. &nbsp;It looks<br>
&gt; &nbsp;something like this:<br>
&gt;<br>
&gt; &nbsp;/dev/sdb1 /media/backup_1 ext3 rw,noexec,nosuid,nodev,sync,data=ordered 0 0<br>
&gt;<br>
&gt; &nbsp;Under Fedora it used to look like this:<br>
&gt;<br>
&gt; &nbsp;/dev/sdb1 /media/backup_1 ext3 rw,nosuid,nodev 0 0<br>
&gt;<br>
&gt; &nbsp;The exact mount point depends on the disk label. &nbsp;I have more than one<br>
&gt; &nbsp;back-up disk, each with a unique label.<br>
&gt;<br>
&gt; &nbsp;Under Fedora there used to be an entry in fstab like this:<br>
&gt;<br>
&gt; &nbsp;/dev/sdb1 /media/backup_1 ext3 pamconsole,exec,noauto,managed 0 0<br>
&gt;<br>
&gt; &nbsp;which changed automatically (apparently under control of something<br>
&gt; &nbsp;called fstab-sync which I don&#39;t see in kubuntu) according to the label<br>
&gt; &nbsp;of the connected drive.<br>
&gt;<br>
&gt; &nbsp;In short, how should my script detect and mount a connected USB external<br>
&gt; &nbsp;drive when no-one is logged in?<br>
&gt;<br>
&gt; &nbsp;Any help appreciated,<br>
&gt; &nbsp;Johann<br>
&gt;<br>
&gt; &nbsp;--<br>
&gt; &nbsp;ubuntu-nz mailing list<br>
&gt; &nbsp;<a href="mailto:ubuntu-nz@lists.ubuntu.com">ubuntu-nz@lists.ubuntu.com</a><br>
&gt; &nbsp;<a href="https://lists.ubuntu.com/mailman/listinfo/ubuntu-nz" target="_blank">https://lists.ubuntu.com/mailman/listinfo/ubuntu-nz</a><br>
&gt;<br>
<br>
--<br>
ubuntu-nz mailing list<br>
<a href="mailto:ubuntu-nz@lists.ubuntu.com">ubuntu-nz@lists.ubuntu.com</a><br>
<a href="https://lists.ubuntu.com/mailman/listinfo/ubuntu-nz" target="_blank">https://lists.ubuntu.com/mailman/listinfo/ubuntu-nz</a><br>
</div></div></blockquote></div><br>