用户讨论:Jinzd:修订间差异
来自Ubuntu中文
跳到导航跳到搜索
小 →Ubuntu |
小无编辑摘要 |
||
第13行: | 第13行: | ||
[http://askubuntu.com/questions/26632/how-to-install-eclipse eclipse] | [http://askubuntu.com/questions/26632/how-to-install-eclipse eclipse] | ||
[http://forum.ubuntu.org.cn/index.php forum] | |||
=Ubuntu= | =Ubuntu= |
2016年7月1日 (五) 16:03的版本
export JAVA_HOME=/usr/local/jdk1.8.0_91/
export PATH=$JAVA_HOME/bin:$PATH
export classPath=/usr/local/jdk1.8.0_91/
Ubuntu
----------------------Ubuntu update sudo apt-get update sudo apt-get dist-upgrade / sudo apt-get upgrade ----------------------Postgresql installation sudo apt-get install postgresql-9.5 sudo apt-get install pgadmin3 sudo -u postgres psql postgres \password postgres ----------------------Postgresql configuration cd /etc/postgresql/9.5/main sudo nano postgresql.conf # add following line to the file listen_addresses = '*' # ctrl-o and ctrl-x to finish the operation. sudo nano pg_hba.conf # add following line to the file hostnossl all all 192.168.128.45 255.255.255.0 md5 # ctrl-o and ctrl-x to finish the operation. ----------------------Apache2 Web Server sudo apt-get install apache2 ----------------------PHP for apache2 sudo apt install php libapache2-mod-php sudo apt install php-cli sudo apt install php-cgi sudo apt install php-pgsql ----------------------Netbeans sudo sh ./netbeansXXXXX.sh ----------------------Java env for all users #move jdk to /usr/lib/jvm export JAVA_HOME=/usr/lib/jvm/jdk1.8.0_91 export PATH=$JAVA_HOME/bin:$PATH export CLASSPATH=.:$JAVA_HOME/lib/dt.jar: $JAVA_HOME/lib/tools.jar sudo nano /etc/profile # add following lines to the end of the file export JAVA_HOME=/usr/local/jdk1.8.0_91 export PATH=$JAVA_HOME/bin:$PATH export CLASSPATH=.:$JAVA_HOME/lib/dt.jar: $JAVA_HOME/lib/tools.jar ----------------------OpenSSH sudo apt-get install openssh-server ssh [user]@[server ip] # windows client is putty, can be downloaded from internet. ----------------------jdk # go to Downloads directory tar -zxvf jdk-8u92-linux-x64.tar.gz # move jdk to /usr/local sudo mv ./jdk1.8.0_92 /usr/local # set java env for ubuntu ----------------------PDT Installation # download eclipse from https://eclipse.org/pdt/#download $ cd {directory where your browser downloaded the package to} $ tar -zxvf eclipse-SDK-3.4.1-linux-gtk.tar.gz && mv eclipse ~/opt
Apache2
# create a new site juniverse cd /etc/apache2/sites-available sudo cp 000-default.conf juniverse.conf # edit juniverse.conf sudo nano juniverse.conf <VirtualHost *:81> DocumentRoot /var/www/juniverse # save and exit it sudo mkdir /var/www/juniverse # restart apache2 sudo a2ensite juniverse.conf sudo service apache2 restart
ifconfig
Usage:
- ifconfig [-a] [-v] [-s] <interface> [[<AF> ] <address>]
- [add <address>[/<prefixlen>]]
- [del <address>[/<prefixlen>]]
- [[-]broadcast [<address>]] [[-]pointopoint [<address>]]
- [netmask <address>] [dstaddr <address>] [tunnel <address>]
Java
Add deb resource path:
sudo add-apt-repository "deb http://archive.canonical.com/ubuntu maverick partner" sudo apt-get update sudo apt install sun-java8-jdk # remove sudo add-apt-repository -r "deb http://archive.canonical.com/ubuntu maverick partner"
PostgreSQL
For newest Ubuntu 16.04 postgresql is ready to install:
jinzd@ubuntu:~S sudo apt install postgresql-9.5
Get postgresql ready to use, set password is the first step:
jinzd@ubuntu:~S sudo -u postgres psql template1 template1=# \password postgres; or jinzd@ubuntu:~S sudo -u postgres psql postgres postgres=# \password postgres;
Create database:
jinzd@ubuntu:~S sudo -u postgres createdb JUniverse sudo -u postgres psql --host=localhost --username=postgres --password
Create user:
jinzd@ubuntu:~S sudo -u postgres createuser