Ubuntu18.04图形界面下无法复制文件:(原因是缺少权限)
直接Ctrl+Alt+T打开终端执行命令:sudo nautilus
*MYSQL:
启动:service mysql start
停止:service mysql stop
*安装驱动包:
sudo dpkg -i xx.deb
*运行.sh文件:
su
./xxx.sh
******或者********
sudo sh ./install.sh
*修改/xx/xxx文件:
sudo gedit /xx/xxx
*deepin-wine-for-ubuntu安装软件:
git clone 'https://gitee.com/wszqkzqk/deepin-wine-for-ubuntu.git'
cd /hime/soldier/deepin-wine-for-ubuntu
su
./install.sh
去***http://mirrors.aliyun.com/deepin/pool/non-free/d/***下载xxx.bed
双击xxx.bed即可安装
*卸载软件:
dpkg --list
sudo apt-get --purge remove xxx
*解压文件:
ZIP:
压缩ZIP:zip -r archive_name.zip directory_to_compress
解压ZIP:unzip archive_name.zip
TAR:
压缩TAR:tar -cvf archive_name.tar directory_to_compress
解压TAR到当前目录:tar -xvf archive_name.tar.gz
解压TAR到指定目录:tar -xvf archive_name.tar -C /xx/xxx/
TAR.GZ:
压缩TAR.GZ:tar -zcvf archive_name.tar.gz directory_to_compress
解压TAR.GZ到当前目录:tar -zxvf archive_name.tar.gz
解压TAR.GZ到指定目录:tar -zxvf archive_name.tar.gz -C /xx/xxx/
TAR.BZ2:
压缩TAR.BZ2:tar -jcvf archive_name.tar.bz2 directory_to_compress
解压TAR.BZ2到指定目录:tar -jxvf archive_name.tar.bz2 -C /xx/xxx/