Skip to content

Instantly share code, notes, and snippets.

View jniltinho's full-sized avatar
🏠
Working from home

Nilton Oliveira jniltinho

🏠
Working from home
View GitHub Profile
@jniltinho
jniltinho / install-oracle-xe.sh
Last active January 27, 2025 19:24
Install Oracle XE Debian/Ubuntu
#!/bin/bash
## Links
## Ubuntu|Debian
# http://www.ccl.net/cca/software/UNIX/oracle/RH6.2/README2.html
# https://openacs.org/xowiki/oracle-install
# https://www.vivaolinux.com.br/dica/Instalacao-e-Configuracao-do-Oracle-Express-Edition-e-SQL-Developer-no-Ubuntu
# https://docs.oracle.com/cd/E16529_01/doc/server.112/e10839.pdf
# https://openacs.org/doc/oracle
# https://kenny-chlim.medium.com/oracle-18c-xe-installation-debian-10-4-buster-9cbf7f957d9f
# https://github.com/oracle/docker-images/tree/main/OracleDatabase/SingleInstance
@jniltinho
jniltinho / Cargo.toml
Last active March 30, 2024 00:55
TCP Server Golang
## Note that this code uses the Tokio runtime for asynchronous I/O.
## You'll need to add the following dependencies to your Cargo.toml file:
tokio = { version = "1", features = ["full"] }
tokio-util = { version = "0.7", features = ["compat"] }
@jniltinho
jniltinho / install-powerdns.sh
Last active March 4, 2024 19:01
Install PowerDNS Linux
#!/bin/bash
## https://github.com/PowerDNS-Admin/PowerDNS-Admin
## https://www.howtoforge.com/how-to-install-powerdns-on-ubuntu-22-04/
## https://phoenixnap.com/kb/powerdns-ubuntu
## https://geekandnix.com/ubuntu/powerdns/
## https://hub.docker.com/r/powerdnsadmin/pda-legacy
## https://gist.github.com/maxivak/1daa03229493e22a7263c83dd52af76f
## https://github.com/PowerDNS/pdns
@jniltinho
jniltinho / install-nerd-fonts.sh
Last active February 28, 2024 18:46
Install Nerd Fonts
#!/bin/bash
## https://github.com/ryanoasis/nerd-fonts/releases
version='3.1.1'
declare -a fonts=(
BitstreamVeraSansMono
@jniltinho
jniltinho / install-zig.sh
Created February 20, 2024 11:17
Install Zig on Linux
#!/bin/bash
## Links
## Ubuntu|Debian|Linux
## https://ziglang.org/documentation/master/
## https://ziglang.org/learn/getting-started/
## https://zig.guide/build-system/build-modes/
## https://zig.guide/
## https://github.com/C-BJ/awesome-zig
## https://github.com/zigzap/zap
@jniltinho
jniltinho / install-postfixadmin-docker.sh
Last active February 17, 2024 18:31
Install PostfixAdmin Docker
#!/bin/bash
## Links
## https://github.com/postfixadmin/postfixadmin
## https://github.com/postfixadmin/docker
apt update
apt install -y git curl wget docker.io
wget -O /usr/local/bin/docker-compose https://github.com/docker/compose/releases/download/v2.24.6/docker-compose-linux-x86_64
chmod +x /usr/local/bin/docker-compose
@jniltinho
jniltinho / install-roundcube.sh
Last active May 28, 2024 00:54
Install RoundCube Ubuntu
#!/bin/bash
## Links
## Ubuntu|Debian
## https://www.linuxtuto.com/how-to-install-roundcube-on-ubuntu-22-04/
## https://medium.com/@community.vahid/stable-webmail-install-roundcube-webmail-ubuntu-22-04-lts-server-semi-stable-ec4349c1804b
## https://caddy.community/t/help-configuring-php-fpm-status-for-caddy2/19737/7
## https://www.atlantic.net/vps-hosting/how-to-install-and-configure-caddy-web-server-with-php-on-rocky-linux/
## https://www.howtoforge.com/tutorial/how-to-install-caddy-web-server-with-php-fpm-on-ubuntu-1604/
@jniltinho
jniltinho / install-filebrowser.sh
Last active June 9, 2024 12:48
Install filebrowser + Caddy
#!/bin/bash
## Links
## Ubuntu|Debian|Linux
## https://github.com/filebrowser/filebrowser
## https://github.com/caddyserver/caddy
## https://github.com/tenox7/wfm
## https://www.youtube.com/watch?v=W2yZ5_sd9Hc
## https://technotim.live/posts/meet-file-browser/
VERSION=v2.30.0
@jniltinho
jniltinho / to-utf8.sh
Created February 7, 2024 19:37
Convert to UTF8
#!/bin/bash
## Links
## https://stackoverflow.com/questions/11316986/how-to-convert-iso8859-15-to-utf8
TO="UTF-8"; FILE=$1
FROM=$(file -i $FILE | cut -d'=' -f2)
if [[ $FROM = "binary" ]]; then
echo "Skipping binary $FILE..."
exit 0
fi
@jniltinho
jniltinho / install-obs-rtspserver.sh
Last active March 14, 2024 10:38
Install obs-rtspserver Plugins
#!/bin/bash
## Links
## Ubuntu 23.10, OBS 30.0.1
## https://github.com/iamscottxu/obs-rtspserver
## https://www.youtube.com/watch?v=CtoBw96wJnM
## https://obsproject.com/forum/resources/obs-rtspserver.1037/
mkdir -p /usr/share/obs/obs-plugins/obs-rtspserver