This is a general-purpose function to ask Yes/No questions in Bash, either with or without a default answer. It keeps repeating the question until it gets a valid answer.
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
| 1. Hit ctrl+alt+esc | |
| 2. Hit Alt+F2, type r, and press Enter | |
| 3. Switch to another tty, for example tty6, by pressing Ctrl+Alt+F6 | |
| Run: | |
| pkill -HUP -f "cinnamon --replace" | |
| Return to tty8 by pressing Ctrl+Alt+F8 |
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
| #!/bin/bash | |
| # Modified by Chris Richardson (https://github.com/christr and https://twitter.com/christr77) on 09/20/2020 | |
| # Previous versions of this script don't work because they hadn't been updated since 2012. There are now more steps involved to set this up. | |
| # This script update is based on information found here: https://developers.linode.com/api/v4/domains-domain-id-records-record-id/#put | |
| # You first must find out the domain ID and resource ID numbers. In order to do this follow the steps below. | |
| # 1. Create a Linode API Key through your account profile at https://cloud.linode.com/dashboard. Give it rights to read/write to domains only. | |
| # 2. From a shell run the following command: LINODE_API_KEY=[insert API key from step 1 here] | |
| # 3. Run the following command to get the domain ID number for the domain you want to manage: curl -H "Authorization: Bearer $LINODE_API_KEY" https://api.linode.com/v4/domains/ |
This is a TL;DR for: https://linuxopsys.com/topics/update-firmware-on-ubuntu-using-fwupd
# Install
su -
apt update
apt install udisks2 fwupd
# Display supported devices
fwupdmgr get-devices
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
| #!/bin/bash | |
| # | |
| # script that paraphtases info from the debian wiki at: https://wiki.debian.org/ppviewerFonts | |
| # | |
| # | |
| set -e | |
| DOWNLOAD_URL="https://archive.org/download/PowerPointViewer_201801/PowerPointViewer.exe" | |
| EXPECTED_CHECKSUM="249473568eba7a1e4f95498acba594e0f42e6581add4dead70c1dfb908a09423" | |
| FONT_DIR="$HOME/.local/share/fonts/ppviewer" |
OlderNewer