Wednesday, November 12, 2025

Install openssh with multiple versions on different directory

See this link: https://medium.com/@asyarif/install-different-version-of-openssl-55585be844f1 wget https://github.com/openssl/openssl/releases/download/openssl-3.6.0/openssl-3.6.0.tar.gz sudo yum install perl-IPC-Cmd sudo yum install perl-Time-Piece sudo yum install perl-Pod-Html ./Configure --prefix=/opt/openssl3 --openssldir=/opt/openssl3 --libdir=lib -Wl,-rpath,/opt/openssl3/lib make sudo make insta

Wednesday, June 25, 2025

Apache superset

I used this to setup superset:

https://medium.com/yavar/apache-superset-docker-installation-9e4cc58224fd Good videos to watch: https://www.youtube.com/watch?v=1RZG7rM6R1k&ab_channel=Preset https://www.youtube.com/watch?v=Mhai7sVU244&ab_channel=ApacheAirflow

Monday, May 19, 2025

open-webui with ollama

https://geshan.com.np/blog/2025/02/ollama-docker-compose/

Sunday, May 18, 2025

Install docker on debian

https://reintech.io/blog/setting-up-docker-docker-compose-debian-12#google_vignette This is the command for docker-compose:
sudo curl -L "https://github.com/docker/compose/releases/download/v2.36.0/docker-compose-linux-x86_64" -o /usr/local/bin/docker-compose

Tuesday, March 18, 2025

python: command not found...

# python bash: python: command not found... # alternatives --config python There are 2 programs which provide 'python'. Selection Command ----------------------------------------------- *+ 1 /usr/libexec/no-python 2 /usr/bin/python3 Enter to keep the current selection[+], or type selection number: 2 # python Python 3.6.8 (default, Oct 11 2019, 15:04:54) [GCC 8.3.1 20190507 (Red Hat 8.3.1-4)] on linux Type "help", "copyright", "credits" or "license" for more information. >>>