Now you can Subscribe using RSS

Submit your Email
顯示具有 Linux-Software 標籤的文章。 顯示所有文章
顯示具有 Linux-Software 標籤的文章。 顯示所有文章

2017/10/17

Linux Ubuntu 操作 MySQL

asd
安裝好 MySQL 並且登入
使用以下指令可以查看目前有哪些數據庫
mysql> show databases;
+--------------------+
| Database           |
+--------------------+
| information_schema |
| mysql              |
| performance_schema |
| sys                |
+--------------------+
4 rows in set (0.00 sec)

2017/10/15

Ubuntu Install MySQL

asd
MySQL 安裝方法很簡單
在 Terminal 下指令進行安裝
$sudo apt-get install mysql-server
*安裝過程會要你輸入 root 預設密碼
安裝完後 mysql 服務就會自動開啟
使用以下指令可以確認 mysql 狀態
查看 mysql 進程
$ps -aux|grep mysql
mysql     1015  0.0  1.7 1246820 145988 ?      Ssl  08:26   0:10 /usr/sbin/mysqld
jrtou    11971  0.0  0.0  21572  1088 pts/1    S+   15:33   0:00 grep --color=auto mysql
檢查 mysql 佔用 port 狀態,預設是3306
$netstat -nlt|grep 3306
tcp        0      0 0.0.0.0:3306            0.0.0.0:*               LISTEN 

2017/06/10

Linux 安裝JDK與Android Studio

asd
先至 Oracle 下載 JDK 選擇符合你作業系統的版本。

下載完之後解壓縮檔案,然後移動檔案至 /usr/local 目錄中。
sudo mv jdk1.8.0_131 /usr/local/
接下來設定 java path。
使用你的文字編輯器開啟 /etc/profile 檔案進行編輯。
sudo vim /etc/profile
在最後面加上以下。
JAVA_HOME=/usr/local/jdk1.8.0_131/bin
PATH=$PATH:$JAVA_JDK
export PATH

Coprights @ 2016, Blogger Templates Designed By Templateism | Templatelib