Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question?
If it is not in the man pages or the how-to's this is the place! |
| Notices |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
 |
GNU/Linux Basic Guide
This 255-page guide will provide you with the keys to understand the philosophy of free software, teach you how to use and handle it, and give you the tools required to move easily in the world of GNU/Linux. Many users and administrators will be taking their first steps with this GNU/Linux Basic guide and it will show you how to approach and solve the problems you encounter.
Click Here to receive this Complete Guide absolutely free. |
|
 |
10-13-2007, 07:40 PM
|
#1
|
|
LQ Newbie
Registered: Oct 2007
Location: Memphis, TN
Distribution: Ubuntu Feisty Fawn 7.04
Posts: 19
Rep:
|
External HD won't mount
I am running Feisty 7.04. I have an external HD Lacie case with a Seagate 250 gig HDD, fat32 format. Very little data on it and nothing that can't be replaced if I have to format.
It used to mount when I plugged it in at /media/LACIE; however, now when I plug it in, I get the following error message:
"Cannot mount volume
Unable to mount the volume 'LACIE'
mount_point cannot contain the following characters: newline, G_DIR_SEPARATOR (usually/)"
When I go to Disk Usage Analyzer, it shows up under "Places" when I click on Scan Folder, but it is inaccessible.
Other externals that I have hot swap just fine, but not this one. It mounts under both Windows XP and 98.
|
|
|
|
10-14-2007, 07:23 AM
|
#2
|
|
LQ Newbie
Registered: Oct 2007
Location: Memphis, TN
Distribution: Ubuntu Feisty Fawn 7.04
Posts: 19
Original Poster
Rep:
|
Anybody out there that can tell me what file holds the information how/where to mount an external when it is plugged in???
|
|
|
|
10-14-2007, 07:34 AM
|
#3
|
|
Member
Registered: Apr 2004
Location: Scotland
Distribution: Suse, OpenWRT
Posts: 299
Rep:
|
Try changing the mountpoint - I guess your using the GUI to do it?
Can you post your fstab and mtab
|
|
|
|
10-14-2007, 07:44 AM
|
#4
|
|
LQ Newbie
Registered: Oct 2007
Location: Memphis, TN
Distribution: Ubuntu Feisty Fawn 7.04
Posts: 19
Original Poster
Rep:
|
fstab and mtab
My fstab:
# /etc/fstab: static file system information.
#
# <file system> <mount point> <type> <options> <dump> <pass>
proc /proc proc defaults 0 0
# /dev/sda3
UUID=eba43422-4542-470a-ac43-23e7e2dc0a31 / ext3 defaults,errors=remount-ro 0 1
# /dev/sda6
UUID=f1ae32d1-69d7-4942-a6bb-8428269ccfe2 none swap sw 0 0
/dev/scd0 /media/cdrom0 udf,iso9660 user,noauto 0 0
/dev/sda1 /storage ext3 defaults 0 0
My mtab:
/dev/sda3 / ext3 rw,errors=remount-ro 0 0
proc /proc proc rw,noexec,nosuid,nodev 0 0
/sys /sys sysfs rw,noexec,nosuid,nodev 0 0
varrun /var/run tmpfs rw,noexec,nosuid,nodev,mode=0755 0 0
varlock /var/lock tmpfs rw,noexec,nosuid,nodev,mode=1777 0 0
procbususb /proc/bus/usb usbfs rw 0 0
udev /dev tmpfs rw,mode=0755 0 0
devshm /dev/shm tmpfs rw 0 0
devpts /dev/pts devpts rw,gid=5,mode=620 0 0
lrm /lib/modules/2.6.20-16-generic/volatile tmpfs rw 0 0
/dev/sda1 /storage ext3 rw 0 0
binfmt_misc /proc/sys/fs/binfmt_misc binfmt_misc rw 0 0
/dev/sdb1 /media/SimpleTech ntfs rw,nosuid,nodev,umask=222,utf8 0 0
|
|
|
|
10-14-2007, 09:10 AM
|
#5
|
|
Senior Member
Registered: Sep 2005
Location: Newcastle upon Tyne UK
Distribution: Any free distro.
Posts: 3,398
Rep: 
|
Usually if a user takes the matter into his/her own hand there is no partition, with a healthy filing system, that cannot be mounted "manually".
In root console do a
to locate the partition, say it is device sdb1, that you want to mount. Creat a mounting point and mount it like this
Code:
/sbin/mkdir /mnt/sdb1
/sbin/mount /dev/sdb1 /mnt/sdb1
ls /mnt/sdb1
The magenta bits are normally required if you run a Red Hat.
Last edited by saikee; 10-14-2007 at 09:12 AM.
|
|
|
|
10-14-2007, 12:55 PM
|
#6
|
|
LQ Newbie
Registered: Oct 2007
Location: Memphis, TN
Distribution: Ubuntu Feisty Fawn 7.04
Posts: 19
Original Poster
Rep:
|
Saikee,
Woo Hoo, you rock. I have been trying and posting for over a week now to get this resolved.
You Da Man.
Thanks.
|
|
|
|
10-14-2007, 01:41 PM
|
#7
|
|
Senior Member
Registered: Sep 2005
Location: Newcastle upon Tyne UK
Distribution: Any free distro.
Posts: 3,398
Rep: 
|
lionround,
It is a God given right to every Unix/Linux user to be able to mount a hardware device on the filing system tree. It is almost like magic.
The system works like this. The kernel detects the hardware and assign a major and minor number to each block device say sda2, in which a hard disk partition belongs to. We always mount a device on the filing system tree. The branch of the tree is free to us to select but /mnt or /media is frequently used for this purpose. The mount command makes the necessary connection.
After you have finish the work you can unmount the device (/dev/sda2) or the branch (/mnt/sda2)
which is the same procedure to remove an attached hardware in a MS Windows.
There is a time lag in Linux when you ask something to be written onto the device. In other word the action takes place not alway immediately but in the back ground while the CPU is not too busy. Therefore the "umount" instruction is very important to tell the kernel, "Hey we need to split, so finish what you are doing!" before pulling out the device, otherwise a premature withdrawal of the device will to a loss of data.
|
|
|
|
| Thread Tools |
Search this Thread |
|
|
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
All times are GMT -5. The time now is 04:09 AM.
|
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|