使用命令行安装
$ sudo apt update
$ sudo apt install ttf-mscorefonts-installer
$ sudo fc-cache -f -v
将所有的 Windows 字体复制到 /usr/share/fonts 目录下并使用一下命令安装字体:
$ mkdir /usr/share/fonts/WindowsFonts
$ cp /Windowsdrive/Windows/Fonts/* /usr/share/fonts/WindowsFonts
$ chmod 755 /usr/share/fonts/WindowsFonts/*
fc-cache
sudo vim /usr/bin/wps (et, wpp)
在 #!/bin/bash 下面输入(搜狗基于fcitx,系统内可能是ibus)
export XMODIFIERS=”@im=fcitx”`
export QT_IM_MODULE=”fcitx”
apt-get install libxcb-xinerama0
最简单的查看方法可以使用ls -ll、ls-lh命令进行查看,当使用ls -ll,会显示成字节大小,而ls- lh会以KB、MB等为单位进行显示。
通过命令du -h –max-depth=1 *,可以查看当前目录下各文件、文件夹的大小,这个比较实用。 Continue reading linux如何查询文件及文件夹大小 →
pip 是 Python 包管理工具,该工具提供了对Python 包的查找、下载、安装、卸载的功能。 Continue reading PIP →
:cd /etc/default
:/etc/default$ ls
:sudo vi grub
GRUB_CMDLINE_LINUX_DEFAULT=“quiet splash”to “text”
:sudo update-grub
:sudo systemctl set-default multi-user.target
Created symlink /etc/systemd/system/default.target → /lib/systemd/system/multi-user.target.
:reboot
sudo add-apt-repository ppa:yannubuntu/boot-repair && sudo apt-get update sudo apt-get install -y boot-repair && boot-repair
apt install lm-sensors
sudo sensors-detect
sensors
sudo apt-get update
sudo apt-get upgrade -y
sudo apt-get install apache2 -y
sudo add-apt-repository ppa:ondrej/php
sudo apt update
sudo apt install php7.1-fpm php7.1-mcrypt php7.1-cli php7.1-xml php7.1-mysql php7.1-gd php7.1-imagick php7.1-recode php7.1-tidy php7.1-xmlrpc
sudo apt-get install libapache2-mod-php7.1
sudo apt-get install php7.1-sqlite3
wget https://wordpress.org/latest.tar.gz
wget https://downloads.wordpress.org/plugin/sqlite-integration.1.8.1.zip
tar xvfz ./latest.tar.gz
unzip ./sqlite-integration.1.8.1.zip
sudo mv wordpress /var/www/html/
sudo chown -R www-data:www-data /var/www/html/wordpress
mv wp-config-sample.php wp-config.php
mv sqlite-integration /var/lib/wordpress/wp-content/plugins/
mv /var/www/html/wordpress/wp-content/plugins/sqlite-integration/db.php /var/www/html/wordpress/wp-content/
sudo service apache2 restart
IP/wordpress #start installation
–Love science, Enjoy life.