ubuntu开始配置

需要重新配个ubuntu,记录一下,省得每次配都要乱翻

提示

1、TMD换源的时候记得备份原来的
2、TMD换源的时候认真一些,可以省很多事情,阿里的源应该够用,装到没有一点报错,update完之后提示让你apt -list查看。

aptlocked

把下面四行代码放到/bin目录文件下,配上执行权限,可以直接当成命令使用
PS:apt好像不能同时执行两个
sudo rm -rf /var/lib/apt/lists/lock
sudo rm -rf /var/lib/apt/lists/
sudo rm -rf /var/lib/dpkg/lock
sudo rm -rf /var/lib/dpkg/lock-frontend 

换源

sudo vim /etc/apt/sources.list
sudo apt-get update --fix-missing
更新中如果出现少key,把报错提示的key替换了xxxx
apt-key adv --keyserver keyserver.ubuntu.com --recv-keys xxxx
sudo apt-get upgrate
#  阿里源
deb http://mirrors.aliyun.com/ubuntu/ bionic main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ bionic-security main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ bionic-updates main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ bionic-proposed main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ bionic-backports main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ bionic main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ bionic-security main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ bionic-updates main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ bionic-proposed main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ bionic-backports main restricted universe multiverse

贴个源的source找的时候最好找最近的文章,能姑哥更好

安装一些必须物件

apt install --fix-missing 这个参数自动安装依赖
sudo apt-get install vim -y
sudo apt-get install net-tools -y
apt-get install gcc -y
apt-get install proxychains -y

开启root

sudo passwd root

安装docker

apt-get install curl
apt-get install ca-certificates -y
apt-get install software-properties-common
apt-get install apt-transport-https
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
echo 'deb https://apt.dockerproject.org/repo debian-stretch main' > /etc/apt/sources.list.d/docker.list
apt-get install docker
apt-get install docker.io
service docker status
docker --version

docker配置加速器daocloud

https://www.daocloud.io/mirror
往下拉看看会不会有
curl -sSL https://get.daocloud.io/daotools/set_mirror.sh | sh -s http://xxx.m.daocloud.io
如果没有就注册,然后再访问这个页面

参考
或者百度搜索docker daocloud
2019出来一大批文章换国内源...和apt源差不多

vim /etc/docker/daemon.json
{
"registry-mirrors": [
"https://kfwkfulq.mirror.aliyuncs.com",
"https://2lqq34jg.mirror.aliyuncs.com",
"https://pee6w651.mirror.aliyuncs.com",
"https://registry.docker-cn.com",
"http://hub-mirror.c.163.com"
],
"dns": ["8.8.8.8","8.8.4.4"]
}

#重启docker服务
systemctl restart docker

安装pip

apt源更换好后直接安装

pip list | grep xxxx
pip uninstall xxxx 卸载

源 
临时使用
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple some-package

设为永久
切到root 
mkdir ~/.config/pip
touch ~/.config/pip/pip.conf
echo "[global]" > ~/.config/pip/pip.conf
echo "index-url = https://pypi.tuna.tsinghua.edu.cn/simple" >> ~/.config/pip/pip.conf

安装jdk

因为现在jdk收费了(也可以查到共享账号),但一般用openjdk开源版本就可以了

#需要再/bin/bash下搞,zsh报错
apt purge openjdk* #先卸载原来的,zsh这个*不匹配,换回bash
apt install openjdk-8-jdk

界面美化+快捷配置
shell美化zsh

nginx

apt install nginx
service nginx status
nginx -t 查看配置文件

日志:
/var/log/nginx

配置php
配置完502了

配置php的时候看清楚php-fpm
监听文件的路径,然后再nginx/site-avxxx/default的时候配置成对应的文件
listen = /run/php/php7.2-fpm.sock

快捷配置

~/.bash 更改快速配置
alias hgrep="history | grep" #可以直接替换的,把一些常用的替换一下,很舒服,也可以用来混肴命令

#也可以自定义函数
function set-title() { #修改shell 的title,多个shell的时候修改一下不容易忘
  if [[ -z "$ORIG" ]]; then
    ORIG=$PS1
  fi
  TITLE="\[\e]2;$*\a\]"
  PS1=${ORIG}${TITLE}
}

关于第三方软件下载

tar.gz压缩包,下载下来可能需要自己配置
deb安装包,比较无脑,这个看情况选择tar还是deb

dpkg -i xxx.deb  #安装
dpkg -L xxx #查看安装的位置
dpkg -P xxx #卸载,不保留配置

你可能感兴趣的:(ubuntu开始配置)