To display the GRUB menu, comment GRUB_HIDDEN_TIMEOUT=0 and GRUB_HIDDEN_TIMEOUT_QUIET=true as shown in the image above The meaning of the above parameters is explained as foll…
This method only applies if the root password cannot be changed through the ECS console Check the/etc/default/grub cat /etc/default/grub Modify /etc/default/grub sed -i 's/GRU…
NFS stands for Network File-System, which enables file sharing between different machines and different systems through the network. Through NFS, you can access remote shared …
Start background tasksFor example, perform ping 114.114.114.114 in the background Start-Job -ScriptBlock {ping 114.114.114.114} From the return, you can see the basic informat…