how error ?

When i boot freebsd 7.2 ,i have error
May be help me fix error!
thank you very much!
 

Attachments

  • Image000.jpg
    Image000.jpg
    94.6 KB · Views: 337
Try typing ufs:ad8s1a
If it works, goes on and type enter when asked about the shell, and then
Code:
fsck -p
mount -u /
Finally edit /etc/fstab replacing ad6 with ad8 I guess, and reboot.
 
i type
Code:
 ufs:ad8s1a
fsck -p 
mount -u /
but have nothing?now what will i do?
may be help me! thank you
 

Attachments

  • Image003.jpg
    Image003.jpg
    86.5 KB · Views: 186
  • Image004.jpg
    Image004.jpg
    89.5 KB · Views: 172
  • Image005.jpg
    Image005.jpg
    90.5 KB · Views: 190
First: read the output that the system gives you. Don't type 'fsck -p' when the system asks you which shell you want. Just type 'enter' at that point. Then run fsck, mount, and edit fstab (change the 6 to 8 on each line). Reboot.
 
thank you.
but when i can't change file /etc/fstab.
May be help me!
thank you!
 

Attachments

  • Image003.jpg
    Image003.jpg
    99.1 KB · Views: 165
congavangkiev said:
thank you.
but when i can't change file /etc/fstab.
May be help me!
thank you!

You need to mount the partitions which contain your binaries first. Try:

Code:
mount /dev/ad8s1e /tmp
mount /dev/ad8s1f /usr
mount /dev/ad8s1d /var

then do

vi /etc/fstab
 
Back
Top