首先安裝字型支援
apt-get
install language-pack-zh-hant-base language-pack-zh-hans-base
生成字符集
sudo dpkg-reconfigure locales
然後選擇和zh開頭的用空格選上
安裝zhcon
sudo apt install zhcon
設定普通使用者可以執行 zhcon命令:
sudo adduser username video #username為你的使用者名稱,video為zhcon所在組
設定純文字終端自動執行 zhcon 命令
更改當前使用者家目錄下的 .bashrc 檔案:
在最後新增下面內容if[
["$term"
= linux ]]&&
[["$(ps otty= $$)
"=~ tty]]
&>/dev/null;
then
zhcon --utf8
fi儲存然後reboot重啟電腦即可自動進入支援中文的命令列,使用ctrl+空格可以使用全拼
安裝ssh
sudo apt install sshd
開啟ssh服務
service sshd start
檢視執行
ps -ef|
grep
ssh
安裝mysql5.7
sudo
apt-get
install mysql-server-5.7
初始化配置
sudo mysql_secure_installation
檢查mysql服務狀態
systemctl status mysql.service
授權root遠端訪問
grant privileges on *.* to 'root'@'%' identified by '你設定的密碼'
flush privileges;
設定/關閉開機啟動
sudo systemctl enable mysql.service
sudo systemctl disable mysql.service
Java解惑筆記《不斷更新》
1 判斷奇數isodd return i 1 0 2 new bigdecimal 2.00 subtract new bigdecimal 1.10 避免用new bigdecimal 1 因為精確到0.1000000555111等非常精確的數字 還有一種妥協的解決辦法 system.out.pr...
apache學習筆記(不斷更新)
win下 用putty.exe英文版 linux下 用命令 ssh l username p hostname 其中 表示埠 port username是使用者名稱 httpd.conf 學習 1.設定預設最先開啟的頁面 在httpd.conf裡directoryindex index.html這裡...
VC學習筆記(不斷更新)
改變檢視的背景顏色 可以通過兩種方式 1.填充區域。呼叫fillrect函式實現。2.擦除區域。通過呼叫patblt來實現。具體過程 1 建立畫刷物件,初始化畫刷。2 選入新畫刷,儲存舊畫刷。3 獲取客戶端區域。4 填充區域。擦除區域 5 還原舊畫刷。例子cbrush m brush rgb 0,1...