Skip to main content

Posts

Showing posts from December, 2016

How to install Nginx Proxy Manager on proxmox 8.3.2 container

How to add static routes in ubuntu

How to add static routes in Ubuntu Static routing is the way to route the internet traffic manually.it does not required any network protocol to set it up,but be aware of network changes to reconfigure static routes. Command : route add (-net/-host) <IP/Netword address> netmask <subnetmask> gw <Gateway> dev <Interface> Example : route add -net 192.168.10.0 netmask 255.255.255.0 gw 192.168.1.1 dev eth0 route add -host 192.168.10.10 netmask 255.255.255.0 gw 192.168.1.1 dev eth0 To view network configurations : # ifconfig                                           or # nano /etc/network/interfaces  if the configurations are not saved then sudo /etc/init.d/networking restart   and check again ,

How to add schedule job on Ubuntu

FREE CRONTAB GENERATOR How to add schedule job on Ubuntu For some reason we have to run some commands or script on daily or hourly basis for these purpose cron job is the best solution that automatic runs that script. crontab -e This is an example for a job which going to be run after every 10 mins */10 * * * * usr/bin/somedirectory/somecommands This is an example for a job which is going to be run daily at 4.01 AM daily. 01 04 * * * /usr/bin/somedirectory/somecommand Feel free to ask anything 😊

Automated Installation Script for DMA Softlab Radius Manager 4.0 and 4.1 on Ubuntu With VIDEO Training

Automated Installation Script for DMA Softlab Radius Manager 4.0 and 4.1 on Ubuntu  Requirements : Fresh Installed Ubuntu 12.04 32bit Hard Drive: 60 GB (Minimum) RAM: 2 GB (Minimum) Processor: Dual Core 1.9 GHz (Minimum) Installation Guide : First, we will update the ubuntu box. if you get errors in updating this script will not work properly. anyhow you can visit this to remove updating errors from your ubuntu box. after updating the ubuntu box we are going to create a batch file in there we will paste all of the automated code Radius Manager installation. NOTE: You should have a fresh ubuntu 12.04 32 bit edition with no updating error and with root access. Creating batch files. touch /rm-ubuntu-32bit.sh chmod +x /rm-ubuntu-32bit.sh nano /rm-ubuntu-32bit.sh Download rm-conf and copy all the code and paste into rm-ubuntu-32bit.sh .             Click to download  [dma-conf | sourceforge.net ] Now execute the...

Ubuntu server 12.04 updating errors Solutions

Ubuntu server apt-get update errors Here is the solution Apt-get update rm /var/lib/apt/lists/* -vf apt-get clean apt-get autoremove apt-get update apt-get upgrade and your problem is solved 😊