I use the font and colour setup in my .profile, with case "$(tty)" in ( /dev/tty* ) ... ;; esac so that I can customize every tty I log into, regardless if at home or at the university (no root needed, fonts embedded on dotfiles).
I did not know about ralt as a compose key! That will make TTY a viable option again, great!
I used to switch between TTY for everyhing and start X when I wanted to see an image. With a few scripts, you can reduce the amount of times you need to start X.
I am making this wikipedia to plain text script. [EDIT] see below.
Reading the splat.sh script they used to install Arch on their Chromebook reminded me once again that Arch Linux ARM distributes its OS downloads over HTTP.
Don’t worry though, the script helpfully verifies the download by comparing the md5sum against one downloaded…over HTTP.
Looks like the answer is yes and no. Pacman is apparently able to do PGP package checks but the default is:
SigLevel = Optional TrustedOnly
which translates to:
Optional:
If set to Optional , signatures will be checked when present, but unsigned databases and packages will also be accepted.
TrustedOnly:
TrustedOnly (default)
If a signature is checked, it must be in the keyring and fully trusted; marginal trust does not meet this criteria.
So if you are installing a signed package the signature will be checked but an unsigned package will just get accepted blindly. Guess it’s a better check for corrupted downloads than md5 checksums but that’s not really any additional security.
Great writeup! Before moving to macOS, I sometimes switched to TTY-only full time for a few weeks or months to remove the pain in my right wrist (caused by mouse use).
BTW: /etc/tmpfiles.d - Linux/systemd never ceases to amaze me :p.
That rocks!
TTY has just enough, thus is super-light!
I did a script to preview the color themes: https://www.reddit.com/r/commandline/comments/5j1ir7/script_to_set_custom_theme_in_tty_with_an_preview/
I use the font and colour setup in my .profile, with
case "$(tty)" in ( /dev/tty* ) ... ;; esac
so that I can customize every tty I log into, regardless if at home or at the university (no root needed, fonts embedded on dotfiles).I did not know about ralt as a compose key! That will make TTY a viable option again, great!
You may also enjoy this thread about using TTY only: https://nixers.net/showthread.php?tid=1669
I used to switch between TTY for everyhing and start X when I wanted to see an image. With a few scripts, you can reduce the amount of times you need to start X.
I am making this wikipedia to plain text script. [EDIT] see below.
For convenience and longevity (if I move it on my git repo, dead link!), a version of doc-wiki without relying on iomenu:
Reading the splat.sh script they used to install Arch on their Chromebook reminded me once again that Arch Linux ARM distributes its OS downloads over HTTP.
Don’t worry though, the script helpfully verifies the download by comparing the md5sum against one downloaded…over HTTP.
Are the packages themselves signed using PGP?
Looks like the answer is yes and no. Pacman is apparently able to do PGP package checks but the default is:
SigLevel = Optional TrustedOnly
which translates to:
Optional:
TrustedOnly:
So if you are installing a signed package the signature will be checked but an unsigned package will just get accepted blindly. Guess it’s a better check for corrupted downloads than md5 checksums but that’s not really any additional security.
[1] - https://wiki.archlinux.org/index.php/Pacman/Package_signing
[2] - https://www.archlinux.org/pacman/pacman.conf.5.html#SC
@curtis but how do you do that windowing in the termnial? (or is that your text editor or something?)
tmux and (neo)vim.
I also did this for a while! Quick warning it’s hard on high dpi monitors you don’t get many fonts to choose.
That said, each font is exactly designed for it’s size so each letter is impossibly crisp compared to xorg!
Also gpm will give you some mouse support…
Great writeup! Before moving to macOS, I sometimes switched to TTY-only full time for a few weeks or months to remove the pain in my right wrist (caused by mouse use).
BTW:
/etc/tmpfiles.d
- Linux/systemd never ceases to amaze me :p.