Skip to content

Instantly share code, notes, and snippets.

View gtwy's full-sized avatar

JW gtwy

  • Pittsburgh, PA
View GitHub Profile
@gtwy
gtwy / ubuntu_iso_server.txt
Last active November 24, 2019 23:25
Ubuntu ISO Host Server
########################################################################
############################## Ubuntu ISO Server v0.2.0 ### 2018-10-21 #
########################################################################
# These notes explain how I built an open source Ubuntu ISO server.
# ISOs are large files that are needed to install open source software.
# These notes are updated frequently and I use them each time I
# rebuild my server.
#
# Because linux is free, using my computer to share various linux
@gtwy
gtwy / rtorrent_from_src.txt
Created October 21, 2018 18:49
rtorrent & libtorrent from source
apt install pkg-config build-essential automake checkinstall
apt install libtool libncursesw5-dev libncurses5-dev libxmlrpc-c++8-dev libcurl4-openssl-dev
git clone https://github.com/rakshasa/rtorrent.git
git clone https://github.com/rakshasa/libtorrent.git
cd libtorrent/
apt-get install zlib1g-dev libcrypto++-dev libssl-dev
./autogen.sh
./configure
make
make install