Advertisement
shokti

ubuntu server webmin installation

Sep 5th, 2012
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.80 KB | None | 0 0
  1. If you like to install and update Webmin via APT, edit the /etc/apt/sources.list file on your system and add the lines :
  2.  
  3. deb http://download.webmin.com/download/repository sarge contrib
  4. deb http://webmin.mirror.somersettechsolutions.co.uk/repository sarge contrib
  5.  
  6. You should also fetch and install my GPG key with which the repository is signed, with the commands :
  7.  
  8. sudo -i
  9. cd /root
  10. wget http://www.webmin.com/jcameron-key.asc
  11. apt-key add jcameron-key.asc
  12. exit
  13.  
  14. You will now be able to install with the commands :
  15.  
  16. sudo apt-get update
  17. sudo apt-get install webmin
  18.  
  19. All dependencies should be resolved automatically.
  20.  
  21. To be able to login as root you need to run command below:
  22.  
  23. sudo /usr/share/webmin/changepass.pl /etc/webmin root your_password_here
  24.  
  25. To access webmin go to https://localhost:10000/
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement