Astahost.com   Mar 14, 2010
Open Discussion & Free Web Hosting > Computers & Tech > Operating Systems > Linux

No Such File Or Directory While Trying To Open Abl

free web hosting
Open Discussion & Free Web Hosting > Computers & Tech > Operating Systems > Linux

No Such File Or Directory While Trying To Open Abl

jedipi
dear all,
Yesterday, I modified the /etc/fstab file in order to mount my usb thumb driver atomaticly. dev is sba1 and the mount point is /mnt/usb. I cannot remember what other parameters had been used, as I got something emegene to do.
I just use "halt -n" comman to shutdown the PC.
Today, I found that it cannot boot into the system.

when it checking root filesystem:
fsck.ext3:ABEL=/:
The superblock could not be read or does not describled a coorect ext2 file system. If the device is valid and it realy contains an ext2 filesystem (and not swap or ufs or something else)then the superblock is corrupt and u might try running e2fsck with an alternate superblock .

e2fsck -b 8193

NO SUCH FILE OR DIRECTORY WHILE TRYING TO OPEN ABLE=/

System info:
readhat AS 3.0
root(0,1)
kernel /boot/Vmlinuz-2.4.21-4.EL ro root=LABEEL=/
initrd /boot/initrd-2.4.21-4-EL.img

P.S. Just a LINUX os is installed in this pc.

Help...what should I do now??? don;t want to format the hardisk and reinstall the whole system.

 

 

 


Comment/Reply (w/o sign-up)

Giniu
Hi...

You probably missed one letter in boot manager configuration or drives changed and you doesn't inform boot manager about that changes... (from what you said it looks like it is "L"...) or something else - right now there can be many reasons also wrong fstab... try to catch all files you edited... if you edited it with some reasonable good editor (gedit, kedit, almost anything but don't know if all) you should have old fstab on hard drive under name f.e. fstab~ and if you delete old fstab and reneme that copy you should have working system again... You probaby would need to get into shell - you can do this using rescue cd (if your distibution have one) or download any floppy mini-distribution that have only basics... you don't even need text editor - you can cat old and new file, then rm old and mv new... also you can start your computer from some live linux like knopix or slax... If you have Boot manager you probably can also try to run computer in single user mode...

Hope you would get it running soon and don't loose your data... good luck...

 

 

 


Comment/Reply (w/o sign-up)

miCRoSCoPiC^eaRthLinG
Yup from your output it seems exactly like what Giniu said - some sort of misnomer.. as in wrongly typed label or folder in the bootmanager file. Your only way out is to boot in console mode using rescue disks or using a live-cd if that came along with your distro.

Comment/Reply (w/o sign-up)

jedipi
I booted the system by using single mode,
when it reach fsck, I press ctrl+c,
then I can login as root.
When I can edit /etc/fstab file. However, it does not allow me to save it.
The system said I don;t have write premission.
Then I applied "chmod 700" to /etc/fstab, but still cannot save.
chown root.root, still does not work.
obvisorly, /etc/fstab cannot be deleted as well.
as the reusle, fstab~ cannot be rename to fstab....>_<

now my question is how to get the write permission of fstab???

Comment/Reply (w/o sign-up)

qwijibow
strange, everything should be writeable as root.

maybe the partiton was mounted read only ?
remount root as read / write with the mount command.

CODE
mount /dev/hdXN / -o remount,rw


where /dev/hdaXN is your root partiton.

OR boot your install CD in reascue mode.

Comment/Reply (w/o sign-up)

jedipi
Problem fixed..
download a live cd..
boot into rescue mode....
remount the /dev/hda1
then modified /etc/fstab
just change ABEEL=/ to LABEEL=/

man..just a little L.... it took me about 2 days to solve thsi problem..>_<
Guys..thanks for your help.

Comment/Reply (w/o sign-up)


Got an Opinion! Express your Views! (no registration):-
Add your Reply/ Opinion/ Views/ Comments/ Suggestion/ Questions/ Queries etc.
Posts with decent grammar & English will be accepted and please refrain from profanities.
For asking a Question, We recommend you to sign-up (for free) so that you can track the topic easily.

Nature of your Post*: Opinion/ Reply/ Comments
Question/Query
Feedback to us.
       
Name   Email
Title/Question*

This textarea will convert to Rich-Text automatically (IE, Firefox, Chrome)

Similar Topics

Keywords : file, directory, open, abl

  1. Linux Basic Command - For Storing Compilation Error To File
    (2)
  2. How To Copy File & Folders From Linux To Windows?.
    (14)
    Many face problem while transfering file from Linux to windows and Vise versa. My solution for
    this is "winscp405". Winscp is a windows freeware tool used to copy file from & to Linux machine.
    To get this tool just google for " winscp405" tool and download this small package and install.
    Enjoy working with Linux and windows /tongue.gif" style="vertical-align:middle" emoid=":P"
    border="0" alt="tongue.gif" />....
  3. Simple Ubuntu Based Home File Server | For Newbies
    (1)
    This tutorial explains how to turn an old PC with additional hard disks into a simple home file
    server. The file server is intended for home use. The home file server is accessible by Windows and
    Linux computers in the home network. http://www.howtoforge.com/ubuntu-home-fileserver
    _________________________________ http://dserban01.googlepages.com/linkedin....abap.basis.html ....
  4. File Rename Script, Sentence
    Large collection of files to rename! (7)
    Hello there, Today I've encoded lots of mp3's for my portable mp3 player (which only has
    128mb ... /blink.gif" style="vertical-align:middle" emoid=":blink:" border="0" alt="blink.gif" />),
    Anyway I encoded them with Lame using mlame script (for those don't know it handles more files
    then one). Now mlame appends "-new-converted-file" to the filename. And renaming every individual
    file with the hand is A LOT of work /mellow.gif" style="vertical-align:middle" emoid=":mellow:"
    border="0" alt="mellow.gif" />. I tried to write a script to remove that "-new-conv....
  5. Fedora Directory Server
    Anybody uses it? (0)
    Some time ago Red Hat acquired Netscape's Directory Server and release it under open source
    licence renamed Fedora Directory Server. Does onybody use it, or simply try? What future of FDS do
    you predict? Give your opinion.....
  6. Strange Opendir Problem
    does not work for /home directory (5)
    The following is the content of my test.cgi. Permission is 777, CODE #!/usr/bin/perl print
    "Content-type: text/plain\n\n"; $ss="/home"; if (opendir(DIR, $ss)){   print "open $ss ok\n"; }
    else {   print "fail open $ss !\n"; } after run this scripte, the result is : fail open /home
    ! It works if I change the value of $ss from /home to /tmp. Why does it not work when the value of
    $ss is /home?? How can I make it work for /home directory?? Please help. Thank you.....
  7. Complie Mplayer With Gcc4.0
    Patch file is provided (1)
    GCC 4.0 comes with the new Fedora core 4. MPlayer cannot be compiled in this new environment. If you
    have Fedora core 4 or upgraded to GCC4 and have problems on compiling MPlayer, now worry, follow the
    steps: 1. Download all neccessry files. They are: * the source code of mplayer, I prefer
    the latest release: MPlayer-1.0pre7.tar.bz2 * mplayer-1.0_pre7-gcc4.patch . As you can see, this is
    a patch file for MPlayer 1.0pre7, In order the compile mplayer under gcc-4.0 environment, this
    patch must be applied This patch file can be download here: http://www.mag....
  8. Running Shell Script And Redirect To Log File?
    (4)
    I have a shell script like this: while true do sh a.sh sh b.sh done now I want the script not just
    call and run a.sh and b.sh, but also output some log files. here is what I did: while true do sh
    a.sh sh a.sh >>log sh b.sh sh b.sh >>log done I know this is not a good way.... is there any better
    way to do it?? Thank you....
  9. Why Do Normal Cannot Use Fat32 Volumn
    please, here is my fstab file (3)
    The following is my fstab. /dev/hda1 and /dev/hda5 is fat32 format. root can use after login, but
    nor the normal users. why? and how can I allow normal users to read the files inside fat32?? #
    /etc/fstab: static file system information. # # proc /proc proc defaults 0 0 /dev/hda6 /
    reiserfs notail 0 1 /dev/hda7 none swap sw 0 0 /dev/hdc /media/cdrom0 udf,iso9660 ro,user,noauto 0 0
    /dev/hda1 /mnt/winc vfat rw,user,auto 0 0 /dev/hda5 /mnt/wind vfat rw,user,auto 0 0 /dev/sda1
    /mnt/usb auto rw,user,auto 0 0....
  10. Help ! Can't Install Rpm File
    (2)
    I just installed redhat 9. and try to install some software. I use the following comman to do so:
    rpm -ivh file.rpm After I press Enter key, error message was shown: "can't create transaction
    lock" what should i do?....

    1. Looking for file, directory, open, abl



See Also,

*SIMILAR VIDEOS*
Searching Video's for file, directory, open, abl
advertisement




No Such File Or Directory While Trying To Open Abl

Affordable Web Hosting, Low cost Web Hosting - ComputingHost.com



Creative Commons License