1. First Install CUPSyum install cups 2. Service Start and Stops systemctl enable cups
systemctl start cups 3. Edit the Configuration filesudo nano /etc/cups/cupsd.conf
Listen localhost:631
to
Listen *:631
grep -v '#' /etc/cups/cupsd.conf&nb...
Monday, November 2, 2020
How to share printer with particular host in cups in RHEL?
Cloud Network
November 02, 2020

RHEL 7 uses system temp files to
Cloud Network
November 02, 2020
Managing temporary files with systemd-tmpfiles on Red HatWhy the files in /tmp directory gets deleted periodically For CentOS/RHEL7cd /usr/lib/tmpfiles.d/tmp.conf# cat /usr/lib/tmpfiles.d/tmp.conf
# Clear tmp directories separately, to make them easier to override
v /tmp 1777 root root 10d
v /var/tmp 1777 root root 30d
# Exclude namespace mountpoints...
Tags:
Fedora,
Redhat Linux

How do we access different apps on Ubuntu system?
Cloud Network
November 02, 2020

How Ubuntu used in government sector?
Cloud Network
November 02, 2020

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

Wednesday, September 2, 2020
How to Setup Monitoring for Docker Containers using Prometheus on Ubuntu 18.04
Cloud Network
September 02, 2020
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 ...
Tags:
Docker,
Kubuntu,
Linux Mint,
Ubuntu

Tuesday, September 1, 2020
How to Install Prometheus using Docker on Ubuntu 18.04
Cloud Network
September 01, 2020
1. Create a new file sudo nano ~/prometheus.yml Add below lines or copy paste into prometheus file # A scrape configuration scraping a Node Exporter and the Prometheus server
# itself.
scrape_configs:
# Scrape Prometheus itself every 5 seconds.
- job_name: 'prometheus'
scrape_interval: 5s
static_configs:
- targets: ['localhost:9090']
...
Tags:
Docker

Tuesday, June 16, 2020
How to Install and Configure pgAdmin 4 v4.19 on Ubuntu 18.04/20.04, Debi...
Cloud Network
June 16, 2020

Wednesday, June 10, 2020
How to solve command could not be located because '/bin' is not included in the path environment variable
Cloud Network
June 10, 2020
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...

Saturday, May 9, 2020
How to Install Virtual Box v(6.1.6) on Ubuntu 20.04 LTS | Install Latest...
Cloud Network
May 09, 2020

Sunday, April 26, 2020
How to Install New Ubuntu 20.04 LTS (Focal Fossa) in Dell Laptop | Install Ubuntu 20.04 LTS Desktop https://youtu.be/5VWsjJhQkJw
Cloud Network
April 26, 2020

How to Install New Ubuntu 20.04 LTS (Focal Fossa) in Dell Laptop | Install Ubuntu 20.04 LTS Desktop https://youtu.be/5VWsjJhQkJw
Cloud Network
April 26, 2020

How to Enable Hidden Notification LED Light in Poco X2 | Notification LED in POCO X2 https://youtu.be/MlH-8UOodr0
Cloud Network
April 26, 2020

How to Install New Ubuntu 20.04 LTS (Focal Fossa) in Dell Laptop | Insta...
Cloud Network
April 26, 2020

Sunday, April 19, 2020
How to Reset Root/User Password on CentOS 8 | Resetting a Forgotten Root Password in CentOS 8 - 2020 https://www.youtube.com/watch?v=Kh3cAX_KzVw
Cloud Network
April 19, 2020

How to Reset Root/User Password on CentOS 8 | Resetting a Forgotten Root Password in CentOS 8 - 2020 https://www.youtube.com/watch?v=U1nQaZ
Cloud Network
April 19, 2020

How to Reset Root/User Password on CentOS 7 | Resetting a Forgotten Root Password - 2020 https://www.youtube.com/watch?v=x-ISSCyZXo8
Cloud Network
April 19, 2020

How to Download and Install Oracle Java (JDK) 8 on Ubuntu 18.04 and How to Uninstall (JDK) 8 - 2020 https://www.youtube.com/watch?v=U1nQaZzV5sk
Cloud Network
April 19, 2020

How to Install Visual Studio Code v1.43.2 on Ubuntu 18.04, Debian and Linux Mint https://www.youtube.com/watch?v=ygBfvZIzVPo
Cloud Network
April 19, 2020

How to Install CentOS Linux 8 Minimal on Virtual Box | Install CentOS Li...
Cloud Network
April 19, 2020
Tags:
CentOS

Monday, March 30, 2020
How to Install IntelliJ IDEA on Ubuntu 18.04 LTS, Debian and Linux Mint
Cloud Network
March 30, 2020
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
...
Tags:
Linux Mint,
Ubuntu

How To Install Git and Git-Gui on Ubuntu 18.04 LTS, Debian and Linux Mint
Cloud Network
March 30, 2020
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...
Tags:
Debian,
Git,
GitHub,
Linux Mint,
Ubuntu

Sunday, March 29, 2020
How To Install Node.js and npm Ubuntu 18.04, Debian and Linux Mint
Cloud Network
March 29, 2020
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...
Tags:
Debian,
Linux Mint,
Ubuntu

How to Install and Configure pgAdmin 4 v4.19 on Ubuntu 18.04, Debian and Linux Mint
Cloud Network
March 29, 2020
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...
Tags:
Debian,
Linux Mint,
Ubuntu

How To Install Elasticsearch, Logstash and Kibana on Ubuntu 18.04
Cloud Network
March 29, 2020
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...
Tags:
Debian,
Linux Mint,
Ubuntu

Friday, March 27, 2020
How to Install and Configure PostgreSQL v12.2 on Ubuntu 18.04, Debian and Linux Mint
Cloud Network
March 27, 2020
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...
Tags:
Ubuntu

Wednesday, February 26, 2020
How to Install Android Studio 3.6 Latest Version on Ubuntu 18.04 LTS Through Terminal & Ubuntu Software
Cloud Network
February 26, 2020

Tuesday, February 11, 2020
How to Secure Copy Files or Directory From One Machine(Ubuntu) to Anothe...
Cloud Network
February 11, 2020

Wednesday, January 29, 2020
How to Make Pendrive Bootable in Ubuntu 18.04 Command line, UNetbootin a...
Cloud Network
January 29, 2020

How to Make Pendrive Bootable in Ubuntu 18.04 Command line, UNetbootin a...
Cloud Network
January 29, 2020

How to Install Putty in Ubuntu 18.04 LTS
Cloud Network
January 29, 2020
