Results 21 to 30 of 40
Thanks to both of you for the correction. I will try mounting it now.
BTW, what did you think about sda3 having "Amoeba" as the system type?...
Enjoy an ad free experience by logging in. Not a member yet? Register.
- 04-21-2009 #21Just Joined!
- Join Date
- Apr 2009
- Posts
- 19
Thanks to both of you for the correction. I will try mounting it now.
BTW, what did you think about sda3 having "Amoeba" as the system type?
- 04-21-2009 #22Just Joined!
- Join Date
- Apr 2009
- Posts
- 19
I tried to mount sda1 as follows:
??Code:mount /dev/sda1 /mount/sda1 Mount: you must specify the filesystem type
- 04-21-2009 #23Linux Guru
- Join Date
- Apr 2009
- Location
- I can be found either 40 miles west of Chicago, or in a galaxy far, far away.
- Posts
- 10,156
If you don't specify a file system type to mount, then an entry for that device must exist in /etc/fstab. Booting from a liveCD or recovery disc will not mount the hard drive, so it is likely that this would happen to you. Try this: mount -t ext3 /dev/sda1 /mnt/mydisc
Then see if you have any errors. Normally, a boot drive will have 3 or 4 partitions for Linux. The first one usually is /boot, the second is either the swap space or /, and which ever the second partition was (/dev/sda2), the third will be the other type. You cannot mount swap in the normal manner, but trying to will likely give an error from mount. The fourth (if it exists - /dev/sda4) would likely be /home.
FWIW, on my system the boot drive is organized this way:
/boot - /dev/sda1
swap - /dev/sda2
/ - /dev/sda3
/home - /dev/sdb1, /dev/sdc1, /dev/sdd1, /dev/sde1 - I'm using LVM to create a single logical 2TB disc for /home from these 4 500GB discs.Sometimes, real fast is almost as good as real time.
Just remember, Semper Gumbi - always be flexible!
- 04-21-2009 #24Just Joined!
- Join Date
- Apr 2009
- Posts
- 19
output is:Code:mount -t ext3 /dev/sda1 /mnt/sda
mount: wrong fs type, bad option, bad superblock, on /dev/sda1, missing codepage or helper program, or other error
In some cases useful info is found in syslog - try dmesg | tail or so
I tried dmesg
output of last lineCode:dmesg | tail
Code:............. VFS: Can't find ext3 file system on dev sda1
Last edited by magic-chef; 04-21-2009 at 02:25 AM. Reason: Additional info
- 04-21-2009 #25Linux Guru
- Join Date
- Apr 2009
- Location
- I can be found either 40 miles west of Chicago, or in a galaxy far, far away.
- Posts
- 10,156
Provide us with the disc device listings from /dev: ls /dev/hd* /dev/sd*
Thanks.Sometimes, real fast is almost as good as real time.
Just remember, Semper Gumbi - always be flexible!
- 04-21-2009 #26Just Joined!
- Join Date
- Apr 2009
- Posts
- 19
The /dev/hd* directory did not exist.
/dev/ contained the following:
sda, sda1, sda2, sda3, sdb, sdb1, sdc
- 04-21-2009 #27Linux Guru
- Join Date
- Apr 2009
- Location
- I can be found either 40 miles west of Chicago, or in a galaxy far, far away.
- Posts
- 10,156
Sometimes, real fast is almost as good as real time.
Just remember, Semper Gumbi - always be flexible!
- 04-21-2009 #28Just Joined!
- Join Date
- Apr 2009
- Posts
- 19
- 04-21-2009 #29Linux Guru
- Join Date
- Apr 2009
- Location
- I can be found either 40 miles west of Chicago, or in a galaxy far, far away.
- Posts
- 10,156
From what I can find out, the Amoeba tag on /dev/sda3 might be a remnant of a confused Windows boot. Anyway, /dev/sda1 should be your /boot device - it could be an ext2 file system, or other. It shows as a Linux file system, which could mean ext2, ext3, reiser, or other. /dev/sda2 is your swap space - don't worry about that. /dev/sda3 is likely your root / partition. /dev/sdb1 is likely /home, so try mounting those two to get your data.
Sometimes, real fast is almost as good as real time.
Just remember, Semper Gumbi - always be flexible!
- 04-21-2009 #30Just Joined!
- Join Date
- Apr 2009
- Posts
- 19
Well, Ive had the first good fortune so far. The partition "sda3" which is reporting as "Amoeba" filesystem type can be mounted and read (this was my home directory and has all the data that I need)!!!
A couple of questions:
1) Should I try to repair the system area (sda1) or just re-install the system and re-format sda1 & sda2, leaving sda3 alone?
2) If #1 is solution how do I handle the "Amoeba" filesystem issue? See above posts.
In closing, thanks to all for the help! I tried other forums and this is the only forum where I received any meaningful help.
This is not the end...but, I think I might be able to see it from here.


Reply With Quote

