Solved I move FreeBSD from physical to VM

Attachments

  • FreeBSD.png
    FreeBSD.png
    59.4 KB · Views: 174
  • 2.png
    2.png
    99.2 KB · Views: 181
  • 4.png
    4.png
    90.6 KB · Views: 262
  • 5.png
    5.png
    85 KB · Views: 254
Your device names in /etc/fstab are incorrect (probably changed when moved). Look at 4.png and see the difference in the device names you have in /etc/fstab and shown by df.
 
It also looks like you've got an errant ":wq!" at the top of the /etc/fstab as well. The best course of action would be to remount using the whole path similar to how you mounted each partition in 5.png.

Make writable:
mount -t ufs -w /dev/da0s1a /

Fix the device names as roddierod mentioned and remove the ":wq!":
vi /etc/fstab

Leave single user mode:
return
 
Your device names in /etc/fstab are incorrect (probably changed when moved). Look at 4.png and see the difference in the device names you have in /etc/fstab and shown by df.
If iI type # mount -t ufs /dev/aacd0s1e /tmp the system is show error not found path
 
It also looks like you've got an errant ":wq!" at the top of the /etc/fstab as well. The best course of action would be to remount using the whole path similar to how you mounted each partition in 5.png.

Make writable:
mount -t ufs -w /dev/da0s1a /

Fix the device names as roddierod mentioned and remove the ":wq!":
vi /etc/fstab

Leave single user mode:
return

I following your step is my FreeBSD is boot and running apache service . Thanks
 
Back
Top