其實就下面兩個指令而已~
(至於差別的話,輸進Terminal就知道啦!!)
$ uname -a
$ lsb_release -a
$ uname -a
$ lsb_release -a
sudo apt-get install fcitx
sudo apt-get install im-config //此項用14.04的不須安裝,因為已是為預設
sudo add-apt-repository ppa:fcitx-team/nightly
sudo apt-get update
sudo apt-get install fcitx-table-boshiamy
sudo apt-get install fcitx-chewing
sudo apt-get install fcitx-m17n
sudo apt-get remove ibus //14.04的不要執行這行
im-config
略,這個我想就不用多說了......
sudo apt-get update
sudo apt-get install ssh
/etc/init.d/sshd restart
netstat -tlnp | grep ssh
sudo apt-get install apache2
sudo apt-get install php5 libapache2-mod-php5
sudo apt-get install mysql-server
sudo apt-get install phpmyadmin
sudo gedit /etc/apache2/apache2.conf
# Enable PHPMyAdmin Include /etc/phpmyadmin/apache.conf
sudo /etc/init.d/apache2 restart
sudo iptables -L
sudo ufw enable
sudo ufw disable
sudo ufw default allowip
sudo ufw default deny
sudo ufw allow ssh(使用服務名稱來允許連入,服務名稱請參考 /etc/services 檔案)
sudo ufw allow in 8080(使用 Port 號來允許連入 )
sudo ufw deny out 4662( 使用 Port 號來拒絕連出到別台電腦的指定 Port 號 )
sudo ufw deny in 4662/udp(使用 Port 號來拒絕接受指定 Port 號的 UDP 連入要求 )
sudo ufw status numbered查看防火牆規則號碼
sudo ufw delete 規則號碼
sudo ufw logging on查看log記錄
/var/log/ufw.log
sudo ufw status
sudo ufw status verbose
sudo apt-get update
sudo apt-get -y dist-upgrade
sudo apt-get clean參考:link
sudo /etc/init.d/mysql stop
sudo mysqld --skip-grant-tables &
mysql -u root mysql
UPDATE user SET Password=PASSWORD('YOURNEWPASSWORD') WHERE User='root'; FLUSH PRIVILEGES; exit;
sudo /etc/init.d/mysql startmysql關閉
sudo /etc/init.d/mysql stop
passwd [account](更新linux使用者密碼)