8 lines
95 B
Bash
8 lines
95 B
Bash
|
|
#!/bin/bash
|
||
|
|
|
||
|
|
umount /mnt/dev
|
||
|
|
umount /mnt/sys
|
||
|
|
umount /mnt/proc
|
||
|
|
umount /mnt/boot/efi
|
||
|
|
umount /mnt
|