Last active
July 1, 2025 05:02
-
-
Save misaka00251/f1e076f783f07d8a4489cbafd9ccd57c to your computer and use it in GitHub Desktop.
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
# nginx conf | |
location / { | |
# ... | |
autoindex on; | |
autoindex_exact_size off; | |
autoindex_localtime on; | |
} | |
# cd ~/ | |
# sudo chown ubuntu:www-data . |
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
# Update system | |
apt update | |
# Upgrade system | |
apt upgrade -y | |
# Let add-apt-repository usable | |
apt install software-properties-common | |
# Install get-iplayer repo | |
add-apt-repository ppa:m-grant-prg/utils -y | |
# Install get-iplayer | |
apt install get-iplayer -y | |
# get something using | |
# get_iplayer --subtitles --subsraw --quality="fhd,hd,high" --metadata --pid-recursive --pid xxxxxxxx |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment