Last active
August 29, 2015 14:17
-
-
Save yonta/331da7521a0caa17be40 to your computer and use it in GitHub Desktop.
Lubuntu 14.10でLubuntu14.04-2LTSのカスタムLiveDVDを作る手順
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 14.10のカスタムを作ろうとするとビルド失敗する、よくわからない | |
# 開発に必要そうなのを一括でいれて、exitすればよい | |
# 下記コマンドによって開発環境を整える | |
add-apt-repository ppa:tualatrix/ppa && \ | |
add-apt-repository ppa:webupd8team/java && \ | |
apt-get update && \ | |
apt-get upgrade && \ | |
apt-get install oracle-java8-installer && \ | |
apt-get install \ | |
mono-runtime openjdk-7-jre openjdk-7-jdk g++ gcc libc++-dev libc6-dev clang llvm \ | |
ruby-full php5 lua5.1 groovy golang fp-compiler lazarus open-cobol \ | |
gprolog gfortran-4.7 haxe nodejs \ | |
smlnj mlton smlsharp ocaml ghc scala clojure1.4 gauche sbcl \ | |
libgmp-dev libc6-dev libcurl4-openssl-dev freeglut3-dev libglew-dev libxmu-dev libxi-dev \ | |
libgtk-3-dev libpng3 libjpeg-dev libgif-dev libssl-dev \ | |
tcl8.4-dev tk8.4-dev qt-sdk \ | |
emacs vim eclipse netbeans git mercurial screen rlwrap \ | |
fonts-vlgothic gimp inkscape libreoffice libreoffice-l10n-ja fcitx-mozc gnuplot vlc \ | |
ubuntu-tweak chromium-browser | |
# add-apt-repositoryにエンター入力あり | |
# apt-get upgrade/installにyesをエンターする必要があるはず | |
# oracle-java8-installerにライセンス選択肢入力がある | |
# デフォルトjavaコマンドを変更する場合 | |
update-alternatives --config java |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment