Hi, I have a Seagate 1 TB external drive which has three partitions (ext3, ~250 gb each one of them). I was copying some stuff on one of the partitions when my system froze (might have been because something else). And when I restarted, it asked me to repair the disk by logging as root, since it could not find all the drives mentioned in /etc/fstab. So I removed the entries of the external drive from /etc/fstab, and did a reboot. But now when I connect my external drive, it shows in the usb connectors but not in /dev/sd**, nor does it show in the yast2 partitioner application.
Here are some outputs,
I got this from the log file, when I plugged in my external drive.
<code>
Sep 21 13:20:56 glory kernel: scsi 5:0:0:0: Direct-Access Seagate FreeAgent 0132 PQ: 0 ANSI: 4
Sep 21 13:20:56 glory kernel: sd 5:0:0:0: [sdb] 1953525168 512-byte hardware sectors: (1.00 TB/931 GiB)
Sep 21 13:20:56 glory kernel: sd 5:0:0:0: [sdb] Write Protect is off
Sep 21 13:20:56 glory kernel: sd 5:0:0:0: [sdb] Mode Sense: 2d 08 00 00
Sep 21 13:20:56 glory kernel: sd 5:0:0:0: [sdb] Assuming drive cache: write through
Sep 21 13:20:56 glory kernel: sd 5:0:0:0: [sdb] 1953525168 512-byte hardware sectors: (1.00 TB/931 GiB)
Sep 21 13:20:56 glory kernel: sd 5:0:0:0: [sdb] Write Protect is off
Sep 21 13:20:56 glory kernel: sd 5:0:0:0: [sdb] Mode Sense: 2d 08 00 00
Sep 21 13:20:56 glory kernel: sd 5:0:0:0: [sdb] Assuming drive cache: write through
</code>
The output of lsusb was
<code>
lsusb
Bus 002 Device 030: ID 04f3:0230 Elan Microelectronics Corp.
Bus 002 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 001 Device 005: ID 0bc2:3008 Seagate RSS LLC
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
</code>
The output of fdisk -l looks like this
<code>
fdisk -l
Disk /dev/sda: 120.0 GB, 120034123776 bytes
255 heads, 63 sectors/track, 14593 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Disk identifier: 0xd0240c18
Device Boot Start End Blocks Id System
/dev/sda1 * 1 14593 117218241 f W95 Ext’d (LBA)
/dev/sda5 1 1567 12586864+ 83 Linux
/dev/sda6 1568 3134 12586896 c W95 FAT32 (LBA)
/dev/sda7 3135 4701 12586896 83 Linux
/dev/sda8 4702 4897 1574338+ 82 Linux swap / Solaris
/dev/sda9 4898 14593 77883088+ 83 Linux
</code>
and my /etc/fstab is
<code>
more /etc/fstab
/dev/disk/by-id/ata-FUJITSU_MHV2120BH_PL_NW9XT723B7JW-part8 swap swap defaults 0 0
/dev/disk/by-id/ata-FUJITSU_MHV2120BH_PL_NW9XT723B7JW-part5 / ext3 acl,user_xattr 1 1
/dev/disk/by-id/ata-FUJITSU_MHV2120BH_PL_NW9XT723B7JW-part9 /home ext3 acl,user_xattr 1 2
proc /proc proc defaults 0 0
sysfs /sys sysfs noauto 0 0
debugfs /sys/kernel/debug debugfs noauto 0 0
usbfs /proc/bus/usb usbfs noauto 0 0
devpts /dev/pts devpts mode=0620,gid=5 0 0
/dev/disk/by-id/ata-FUJITSU_MHV2120BH_PL_NW9XT723B7JW-part7 /storage ext3 acl,user_xattr 1 2
/dev/disk/by-id/ata-FUJITSU_MHV2120BH_PL_NW9XT723B7JW-part6 /storage_fat vfat user,users,gid=users,umask=0002,utf8=true 0 0
</code>
Can somebody please help?