From fb62782a961d0c5dc57d8634d9381afe596b48fb Mon Sep 17 00:00:00 2001 From: Christopher Hall Date: Sun, 24 Jun 2012 12:29:02 +0800 Subject: [PATCH] add script to run after fresh system install Signed-off-by: Christopher Hall --- InitialApt.sh | 27 +++++++++++++++++++++++++++ README | 4 ---- README.md | 8 ++++++++ 3 files changed, 35 insertions(+), 4 deletions(-) create mode 100644 InitialApt.sh delete mode 100644 README create mode 100644 README.md diff --git a/InitialApt.sh b/InitialApt.sh new file mode 100644 index 0000000..05c1eb1 --- /dev/null +++ b/InitialApt.sh @@ -0,0 +1,27 @@ +# Ubuntu initial packages system setup +# run this on a fresh install to install some tools + +apt-get install mg lynx-cur curl +apt-get install rxvt-unicode aptitude +apt-get install git gitk + +apt-get install emacs emacs23-el emacs-goodies-el haskell-mode ocaml-mode tuareg-mode + +# fonts so emacs hello (CTRL-H H) show no missing fonts +apt-get install emacs-intl-fonts \ + xfonts-intl-arabic xfonts-intl-asian xfonts-intl-chinese xfonts-intl-chinese-big \ + xfonts-intl-european xfonts-intl-japanese xfonts-intl-japanese-big xfonts-intl-phonetic \ + fonts-tibetan-machine fonts-sil-padauk fonts-arphic-ukai fonts-arphic-uming + +apt-get install build-essential g++-multilib gcc-multilib flex bison m4 gawk + +apt-get install ghc libghc-missingh-dev libghc-x11-dev libx11-dev +apt-get install ocaml + +apt-get install slime sbcl cl-asdf cl-swank + +apt-get install imagemagick + +# vim? +# apt-get install vim-gtk +# apt-get install w3m diff --git a/README b/README deleted file mode 100644 index eaa2847..0000000 --- a/README +++ /dev/null @@ -1,4 +0,0 @@ -Configuration files for shells, editors and others - -These files are text configuration file for various programs, that -usually exist in ${HOME} and mostly begin with a '.'. diff --git a/README.md b/README.md new file mode 100644 index 0000000..4c10302 --- /dev/null +++ b/README.md @@ -0,0 +1,8 @@ +# Configuration files for shells, editors and others + +These files are text configuration file for various programs, that +usually exist in ${HOME} and mostly begin with a '.'. + +# InitialApt.sh + +A collection of the utilities to install on a fresh system