- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- Check Failed Disk
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-07-2005 01:34 AM
09-07-2005 01:34 AM
Check Failed Disk
My root system seems OK.
However I have a 40Gbyte "/asu" area for data and it wont mount. I get:
# mount -a
mount: special device LABEL=/asu does not exist
Its not mounted now, but if I cd to /asu I can see all my data files, so it must be reading the disk. It just wont mount. any ideas?
cdrecord -- scanbus shows:
scsibus0:
0,0,0 0) *
0,1,0 1) 'HP ' '9.10GB C 68-BX05' 'BX05' Disk
0,2,0 2) 'HP ' 'C1537A ' 'L105' Removable Tape
0,3,0 3) *
0,4,0 4) 'SEAGATE ' 'ST336607LW ' '0006' Disk
0,5,0 5) *
0,6,0 6) *
0,7,0 7) *
scsibus2:
2,0,0 200) 'TEAC ' 'CD-540E ' '1.0A' Removable CD-ROM
2,1,0 201) *
2,2,0 202) *
2,3,0 203) *
2,4,0 204) *
2,5,0 205) *
2,6,0 206) *
2,7,0 207) *
I can see both disk drives. 0,1,0 is my root disk.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-07-2005 02:06 AM
09-07-2005 02:06 AM
Re: Check Failed Disk
It looks to be originally the partition is labelled as /asu and it is referred so in /etc/fstab. now I believe the label is modified or removed for the partition.
What is the partition where the /asu resides ? is it /dev/hdd1 or anything else?
Modify /etc/fstab and modify LABEL=/asu with actual partition name.
Regards,
Gopi
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-07-2005 02:57 AM
09-07-2005 02:57 AM
Re: Check Failed Disk
give the device name like
/dev/dsk/......
and then try mountall
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-07-2005 06:52 AM
09-07-2005 06:52 AM
Re: Check Failed Disk
/dev/sdb1 /asu ext3 defaults 1 2
got:
mount: /dev/sdb1 is not a valid block device
no luck.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-07-2005 07:38 AM
09-07-2005 07:38 AM
Re: Check Failed Disk
mount
fdisk -l
You said that you can see the data files, you cannot warranty that you are reading the files from the disk that you want, maybe that files exists in the mount point, and may not be updated. That's why I need the results of the mount command, to find out if is really mounted.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-07-2005 07:58 AM
09-07-2005 07:58 AM
Re: Check Failed Disk
/dev/sda1 on / type ext3 (rw)
none on /proc type proc (rw)
none on /dev/pts type devpts (rw,gid=5,mode=620)
none on /dev/shm type tmpfs (rw)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-07-2005 07:59 AM
09-07-2005 07:59 AM
Re: Check Failed Disk
Disk /dev/sda: 9100 MB, 9100044288 bytes
64 heads, 32 sectors/track, 8678 cylinders
Units = cylinders of 2048 * 512 = 1048576 bytes
Device Boot Start End Blocks Id System
/dev/sda1 * 1 8678 8886256 83 Linux
[root@rockfish_dev /]#
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-07-2005 08:16 AM
09-07-2005 08:16 AM
Re: Check Failed Disk
The only disk mounted is /dev/sda1, at /, so /asu is not mounted, and you are accesing the data contained in the /asu directory, not the /asu filesystem.
There may be a problem with the disk, or the device special file was deleted. Try running:
mknod /dev/sdb b 8 16
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-14-2005 02:26 AM
09-14-2005 02:26 AM
Re: Check Failed Disk
Is your system halt or hang before like power failure, make sure you don't mount, force e2fsck to check the filesystem even it looks like clean, this may take awhile
# e2fsck -f /dev/sdb1
after check or fix, then try to mount again.