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
# Meta-pacote do Gnome... | |
sudo apt install gnome | |
# Remover... | |
sudo apt remove firefox-esr | |
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
Create the file 'wpa_supplicant.conf'... | |
$ sudo nano /etc/wpa_supplicant.conf | |
Put the following in ti: | |
network={ | |
ssid="your_wifi_name" | |
psk="your_wifi_password" | |
} |
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
#!/usr/bin/env bash | |
# Vídeo da live: | |
# https://www.youtube.com/watch?v=HM1aBrhcj9c | |
# Requer: dmenu | |
selected="$(ps -a -u $USER | \ | |
dmenu -i -l 20 -p "Select process to kill" | \ | |
awk '{print $1" "$4}')"; |
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
# ------------------------------------------------------ | |
# Important: these settings doesn't change | |
# the graphic installer! | |
# ------------------------------------------------------ | |
# What it changes? | |
# | |
# - no domain asking (deafult to 'localhome') | |
# - no root password asking | |
# - default to sid main contrib non-free | |
# - no 2nd CD asking |
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
#!/usr/bin/env bash | |
# | |
# Usage: | |
# sudo ediso.sh patho_to/isofile.iso path_to/new_isofile.iso path_to/preseed_file | |
# | |
# Requires: | |
# - bsdtar | |
# - genisoimage | |
# - syslinux-utils |
NewerOlder