Author Topic: Error <Solved>  (Read 910 times)

Offline davidwillis

  • Sr. Member
  • ****
  • Posts: 278
Error <Solved>
« on: January 15, 2010, 07:55:16 PM »
any idea what this is or how to fix it.  This keeps popping up ever once in a while.  I don't notice anything to working, but I don't know what it is for.

[attachment deleted by admin]
« Last Edit: January 16, 2010, 12:09:19 PM by davidwillis »

Online muungwana

  • Hero Member
  • *****
  • Posts: 6237
Re: Error
« Reply #1 on: January 15, 2010, 08:15:37 PM »

something is wrong with your file system. What file systems are you using? are you sure you have the right file system set in fstab entry?

can you copy and paste here the contents of the following command? "cat /etc/fstab"

log in to root user from the terminal, type the following command and reboot to repair your file systems if they are corrupted

touch /forcefsck
.. 3 things are certain in life : death, taxes and software bloat ..
.. tell me something i don't know, something i can use as i struggle to reason with the world around me ..

Offline davidwillis

  • Sr. Member
  • ****
  • Posts: 278
Re: Error
« Reply #2 on: January 15, 2010, 10:27:13 PM »
Quote
$ cat /etc/fstab
# Entry for /dev/sda3 :
UUID=9e917600-c9c6-461d-91ad-02462b49906b / ext3 defaults 1 1 none /proc proc defaults 0 0
# Entry for /dev/sda1 :
UUID=36d28d97-46b0-4b29-aa9f-42cfc00187c4 swap swap defaults 0 0 none /dev/pts devpts mode=0620 0 0

now that you say that, I think it started happening right after I installed the pclxd version of pclinuxos.  I let it create a new partition for it, and maybe it messed something up.


Online muungwana

  • Hero Member
  • *****
  • Posts: 6237
Re: Error
« Reply #3 on: January 15, 2010, 11:27:18 PM »

Quote
UUID=9e917600-c9c6-461d-91ad-02462b49906b / ext3 defaults 1 1 none /proc proc defaults 0 0
the above line does not appear to be in standard form

it should be read:
Quote
UUID=9e917600-c9c6-461d-91ad-02462b49906b / ext3 defaults 1 1


and the other one should be
Quote
UUID=36d28d97-46b0-4b29-aa9f-42cfc00187c4 swap swap defaults 0 0


those two numeric options should be the last two options
.. 3 things are certain in life : death, taxes and software bloat ..
.. tell me something i don't know, something i can use as i struggle to reason with the world around me ..

Offline Texstar

  • Administrator
  • Super Villain
  • *****
  • Posts: 12518
Re: Error
« Reply #4 on: January 15, 2010, 11:30:38 PM »
These need to be on separate lines in /etc/fstab

none /proc proc defaults 0 0
none /dev/pts devpts mode=0620 0 0


So /etc/fstab could read as follows

none /proc proc defaults 0 0
none /dev/pts devpts mode=0620 0 0
UUID=9e917600-c9c6-461d-91ad-02462b49906b / ext3 defaults 1 1
UUID=36d28d97-46b0-4b29-aa9f-42cfc00187c4 swap swap defaults 0 0
« Last Edit: January 15, 2010, 11:32:11 PM by Texstar »

Thanks to everyone who donates. You keep the servers running.

Offline davidwillis

  • Sr. Member
  • ****
  • Posts: 278
Re: Error
« Reply #5 on: January 16, 2010, 11:29:24 AM »
Thanks.. I have edited my fstab, and run the touch /forcefsck command.

And all seems to be working...

Thanks again..
David