vps新装后命令集合

宝塔面板按照

Centos安装命令 :

yum install -y wget && wget -O install.sh http://download.bt.cn/install/install_6.0.sh && sh install.sh

Ubuntu/Deepin安装命令:

 

wget -O install.sh http://download.bt.cn/install/install-ubuntu_6.0.sh && sudo bash install.sh

Debian安装命令:

wget -O install.sh http://download.bt.cn/install/install-ubuntu_6.0.sh && bash install.sh

取消宝塔面板强制性登陆框命令

rm -f /www/server/panel/data/bind.pl

一键卸载宝塔Linux面板及运行环境命令

1-使用xshell或SecureCRT等链接工具 进入服务器

命令:wget http://download.bt.cn/install/bt-uninstall.sh

2- 执行脚本

命令:sh bt-uninstall.sh

wulabing命令安装

https://github.com/wulabing/Xray_onekey

在Debian上安装Docker

一键脚本:

curl -fsSL https://get.docker.com | bash -s docker --mirror Aliyun

01、安装通过HTTPS添加新存储库所需的软件包:

apt update
apt install apt-transport-https ca-certificates curl software-properties-common gnupg2

02、使用以下curl命令导入存储库的GPG密钥:

curl -fsSL https://download.docker.com/linux/debian/gpg | apt-key add -

成功后,命令将返回OK。

03、将稳定的Docker APT存储库添加到系统的软件存储库列表中:

add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/debian $(lsb_release -cs) stable"

$(lsb_release -cs)将返回Debian发行版的名称。在这种情况下,就是这样buster

04、更新apt软件包列表并安装最新版本的Docker CE(Community Edition):

apt update
apt install docker-ce

05、安装完成后,Docker服务将自动启动。要验证它输入:

systemctl status docker

输出类似如下:

● docker.service - Docker Application Container Engine
Loaded: loaded (/lib/systemd/system/docker.service; enabled; vendor preset: enabled)
Active: active (running) since Tue 2019-07-30 20:52:00 GMT; 1min 11s ago
    Docs: https://docs.docker.com
...

06、在撰写本文时,Docker的最新稳定版本是19.03.1:

docker -v

输出内容:

Docker version 19.03.1, build 74b1e89
docker images   #查看所有docker映像
docker ps    #查看所有容器
docker ps -a    #查看正在运行中的容器
docker stop XXXX  #停止运行xxxx容器(xxxx为容器id前4位)
docker rmi image-name   #删除一个映像
docker rmi -r $(docker images -q)   #删除所有映像
docker rm $(docker ps -a -q)    #删除所有容器
docker exec -it container-id bash   #进入容器
exit    #退出容器
ctrl+c    #退出当前容器并结束该容器
service docker stop  # 停止docker
rm -rf /var/lib/docker   #移除docker容器
service docker restart  #重启docker,此时相当于刚刚安装好docker。

ss分流规则

https://raw.githubusercontent.com/Hackl0us/Surge-Rule-Snippets/master/LAZY_RULES/Shadowrocket.conf

安装pt下载

https://github.com/Aniverse/inexistence

安装命令

bash <(wget --no-check-certificate -qO- https://github.com/Aniverse/inexistence/raw/master/inexistence.sh)

版权声明:
作者:admin
链接:http://www.bttme.com/archives/1305.html
来源:bttme
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>