Created
April 30, 2025 13:19
-
-
Save DanyWallace/b9b78f4fcc80f5632cd43fd732b16fab to your computer and use it in GitHub Desktop.
thin client software i use on a light vm for random stuff
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
mkdir /tmp/instart && cd /tmp/instart | |
# enable zswap at boot | |
echo 1 > /sys/module/zswap/parameters/enabled | |
# sublime | |
wget https://download.sublimetext.com/sublime_text_build_4192_x64.tar.xz | |
tar xvf sublime_*xz | |
sudo mv ./sublime_text_3/ /opt/sublime_text/ | |
sudo cp /opt/sublime_text/sublime_text.desktop /usr/share/applications/ | |
# go access | |
wget https://tar.goaccess.io/goaccess-1.9.4.tar.gz | |
tar -xzvf goaccess-1.9.4.tar.gz | |
cd goaccess-1.9.4/ | |
./configure --enable-utf8 --enable-geoip=mmdb | |
make | |
# make install | |
cd .. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment