Cloud Network

Networking | Support | Tricks | Troubleshoot | Tips

Buymecoffe

Buy Me A Coffee
Showing posts with label Ubuntu. Show all posts
Showing posts with label Ubuntu. Show all posts

Monday, November 2, 2020

How Ubuntu used in government sector?

November 02, 2020
How Ubuntu used in government sector?

Is 700mb DVD sufficient to burn ubuntu in it?

November 02, 2020
Is 700mb DVD sufficient to burn ubuntu in it?

Wednesday, September 2, 2020

How to Setup Monitoring for Docker Containers using Prometheus on Ubuntu 18.04

September 02, 2020
How to Setup Monitoring for Docker Containers using Prometheus on Ubuntu 18.04
 Requirment 1. docker should be installed2. docker-compose also be installedInstallation of docker1.  sudo apt-get install docker.io or sudo apt  install docker.io2. docker --version3. sudo apt-get install docker-compose Creating a Configuration files of prometheus1. create a new file prometheus.yml and copy paste belowsudo nano ~/ prometheus.yml ...

Wednesday, June 10, 2020

How to solve command could not be located because '/bin' is not included in the path environment variable

June 10, 2020
How to solve command could not be located because '/bin' is not included in the path environment variable
ERRORcommand could not be located because '/bin' is not included in the path environment variableSOLUTION 1cat /etc/environmentPATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games"ls -l /etc/environment-rw-r--r-- 1 root root 79 2010-03-16 14:44 /etc/environmentJUST TYPEexport PATH=/usr/bin:/bin=========================================SOLUTION...

Monday, March 30, 2020

How to Install IntelliJ IDEA on Ubuntu 18.04 LTS, Debian and Linux Mint

March 30, 2020
How to Install IntelliJ IDEA on Ubuntu 18.04 LTS, Debian and Linux Mint
How to Install IntelliJ IDEA on Ubuntu 18.04 LTS, Debian and Linux Mint Requirment     login: user with root privileges     OS: Ubuntu 18.04 64-bit     RAM: Minimum 2 GB RAM, 8 GB RAM recommended     Harddisk Space: 1.5 GB hard disk space, 5 GB + at least 1 GB for caches     CPU: 2    ...

How To Install Git and Git-Gui on Ubuntu 18.04 LTS, Debian and Linux Mint

March 30, 2020
How To Install Git and Git-Gui on Ubuntu 18.04 LTS, Debian and Linux Mint
How To Install Git and Git-Gui on Ubuntu 18.04 LTS, Debian and Linux Mint Offically Website of GitHub https://github.com/git/git Offically Website of Git https://git-scm.com/downloads Method 1 Installing Git Step1 :- sudo apt update Step2 :- sudo apt install git  OR  sudo apt-get install git-gui Verify Step3 :- git --version Method 2 Installing...

Sunday, March 29, 2020

How To Install Node.js and npm Ubuntu 18.04, Debian and Linux Mint

March 29, 2020
How To Install Node.js and npm Ubuntu 18.04, Debian and Linux Mint
How To Install Node.js and npm Ubuntu 18.04, Debian and Linux Mint Officially Website https://nodejs.org/en/download/ Stable release: 12.15.0 Offically Github https://github.com/nvm-sh/nvm METHOD 1 Step1 :- sudo apt-get update Step2 :- sudo apt install nodejs Step3 :- node -v OR node --version OR nodejs -v Step4 :- npm -v OR npm --version METHOD 2 Installing...

How to Install and Configure pgAdmin 4 v4.19 on Ubuntu 18.04, Debian and Linux Mint

March 29, 2020
How to Install and Configure pgAdmin 4 v4.19 on Ubuntu 18.04, Debian and Linux Mint
How to Install and Configure pgAdmin 4 v4.19 on Ubuntu 18.04, Debian and Linux Mint Visit the Pgadmin 4 Ubuntu download site: https://www.pgadmin.org/download/ METHOD 1 Importing GPG key sudo apt install wget ca-certificates Install Pgadmin4 from Ubuntu repositories Step1 :- wget --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | sudo apt-key...

How To Install Elasticsearch, Logstash and Kibana on Ubuntu 18.04

March 29, 2020
How To Install Elasticsearch, Logstash and Kibana on Ubuntu 18.04
How To Install Elasticsearch, Logstash and Kibana on Ubuntu 18.04 Requirment     login: user with root privileges     OS: Ubuntu 18.04     RAM: 4GB     CPU: 2     Java: Oracle JDK 8 version The same instructions apply for Ubuntu 17.04/16.04, Linux Mint, Debian, Kubuntu and Elementary...

Friday, March 27, 2020

How to Install and Configure PostgreSQL v12.2 on Ubuntu 18.04, Debian and Linux Mint

March 27, 2020
How to Install and Configure PostgreSQL v12.2 on Ubuntu 18.04, Debian and Linux Mint
Visit the PostgreSQL Ubuntu download site:https://www.postgresql.org/download/linux/ubuntu/First check PostgreSQL Verison Available in Ubuntuapt show postgresqlInstall PostgreSQL from Ubuntu repositoriesUpdatingStep1 :- sudo apt updateInstallationStep2 :- sudo apt install postgresql postgresql-contribVerify sudo -u postgres psql -c "SELECT version();"Login...

Tuesday, November 5, 2019

How to Install Java JDK v13.0.1 on Ubuntu 19.10

November 05, 2019
How to Install Java JDK v13.0.1 on Ubuntu 19.10
Website :- https://www.oracle.com/technetwork/java/javase/downloads/jdk13-downloads-5672538.html Step1 :-  Download the file and show in below screen shot               Then Extract the .tar.gz file  After extract there will be a folder name JDK-13.0.1 need to move into /opt directory Step2 :- sudo mv jdk-13.0.1 ...

Thursday, October 24, 2019

How to Install and Configure Linux, Apache, MySQL, PHP(LAMP) in Ubuntu

October 24, 2019
How to Install and Configure Linux, Apache, MySQL, PHP(LAMP) in Ubuntu
LAMP Server Installation Steps LAMP is a combination of operating system and open-source software stack. The acronym LAMP came from the first letters of Linux, Apache HTTP Server, MySQL or MariaDB database, and PHP/Perl/Python. This tutorial describes how to install LAMP stack on Ubuntu 19.04, and previous versions such as Ubuntu 18.04 etc. Install Apache: Apache...