Advertisement
maurobaraldi

Ubuntu 10.04 First install script

Jul 29th, 2011
188
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 1.75 KB | None | 0 0
  1. #!/usr/bin/env bash
  2.  
  3. # Install first time Ubuntu version 1.0 (For Ubuntu 10.04)
  4. # By Mauro Baraldi <mauro.baraldi@gmail.com>
  5. # 29/07/2011
  6.  
  7.  
  8. ## Packages
  9.  
  10. # System Essentials
  11. SE=" htop iftop ack-grep binutils libc6-dev libstdc++6-4.1-dev libsvn1 libtool libxml2 linux-libc-dev zlib1g-dev "
  12.  
  13. # Editors
  14. ED=" geany vim-{,perl} broffice hexedit "
  15.  
  16. # Audio, Video & Image:
  17. AVI=" ffmpeg sox vlc libmpeg3-1 mplayer gimp inkscape gstreamer libtheora0 mpeg123 libdvdcss2 "
  18.  
  19. #Python Stuff
  20. PY=" python-{bluetooth,beautifulsoup,bsddb3,cairo,cddb,cheetah,cherrypy,distribute,flickrapi,fuse,git,gtk2,imaging,json,pycurl,mechanize,mock,mysqldb,netifaces,ogg,openid,openssl,pip,pgsql,pygame,pypdf,pysnmp4,sqlite,pygooglechart,qt4,redis,reportlab,serial,simplejson,sqlalchemy,twisted,usb,virtualenv,libxml2,xmpp,yahoo,webpy,werkzeug,zodb} "
  21.  
  22. #Progamming Tools
  23. PR=" g++ gcc lisp-compiler scheme9 avr{dude,prog} simulavr ruby rubygems perl meld erlang php5-{mysql,pgsql,sqlite,curl} git-core subversion mercurial bison "
  24.  
  25. #Database
  26. DB=" mysql-{admin,client,query-browser,server} postgresql-{client,8.4} sqlite3 mongodb "
  27.  
  28. #Gnome Stuffs
  29. GN=" gnome-{chess,gpg,rdp,sudoku}"
  30.  
  31. #Networking
  32. NT=" wireshark netcat traceroute zenmap openssh-{client,server} telnet open{ssl,vpn} filezilla libcurl3 "
  33.  
  34. #Virtualization & Emulation
  35. VT=" virtualbox-ose wine "
  36.  
  37. #Browsers
  38. BR=" chromium-browser flashplugin-installer lynx-cur curl "
  39.  
  40. #Filesystem
  41. FS=" libntfs10 ntfs-3g fuseiso fuse-utils libfuse2 smbfs smbclient samba "
  42.  
  43. #Comunication
  44. CM=" ekiga pidgin pidgin-skype "
  45.  
  46. #Servers
  47. SRV=" apache2 nginx phpmyadmin "
  48.  
  49. #apt-get install $SE $ED $AV $PY $DB $PR $GN $NT $VT $BR $FS $CM $SRV
  50. echo $SE $ED $AV $PY $DB $PR $GN $NT $VT $BR $FS $CM $SRV
  51.  
  52. #apt-get update
  53.  
  54. #apt-get upgrade
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement