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
# assuming usb drive to be formatted is da0 | |
# gpart destroy -F da0 | |
# gpart create -s mbr da0 | |
# gpart add -a 1M -t fat32 da0 | |
# newfs_msdos -F32 /dev/da0s1 | |
# mount_msdosfs /dev/da0s1 /media | |
Original thread: | |
https://forums.freebsd.org/threads/which-filesystem-should-i-use-for-a-usb-flash-drive-to-ensure-it-is-accessible-on-both-freebsd-and-linux.94419/ |
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
Installation | |
------------ | |
$ wget -qO - https://shop.softmaker.com/repo/linux-repo-public.key | sudo gpg --dearmor --output /etc/apt/trusted.gpg.d/softmaker.gpg | |
$ echo "deb https://shop.softmaker.com/repo/apt stable non-free" | sudo tee -a /etc/apt/sources.list.d/softmaker.list | |
$ sudo apt update | |
$ sudo apt install softmaker-office-nx |
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
sudo cp -vR data/* /usr/share/vice |
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
Installation | |
------------ | |
https://tug.org/texlive/quickinstall.html | |
$ cd ~/tmp | |
$ wget https://mirror.ctan.org/systems/texlive/tlnet/install-tl-unx.tar.gz | |
$ zcat < install-tl-unx.tar.gz | tar xf - | |
$ cd install-tl-* | |
$ perl ./install-tl --texdir=$HOME/.local/texlive --scheme=small --no-interaction |
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
Check the available disks on the system using the following command: | |
$ sudo fdisk -l | |
Write the ISO image to the USB drive: | |
$ sudo dd bs=4M if=path/to/the/file.iso of=/dev/sdX |
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
Installation | |
------------ | |
$ sudo apt install apache2 php php-mysql php-pgsql php-gd | |
Configure the firewall: | |
$ sudo ufw app list | |
$ sudo ufw allow 'WWW Full' | |
$ sudo ufw enable |
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
Installation | |
------------ | |
1. Install the build dependencies for mu4e: | |
$ sudo apt install libglib2.0-dev libgmime-3.0-dev libxapian-dev guile-3.0-dev texinfo install-info meson | |
2. Download the mu4e source code from https://github.com/djcb/mu/releases | |
3. Install mu4e in HOME/.local: |
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
Installation | |
------------ | |
1. Install the build dependencies for Emacs: | |
$ sudo apt build-dep emacs | |
$ sudo apt install libtree-sitter-dev | |
2. Download and unpack the Emacs archive: |