用户讨论:Jinzd:修订间差异
来自Ubuntu中文
跳到导航跳到搜索
小无编辑摘要 |
|||
第1行: | 第1行: | ||
[Kubuntu 技巧]] | |||
[[Shell编程基础]] | [[Shell编程基础]] | ||
第11行: | 第11行: | ||
export classPath=/usr/local/jdk1.8.0_91/ | export classPath=/usr/local/jdk1.8.0_91/ | ||
=Ubuntu= | |||
<pre> | |||
sudo apt-get update | |||
sudo apt-get dist-upgrade | |||
sudo apt-get install postresql-9.5 | |||
sudo apt-get install pgadmin3 | |||
</pre> | |||
=ifconfig= | =ifconfig= |
2016年6月21日 (二) 17:35的版本
[Kubuntu 技巧]]
export JAVA_HOME=/usr/local/jdk1.8.0_91/
export PATH=$JAVA_HOME/bin:$PATH
export classPath=/usr/local/jdk1.8.0_91/
Ubuntu
sudo apt-get update sudo apt-get dist-upgrade sudo apt-get install postresql-9.5 sudo apt-get install pgadmin3
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