PhpStorm使用sftp上传代码
Tools→Deployment→configuration,Tools→Deployment→Upload to xxx
Linux使用笔记
Tools→Deployment→configuration,Tools→Deployment→Upload to xxx
SUID: Set UID upon execution 在执行时设置UID,让可执行文件在执行时具有它的所有者权限;
SGID: Set GID upon execution 在执行时设置GID,让可执行文件在执行时具有它的所属组权限;
SBIT: Sticky Bit 粘滞位,让某个目录下的文件只能由它的所有者和root删除,不允许其它用户删除。
awk是Linux/Unix中的一个格式化文本的命令,其本质是个脚本语言,是处理日志必用的命令!
– 进入iTerm的`Preferences`→`Keys`→点击右下角`+`号→点击`click to set`
– Action搜索esc找到“Send Escape Sequence”,选择它
– 方框里填b(向左)或f(向右),即ESC+b或ESC+f
源码编译openresty(Compiling openresty/nginx from source)
There is no excerpt because this is a protected post.
There is no excerpt because this is a protected post.
简单用法:rsync -azP ./local_file.txt [email protected]:~
Mattermost是一款类似slack的,go语言编写的开源(github)即时聊天服务器,另外还有一款rocketchat也是跟这个类似的。
在Evolution Host申请免费使用高配置KVM VPS,可用来建站。
把config.json文件中的第14-402行保存到test.json(这个文件会自动创建):
sed -n ‘14,402’p config.json > test.json
方法一:netstat -tulnp | grep 443 (Linux), netstat -ano | grep 443 (Windows)
方法二:ss -lnp | grep 443
方法三:lsof -i:443
Sqlite3基本命令
– wget http://download.redis.io/releases/redis-6.0.1.tar.gz
– curl -O wget http://download.redis.io/releases/redis-6.0.1.tar.gz
ssh端口转发分为:
1、本地端口转发 => 会在本地监听一个端口,把数据通过ssh传到目标服务器的指定端口
2、远程端口转发 => 会在远程服务器监听一个端口,数据从远程服务器反向传输到本地电脑(反向隧道内网穿透)