程式CODE

2020年4月23日 星期四

從ubuntu20.04開始

1.安裝 ubuntu 20.04
2.安裝 fcitx fcitx-table-boshiamy fcitx-chewing
   sudo apt-get update
   sudo apt-get install fcitx fcitx-table-boshiamy fcitx-chewing
3.安裝 chrome
4.安裝 AMP
一、apache2
sudo apt-get install apache2

二、Mysql5.7
sudo apt-get install mysql-server mysql-common mysql-client

 進入mysql管理
sudo mysql -u root

刪除root帳號
DROP USER 'root'@'localhost';

新增root帳號,密碼123456
CREATE USER 'root'@'%' IDENTIFIED BY '123456';

授權
GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' WITH GRANT OPTION;

刷新
FLUSH PRIVILEGES;

離開
exit

三、php7.4
sudo apt-get install php7.4 php7.4-cli php7.4-json php7.4-mbstring php7.4-gd php7.4-xml php7.4-ldap php7.4-mysql php7.4-curl php7.4-zip

四、下載安裝 composer
wget -c https://getcomposer.org/composer.phar
chmod +x composer.phar
sudo mv composer.phar /usr/local/bin/composer

五、安裝 git
sudo apt-get install git


5.更改 html 位置
mkdir html
cd /var/www
sudo mv html html_old
sudo ln -s /home/wang/html ./

6.下載 phpMyAdmin

7.安裝 geany
8.下載 phpstorm
9.安裝 virtualbox
sudo apt-get install virtualbox
10.關閉回報問題
gksu gedit /etc/default/apport
enable=0

7.安裝 shutter
sudo add-apt-repository ppa:linuxuprising/shutter
sudo apt-get update
sudo apt-get install shutter

8.winehq 安裝字型
對於一些win下的軟體,在ubuntu下用winehq執行,新細明體無法顯示
參考自 https://lordgod11.pixnet.net/blog/post/32414083-ubuntu-winehq%E4%B8%AD%E6%96%87%E5%AD%97%E5%AE%89%E8%A3%9D%E8%A8%AD%E5%AE%9A
sudo mv 新細明體.ttc /usr/share/fonts/truetype/win_fonts
sudo fc-cache -fv

沒有留言:

張貼留言