Created
June 7, 2014 13:00
-
-
Save zhoujj2013/8724f29b682bb785e9b8 to your computer and use it in GitHub Desktop.
Some commons for set up a debian linux for bioinformatics analysis.(Linux debian 3.2.0-4-amd64 #1 SMP Debian 3.2.57-3+deb7u2 x86_64 GNU/Linux)
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
# install debian linux from official website (with web server, ssh server application) | |
# source.lst for different district: | |
# update the source.lst and then update debian linux | |
su root | |
# input the password | |
cp new_source.lst /etc/apt/source.lst | |
apt-get update | |
# or edit by vi /etc/apt/source.lst, then update | |
# | |
# install vim | |
apt-get install vim | |
apt-get install sudo | |
# add you user name to sudoer | |
vim /etc/sudoers | |
# Add: username ALL=(ALL:ALL) ALL | |
# exit root | |
exit | |
# install basic software for general use | |
# install basic software for bioinformatics analysis | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment