from my CSDN: https://blog.csdn.net/su_cicada/article/details/86939944 参考 https://raspberrypi.stackexchange.com/questions/3617/how-to-install-unrar-nonfree 1.卸载unrar-free. $ sudo apt-get remove unrar-free 2.通过编辑确保您拥有源存储库/etc/apt/sources.list. $ cat /…
How-To: add EPEL repository to Centos 6.x is Easy! | ITek Blog How-To: add EPEL repository to Centos 6.x is Easy!    Leave a reply centos-logo-gfx epel    Applicable to Centos 6.x Requirements root access        wget: yum install wget Installation ch…
pom.xml配置,针对mvn clean install -P参数(环境参数)打包 比如你有2个环境,一个dev,一个prod, 然后你在mvn打包的时候,可以通过-P来打包,是打dev包,还是prod包. pom.xml可以这样配置 <profiles> <profile> <id>dev</id> <properties> <env>dev</env> </properties> <activati…
问题描述: 今天在使用命令 "sudo apt-get install python3-pip"安装时,总是出现如下图这样的错误,开始以为是以为自己python版本的问题,后来发现无论装什么东西都会出现,这样的错误,错误展示: 解决方案: 进入如下目录: cd /var/lib/dpkg 删除下面这个文件: sudo mv info info.baksudo 重新创建这个文件: sudo mkdir info 如下图所示: 再次安装: (1)安装pip3: sudo apt-get i…
1. apt-cache search package 搜索安装包 2. apt-cache search all 搜索所有安装包 3. apt-cache show package 显示安装包信息 4. apt-cache depends package 显示使用依赖关系 5. apt-cache rdepends package 查看该安装包被哪些安装包依赖 6. apt-get install package 安装该包 7. apt-get install package -- reins…
1 自动修复安装出现broken的package 但是,如果还是失败的话,就需要手动进行干预了.…
准备文件: debian-9.8.0-amd64-DVD-1.iso debian-9.8.0-amd64-DVD-2.iso debian-9.8.0-amd64-DVD-3.iso 挂载: root@debian:~# mount -t iso9660 -o loop /debian/debian-9.8.0-amd64-DVD-1.iso /mnt/debian1 mount: /dev/loop0 is write-protected, mounting read-only root@d…
1.首先关闭防护墙或者设置规则通过且关闭selinux 2.nginx-1.14.2版本(编译安装)-自定义安装路径 3.开启nginx目录浏览 以上步骤请参考前文:https://www.cnblogs.com/omgasw/p/10194698.html 4.调整分区大小 把/dev/centos/home下的50G变为8G 1.增加 1.1去掉挂载 df –Th #查看分区信息 umount /home 1.2减小home, lvreduce -L 8G /dev/centos/home …
Easy Install Easy Install is a python module (easy_install) bundled with setuptools that lets you automatically download, build, install, and manage Python packages. Please share your experiences with us! If you encounter difficulty installing a pack…
npm install 报错:warning no description; no repository field 开始以为必须npm init,npm init在git bash(win7)里,还会卡住.在cmd中,不会卡. 把这两个属性加到package.json中,在npm install 即可.…