Skip to content

Instantly share code, notes, and snippets.

@shoeb751
Forked from gustavohenrique/elementaryos-postinstall
Last active August 29, 2015 14:01
Show Gist options
  • Save shoeb751/a27d19c64aabe40dd7b2 to your computer and use it in GitHub Desktop.
Save shoeb751/a27d19c64aabe40dd7b2 to your computer and use it in GitHub Desktop.
First update:
sudo apt-get update && sudo apt-get upgrade
Kernel updates:
sudo apt-get install linux-generic-lts-raring
Essential:
sudo apt-get install build-essential ubuntu-restricted-extras htop devede winff k3b libavformat-extra-53 libavcodec-extra-53 tomboy vlc audience etube foto gazette faac faad ffmpeg ffmpeg2theora flac icedax id3v2 lame libflac++6 libjpeg-progs libmpeg3-1 mencoder mjpegtools mp3gain mpeg2dec mpeg3-utils mpegdemux mpg123 mpg321 regionset sox uudeview vorbis-tools x264 dconf-editor dconf-tools wingpanel-slim soundconverter gstreamer0.8-plugins gstreamer0.8-mad gstreamer0.8-lame gwenview pinta indicator-synapse vim-gtk tree aria2 links2 gimp unzip msttcorefonts openjdk-6-jdk
Developer:
sudo apt-get install python-pip git git-svn mercurial subversion
Elementary-tweak:
sudo apt-add-repository ppa:versable/elementary-update
sudo apt-get update
sudo apt-get install elementary-tweaks
Libreoffice int pt-br:
sudo apt-get install libreoffice
sudo apt-get install libreoffice-l10n-pt-br myspell-pt-br
Flashplayer in Midori:
sudo apt-get install flashplugin-installer
sudo ln -s /usr/lib/mozilla/plugins/flashplugin-alternative.so /usr/lib/mozilla/plugins/libflashplayer.so
sudo apt-get install nspluginwrapper
nspluginwrapper -v -a -n -i
Alternative Flash player installation: (If above method doesn't work)
wget http://fpdownload.macromedia.com/get/flashplayer/pdc/11.2.202.310/install_flash_player_11_linux.i386.tar.gz &&
tar -zxvf install_flash_player_11_linux.i386.tar.gz libflashplayer.so
rm install_flash_player_11_linux.i386.tar.gz
mv libflashplayer.so ~/.mozilla/plugins/libflashplayer.32.so
sudo apt-get install nspluginwrapper ia32-libs
nspluginwrapper -v -a -n -i
(Source: http://howtoelementaryos.org/how-to-install-flash-for-midori-in-elementary-os)
zram: Recommended if running low RAM (less than 4GB)
sudo add-apt-repository ppa:shnatsel/zram && sudo apt-get update && sudo apt-get install zramswap-enabler -y
Oracle jdk7:
sudo add-apt-repository ppa:webupd8team/java
sudo apt-get update
sudo apt-get install oracle-java7-installer
Oracle jdk6:
export JDK_URL="http://download.oracle.com/otn-pub/java/jdk/6u45-b06/jdk-6u45-linux-i586.bin"
wget --no-cookies --no-check-certificate --header "Cookie: gpw_e24=http%3A%2F%2Fwww.oracle.com%2F" "$JDK_URL" -O /tmp/jdk.bin
cd /tmp
sh jdk.bin
sudo mv /tmp/jdk1.6.0_45 /usr/lib/jvm/
sudo ln -s /usr/lib/jvm/jdk1.6.0_45 /usr/lib/jvm/java-6-oracle
sudo update-alternatives --install /usr/bin/java java /usr/lib/jvm/java-6-oracle/jre/bin/java 1
sudo update-alternatives --set java /usr/lib/jvm/java-6-oracle/jre/bin/java
echo "export JAVA_HOME=/usr/lib/jvm/java-6-oracle" | sudo tee /etc/profile.d/jdk.sh
Thems, icons and wallpapers:
sudo apt-get install elementary-blue-theme elementary-champagne-theme elementary-colors-theme elementary-dark-theme elementary-harvey-theme elementary-lion-theme elementary-milk-theme elementary-plastico-theme elementary-whit-e-theme
sudo apt-get install elementary-elfaenza-icons elementary-emod-icons elementary-enumix-utouch-icons elementary-nitrux-icons elementary-taprevival-icons
sudo apt-get install elementary-wallpaper-collection
Nuvolaplayer: a cloud based music player
sudo add-apt-repository ppa:nuvola-player-builders/stable
sudo apt-get update
sudo apt-get install nuvolaplayer
System clean:
sudo dpkg -l 'linux-*' | sed '/^ii/!d;/'"$(uname -r | sed "s/\(.*\)-\([^0-9]\+\)/\1/")"'/d;s/^[^ ]* [^ ]* \([^ ]*\).*/\1/;/[0-9]/!d' | xargs sudo apt-get -y purge
sudo apt-get clean
sudo apt-get autoclean
sudo apt-get -f install
sudo apt-get autoremove
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment