mirror of
https://git.rwth-aachen.de/acs/public/villas/node/
synced 2025-03-30 00:00:11 +01:00
10 lines
158 B
Bash
Executable file
10 lines
158 B
Bash
Executable file
#!/bin/bash
|
|
|
|
mount /dev/sdb1 /media/usb
|
|
|
|
for part in dev sys proc; do
|
|
umount /media/usb/$part
|
|
mount -o bind /$part /media/usb/$part
|
|
done
|
|
|
|
chroot /media/usb
|