9 lines
111 B
Bash
9 lines
111 B
Bash
#!/bin/bash
|
|
|
|
umount /mnt/run
|
|
umount /mnt/dev
|
|
umount /mnt/sys
|
|
umount /mnt/proc
|
|
umount /mnt/boot/efi
|
|
umount /mnt
|