Skip to content

Instantly share code, notes, and snippets.

@psiborg
Last active May 13, 2021 03:22
Show Gist options
  • Select an option

  • Save psiborg/ef5d92444aeaeaf1be8e61bb5dfbf3e1 to your computer and use it in GitHub Desktop.

Select an option

Save psiborg/ef5d92444aeaeaf1be8e61bb5dfbf3e1 to your computer and use it in GitHub Desktop.
Pop!_OS

Pop OS

sudo apt install htop

sudo apt install ffmpeg

sudo apt install vlc

GNOME

sudo apt install gnome-user-share

sudo apt install gnome-tweaks

	Tweaks > Window Titlebars
	[x] Maximixe
	[x] Minimize

GNOME Shell Extensions

SSH

sudo apt install openssh-server
sudo nano /etc/ssh/sshd_config

Python 2 and PIP

sudo add-apt-repository universe
sudo apt update
sudo apt install python2

curl https://bootstrap.pypa.io/pip/2.7/get-pip.py --output get-pip.py
sudo python2 get-pip.py

pip2 --version

PIP for Python 3

sudo apt install python3-pip
pip3 --version

Apache + PHP

sudo apt install apache2
sudo systemctl status apache2

sudo ufw app list
sudo ufw app info "Apache Full"
sudo ufw allow in "Apache Full"

sudo a2enmod userdir
mkdir ~/public_html
nano ~/public_html/index.html

sudo apt install php libapache2-mod-php
sudo nano /var/www/html/phpinfo.php
sudo nano /etc/apache2/mods-enabled/dir.conf

sudo systemctl restart apache2

yt-dl

sudo curl -L https://yt-dl.org/downloads/latest/youtube-dl -o /usr/local/bin/youtube-dl
sudo chmod a+rx /usr/local/bin/youtube-dl

duf

Download latest *_linux_386.deb from https://github.com/muesli/duf/releases

wget https://github.com/muesli/duf/releases/download/v0.6.2/duf_0.6.2_linux_386.deb

duf --only local
duf --sort size

References:

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment