Advertisement
Guest User

Untitled

a guest
Feb 12th, 2016
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1. ##
  2. ## After minimal centos 5.11 installation complete the following to get a decent sandbox to test installations etc.
  3. ##
  4.  
  5. yum -y update
  6.  
  7. yum -y groupinstall "Desktop" "Desktop Platform" "X Window System" "Fonts" "KDE (K Development Environment)" "Development Tools"
  8.  
  9. yum -y install "kernel-devel" "curl" "sudo" "unzip" "gcc" "kernel-devel" "bzip2"
  10.  
  11. Settings >> Storage >> Point to VBoxGuestAdditions.iso located in VBox installation directory
  12.  
  13. Devices >> Insert Guest Additions CD Image
  14.  
  15. startx
  16.  
  17. CD should appear on the desktop
  18.  
  19. ./VBoxLinuxAdditions.run
  20.  
  21. groupadd developers
  22.  
  23. useradd -G developers ajp
  24.  
  25. passwd ajp
  26.  
  27. id ajp
  28.  
  29. visudo
  30.  
  31. %developers ALL=(ALL) ALL
  32.  
  33. vi /etc/inittab
  34. Change
  35. id:3:initdefault:
  36. to
  37. id:5:initdefault:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement