首页
归档
分类
随记
留言
关于
恪晨的小站
行动起来,活在当下
累计撰写
149
篇文章
累计创建
43
个标签
累计收到
28
条评论
栏目
目 录
CONTENT
linux-恪晨的小站
以下是
linux
相关的文章
2022-09-27
使用NPS实现内网穿透
前言 通常我们可以使用Ngrok、nps、frp等一些开源工具实现内网穿透,ngrok和frp主要是没有web页面配置,nps的好处是多了个Web页面,所以我们这里介绍一下使用nps配置内网穿透。前提条件一台有公网IP的服务器公网IP域名VPS购买推荐:https://app.cloudcone.
2022-09-27
1515
0
0
Linux
软件
群晖Nas
2022-09-26
VPS安装V2Ray并开启加速
1、安装curlapt install curl2、安装v2raybash <(curl -s -L https://git.io/v2ray.sh)3、安装完成后可以根据提示使用相关命令4、开启bbr加速:执行 v2ray bbr 即可5、使用其他加速,执行下列脚本选择对应的即可wget -
2022-09-26
547
0
0
Linux
2020-08-17
解决linux中apt install慢的问题
打开 /etc/gai.confvim /etc/gai.conf找到以下内容行:# For sites which prefer IPv4 connections change the last line to# precedence ::ffff:0:0/96 100去掉#precedence
2020-08-17
166
0
0
Linux
2020-07-17
自动登录服务器脚本
新建一个shell脚本vim login.sh输入以下内容#!/usr/bin/expectspawn ssh -p22 root@192.168.221.222expect "Password:"send "first\n"expect "Sele
2020-07-17
332
0
0
Linux
2020-06-17
linux安装jenkins
安装jdk,openjdk默认安装会配置好环境变量apt install openjdk-8-jdk-headless设置jenkins源,执行命令:wget -q -O - http://pkg.jenkins-ci.org/debian/jenkins-ci.org.key | sudo apt
2020-06-17
615
0
0
Linux
2020-05-17
Ubuntu中在终端进入root权限但是总提示密码错误的解决方案
先解除root锁定,为root用户重新设置密码打开终端输入:sudo passwd #注意是passwd不是passwordPassword: <— 输入你当前用户的密码Enter new UNIX password: <— 新的Root用户密码Retype new UNIX passw
2020-05-17
242
0
0
Linux