Last active
September 8, 2020 15:05
-
-
Save technikhil314/8c103e9bee935a4b30394f59dde9ff6d to your computer and use it in GitHub Desktop.
Linux Imp but not frequently used Commands
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Mount all partitions after chroot to fully load the os | |
chroot /dev/sda7 | |
for i in /dev /dev/pts /proc /sys /run; do sudo mount -B $i /mnt$i; done | |
# install uninstall gnome shell extension | |
gnome-extensions uninstall [email protected] | |
gnome-extensions install [email protected] | |
#To disable gnome file indexing/tracker | |
gsettings set org.freedesktop.Tracker.Miner.Files enable-monitors false | |
gsettings set org.freedesktop.Tracker.Miner.Files ignored-files "['*']" | |
gsettings set org.freedesktop.Tracker.Miner.Files crawling-interval -2 | |
#Auto deauth wifi issue | |
echo "options iwlwifi 11n_disable=1 wd_disable=1" | sudo tee /etc/modprobe.d/iwlwifi.conf | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment