Some Ubuntu configure and update commands


/ Published in: Bash
Save to your folder(s)



Copy this code and paste it in your HTML
  1. ### reconfigure an installed program
  2. dpkg-reconfigure <name>
  3.  
  4. ### reconfigure console setting
  5. dpkg-reconfigure console-data
  6.  
  7. ### reconfigure the whole system
  8. dpkg-reconfigure -a
  9.  
  10. ### setting up timezone
  11. tzconfig
  12.  
  13. ### update apt-get source list
  14. apt-get update
  15.  
  16. ### install a package (one can also use aptitude)
  17. apt-get install <name>
  18.  
  19. ### upgrade the whole system
  20. apt-get dist-upgrade

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.