Thursday, May 12, 2022

Setting up HTTPS Apache webser on Ubuntu

 Create self signed certificate

https://linuxize.com/post/creating-a-self-signed-ssl-certificate/


Follow this guide:

https://www.arubacloud.com/tutorial/how-to-enable-https-protocol-with-apache-2-on-ubuntu-20-04.aspx


Remove: 

'SSLSessionTickets'vfrom /etc/apache2/conf-enabled/ssl-params.conf

CN name can set to server's IP. 

Saturday, March 5, 2022

DLNA on Windows 10

https://www.howtogeek.com/215400/how-to-turn-your-computer-into-a-dlna-media-server/ https://www.howtogeek.com/tips/how-to-get-your-libraries-showing-in-the-navigation-pane-on-windows-8.1/ 1. If you have a bunch of videos at D:\TV Shows\, you could right-click the Videos library, 2. select “Properties”, 3. click “Customize” tab 4. Under Optimize for folder for: Videos 5. Click OK.

Thursday, April 16, 2020

How to install tightvnc on ubuntu

https://www.digitalocean.com/community/tutorials/how-to-install-and-configure-vnc-on-ubuntu-18-04

Tuesday, October 22, 2019

Install FTP Server on CentOS 7

https://phoenixnap.com/kb/how-to-setup-ftp-server-install-vsftpd-centos-7

Thursday, October 17, 2019

Setup OpenSSH Server on Ubuntu

https://www.cyberciti.biz/faq/ubuntu-linux-install-openssh-server/

  1. Open the terminal application for Ubuntu desktop.
  2. For remote Ubuntu server you must use BMC or KVM or IPMI tool to get console access
  3. Type sudo apt-get install openssh-server
  4. Enable the ssh service by typing sudo systemctl enable ssh
  5. Start the ssh service by typing sudo systemctl start ssh
  6. Test it by login into the system using ssh user@server-name

Tuesday, July 24, 2018

share file on virtualbox

cd /media/amine/VBOXADDITIONS_5.1.26_117224/ ./autorun.sh sudo ./autorun.sh reboot cd /home cd amine/ mkdir share sudo mount -t vboxsf share /home/amine/share/

Make sure the file/folder is shared on VBox client. the shared name is "share"