Last active
February 20, 2018 02:57
-
-
Save kennychufk/e988ec395d3b381315d26a18c3845666 to your computer and use it in GitHub Desktop.
Arch Linux tricks
This file contains 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
modprobe btusb | |
systemctl start bluetooth.service | |
# (using UI, pair with Android device, turn on bluetooth tethering) | |
This file contains 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
# Only extract a specific file from stash | |
# https://stackoverflow.com/questions/15264553/how-to-unstash-only-certain-files | |
git checkout 'stash@{0}' -- <filename> |
This file contains 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 -o remount,size=4G,noatime /tmp |
This file contains 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
# Terminal user interface: | |
nmtui | |
# CLI: | |
nmcli dev wifi connect <mySSID> password <myPassword> | |
nmcli con up <mySSID> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment