: June-2020

Home » Computer Articles » Archive by category : Linux

Debian 10 setup to become a Docker host server Download and setup Debian 10 the way you want it.     Disable some not needed services. # systemctl list-units -t service # systemctl list-unit-files --state=enabled --no-pager # systemctl stop nfs-common.service # systemctl disable nfs-common.service # systemctl stop rpcbind.service # systemctl disable rpcbind.service # systemctl stop ..

Read more

Debian 9 setup to become a Docker host server Download and setup Debian 9 the way you want it. Docker CE # curl -fsSL https://download.docker.com/linux/debian/gpg | apt-key add -# deb [arch=amd64] https://download.docker.com/linux/debian stretch stable   Disable some not needed services. Ref: https://blog.sleeplessbeastie.eu/2015/04/27/how-to-manage-system-services-on-debian-jessie/ # systemctl list-units -t service # systemctl stop nfs-common.service# systemctl disable nfs-common.service# systemctl ..

Read more

Let’s Encrypt is a free, automated, and openCertificate Authority that you can use to secure your web server. I used Certbot to do the installation. URL: https://letsencrypt.org/ and https://certbot.eff.org/   This is the setup for a Nginx CentOS 6 Server Change into root directory # cd /root/ Create a bin directory # mkdir bin Change into bin directory # cd ..

Read more

Samsung Galaxy Note 8 GT-N5110 isn't supported anymore at LineageOS. Last version seems to be lineage-14.1-20181110-nightly-n5110-signed.zip OK, keep receiving an error everytime I do file management type of work. "MTP Host has stopped" tried different versions of Android, versions 7.1.2, 6.0.1 and even other custom roms. When I go back to Android 5.1.1 from CM ..

Read more

I wanted to see if I could install Linux Desktop on my MSI GL62 Laptop. So here is some basic steps I needed to take to make it work.   Created a bootable USB key with Elementary OS on it.   This setup even works with UEFI, you may need to disable the secure boot. ..

Read more

Using CentOS 7 for a web server, see my steps below. This setup was started on a vps provider online. So of course there maybe some steps missing if you were building on your local server.   CentOS 7 x86_64 minimal install. As soon as the server has boot up, now it is time to ..

Read more

So I wanted to try out ServerPilot, ServerPilot is a web tool that helps setup your server for WordPress or php needed applications.   You can go to https://serverpilot.io/ to check out ServerPilot.   You need to have a basic Ubuntu 14.04 or Ubuntu 16.04 Server setup.   I also wanted to make some tweaks to the ..

Read more

I have read about Ghost Blogging software and wanted to know how it worked. So I installed it on CentOS 6 and this is what I had to do to get to work properly.   Server 1 gig ram, single CPU and 20G ssd hard drive. When running this setup seemed to only using 250mb ..

Read more

Wanted to try out a different WebServer.   Setup a basic VPS Server on Vultr.com, Reliability and Performance is very good. Good prices also. If you are interested in Vultr.com here is my referral link http://www.vultr.com/?ref=6818914   I deployed Debian 8 and see below for basic configuration.   Hostname Setting the hostname. # hostname vps.yourdomain.com Edit ..

Read more

At the very least, you should have a basic linux installation. This how-to assumes you have set up a CentOS 6 x86_64 VPS with 1GB RAM, but it should be applicable to most setups with minimal tweaks. All the commands and changes below should be done as the root user.     Interesting way to ..

Read more