What do you want to save?
Add Code snippet
New code examples in category Shell/Bash
-
-
Lionel Aguero 2022-03-26 02:50:17
proxmox pass raw disk
# get the disk id because letter names (/dev/sda etc) are volatile # hint: use lsblk to find the drive you are trying to add find /dev/disk/by-id/ -type l|xargs -I{} ls -l {}|grep -v -E '[0-9]$' |sort -k11|cut -d' ' -f9,10,11,12 qm set <vmid> -scsi&... Add solution -
Krish 2022-03-25 04:50:17
how to make a new file in bash
# syntax touch <new-file-name> # example touch NewFile_1.txt # ----------------------------------------------------- # FOR CREATING MULTIPLE FILES # syntax touch <1st-file-name> <2nd-file-name> ... <Nth-file-name> # example tou... Add solution
Best helpers
Ranking is empty