Advertisement
tirabytes

Linux: Things to do after Minimal Installations

Nov 24th, 2015
542
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. ## Interface check
  2. ifup eth0
  3. ifconfig
  4.  
  5. ## Update and Upgrade
  6. yum update && yum upgrade
  7.  
  8. ## Set hostname
  9. hostname xyz
  10.  
  11. ## Install Repos
  12. yum install epel-release
  13.  
  14. ## Install tools
  15. yum install links wget telnet nmap -y
  16. yum install selinux-policy -y
  17. setenforce 0
  18.  
  19. ## Install Services
  20. yum install php mysql httpd perl gcc -y
  21.  
  22. ## Install Speedtest-cli
  23. yum install python-pip
  24. pip install --upgrade
  25. pip install speedtest-cli
  26.  
  27. ## Download and install management
  28. wget http://prdownloads.sourceforge.net/webadmin/webmin-1.740-1.noarch.rpm
  29. rpm -ivh web*
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement