View previous topic :: View next topic |
Author |
Message |
pegu n00b
Joined: 19 Sep 2003 Posts: 55
|
Posted: Fri Sep 20, 2024 3:24 am Post subject: [SOLVED]mount failed: Unknown error 5005. |
|
|
When I did the mounts part of the chroot process (lastest minmal install ISO) on an AMD Siena system I got:
Code: |
livecd /mnt/gentoo # mount --make-slave /mnt/gentoo/run
mount: /mnt/gentoo/run: mount failed: Unknown error 5005.
|
What's the cause for the 5005 error and is there a work around?
BTW I had to use the system ASAP so I installed a different distro without problems and it's is running fine now.
Last edited by pegu on Sat Sep 21, 2024 9:19 am; edited 1 time in total |
|
Back to top |
|
|
alamahant Advocate
Joined: 23 Mar 2019 Posts: 3916
|
Posted: Fri Sep 20, 2024 8:35 am Post subject: |
|
|
Please have a look here
Code: |
root #mount --rbind /dev /mnt/mychroot/dev
root #mount --make-rslave /mnt/mychroot/dev
root #mount -t proc /proc /mnt/mychroot/proc
root #mount --rbind /sys /mnt/mychroot/sys
root #mount --make-rslave /mnt/mychroot/sys
root #mount --rbind /tmp /mnt/mychroot/tmp
root #mount --bind /run /mnt/mychroot/run
|
You used the wrong invocation to mount run. _________________
|
|
Back to top |
|
|
pegu n00b
Joined: 19 Sep 2003 Posts: 55
|
Posted: Sat Sep 21, 2024 9:20 am Post subject: |
|
|
Thank you. I can't see how I managed to copy that from the handbook. |
|
Back to top |
|
|
|