ubuntu的boot分区报警,删除无用内核文件。
摘要:1. 查看当前使用内核:uname -r4.4.0-97-generic 2. 查看安装的内核dpkg --list 'linux-image*' 3. 删除旧内核sudo apt-get remove linux-image-VERSION sudo apt-get remove linux-im
阅读全文
circusctl命令在ubuntu 上执行,卡住的现象处理。
摘要:1. circus介绍 circus是一个进程管理工具,类似于supervisod。 2. circusctl是circusd进程的管理工具 3. circus的安装 pip3 install circus 4. 在ubuntu 上,使用pip3安装的circus,执行circusctl命令的时候,
阅读全文
ubuntu 16.04.1 LTS zabbix-agent安装
摘要:$ wget http://repo.zabbix.com/zabbix/3.0/ubuntu/pool/main/z/zabbix-release/zabbix-release_3.0-1+xenial_all.deb $ sudo dpkg -i zabbix-release_3.0-1+xenial_all.deb $ sudo apt update$ sudo apt-get instal...
阅读全文
ubuntu 16.04.1 LTS 初始化
摘要:gcc环境 sudo apt-get update && \sudo apt-get install build-essential software-properties-common -y && \sudo add-apt-repository ppa:ubuntu-toolchain-r/te
阅读全文
Ubuntu开机启动的方式
摘要:方法一: 1. 在/etc/init.d/下放置启动脚本,比如postgresqlroot@ubuntu:/etc/init.d# cat postgresql #!/bin/shset -e ### BEGIN INIT INFO# Provides: postgresql# Required-S
阅读全文
ubuntu 16.04.1 LTS postgresql安装配置
摘要:postgresql安装 二进制安装:wget https://get.enterprisedb.com/postgresql/postgresql-9.5.6-1-linux-x64-binaries.tar.gztar xf postgresql-9.5.6-1-linux-x64-binari
阅读全文
ubuntu 16.04.1 LTS redis安装配置
摘要:编译安装:apt-get updateapt-get install build-essential tclwget http://download.redis.io/redis-stable.tar.gztar xf redis-stable.tar.gz cd redis-stable;make
阅读全文
ubuntu 16.04.1 LTS python 3.5.2安装
摘要:python 3.5.2安装 apt-get -y install build-essential checkinstallapt-get install -y libreadline-gplv2-dev libncursesw5-dev libssl-dev libsqlite3-dev tk-d
阅读全文