device or resource busy
lsof +D /path kill -9 $PID
Here is what the above code is Doing:
1. We’re using the lsof command to find the process id of the process that has the file open.
2. We’re using the kill command to kill the process.
lsof +D /path kill -9 $PID
Here is what the above code is Doing:
1. We’re using the lsof command to find the process id of the process that has the file open.
2. We’re using the kill command to kill the process.
1. sudo apt update 2. sudo apt install gnome-tweaks 3. sudo apt install gnome-shell-extensions 4. Hit Alt+F2 keyboard shortcut and then type “r” and hit Enter 5. Go to “Extensions” and enable “user themes” -> now you can install your themes 🙂 Here is what the above code is Doing: 1. Update the system 2….
sudo apt-get install openssh-server Here is what the above code is Doing: 1. sudo – run the command as root 2. apt-get – the package manager 3. install – install the package 4. openssh-server – the package to install
sudo snap install blender –channel=2.83lts/stable –classic Here is what the above code is Doing: 1. Install snapd 2. Install Blender
sudo apt-get –only-upgrade install google-chrome-stable Here is what the above code is Doing: 1. Update the package list 2. Install the latest version of Chrome 3. Remove the old version of Chrome 4. Install the latest version of Chrome
// we need to type both of them git fetch origin git reset –hard origin/master Here is what the above code is Doing: 1. git fetch origin – This will fetch all the branches from the remote repository. 2. git reset –hard origin/master – This will reset the master branch to the state of the…
follow step by step for convert debian package to arch package 1. git clone https://github.com/helixarch/debtap 2. bash debtap example.deb 3. sudo pacman -U example.pkg.tar.zst Here is what the above code is Doing: 1. git clone https://github.com/helixarch/debtap 2. bash debtap example.deb 3. sudo pacman -U example.pkg.tar.zst