Linux
amadeus_liu2
这个作者很懒,什么都没留下…
展开
-
go:编译程序时换国内代理
【代码】go:编译程序时换国内代理。原创 2023-05-27 09:34:03 · 231 阅读 · 0 评论 -
linux: 磁盘使用情况查看
sudo du -s -h /* | sort -nr原创 2023-05-21 10:24:57 · 65 阅读 · 0 评论 -
Linux: 启动docker 报错applying cgroup configuration for process caused: mountpoint for devices not found
vi /etc/fstab,在最后加上tmpfs /sys/fs/cgroup cgroup defaults 0 0然后重启服务器 reboot原创 2022-01-14 10:18:13 · 2606 阅读 · 0 评论 -
Linux:命令
1.列出所有服务: systemctl list-units --type=service2.查看定时任务执行历史: cd /var/logtail -100 cron3.定时任务无法编辑chattr -ai /var/spool/cron4.删除用户失败chattr -ia /etc/passwdchattr -ia /etc/shadow原创 2021-12-28 20:56:18 · 469 阅读 · 0 评论 -
Linux: nginx:the HTTP rewrite module requires the PCRE library
yum -y install pcre-devel原创 2021-10-23 22:18:46 · 1161 阅读 · 0 评论 -
Linux:查看和删除路由
查看路由表: iptables -n -L --line-numbers2.删除chain DOCKER中的第一条路由iptables -D DOCKER 1原创 2021-10-06 19:03:40 · 871 阅读 · 0 评论 -
Linux: brctl: command not found
yum install bridge-utils原创 2021-09-26 08:57:32 · 4261 阅读 · 0 评论 -
Linux: root操作不了的文件
chattr -i /etc/xxx.xxx ,然后用root操作原创 2021-06-22 00:37:03 · 343 阅读 · 0 评论 -
Linux: csv文件设置带毫秒日期显示格式
yyyy-MM-dd HH:mm:ss.000原创 2021-05-06 14:39:51 · 1180 阅读 · 0 评论 -
Linux: shell style
if fi结束case esac结束倒序。。。。。。原创 2021-04-20 19:30:15 · 129 阅读 · 0 评论 -
Linux: 查看磁盘空间
du -sh *原创 2021-04-13 14:41:04 · 825 阅读 · 0 评论 -
Linux:压缩文件
tar -zcvf test.tar.gz 01.txt 02.txt原创 2021-04-13 11:36:24 · 101 阅读 · 0 评论 -
Linux: nginx启动报unknown log format “main“ in /
将nginx.conf里的log_format注释放开原创 2021-04-12 09:53:39 · 947 阅读 · 0 评论 -
Linux: 查看操作历史: history
1832 2021-03-26 16:05:19 touch Hello.java 1833 2021-03-26 16:05:24 vi Hello.java 1834 2021-03-26 16:05:53 java -d . Hello.java 1835 2021-03-26 16:06:11 javac -d . Hello.java 1836 2021-03-26 16:06:20 vi Hello.java 1837 2021-03-26 16:07:21 vi Hell原创 2021-03-26 17:01:42 · 121 阅读 · 0 评论 -
Linux: showmount -e 188.131.xx.xx 时clnt_create: RPC: Program not registered
在nfs服务端执行rpcbind和nfs重启,要按顺序[root@VM-0-7-centos nfstestdir]# systemctl stop rpcbindWarning: Stopping rpcbind.service, but it can still be activated by: rpcbind.socket[root@VM-0-7-centos nfstestdir]# systemctl stop nfs[root@VM-0-7-centos nfstestdir]#原创 2021-03-25 14:16:48 · 1020 阅读 · 0 评论 -
Linux: 防火墙
查看状态:systemctl status firewalld关闭systemctl stop firewalld原创 2021-02-13 11:31:02 · 125 阅读 · 0 评论 -
Linux: 命令
查找端口对应的pidnetstat -pan |grep 8080查找进程对应的文件的位置ll /proc/pid原创 2021-02-05 15:40:14 · 102 阅读 · 0 评论 -
Linux: 查看占用端口的进程号
netstat -pan | grep 8080原创 2021-01-29 18:28:12 · 129 阅读 · 0 评论 -
Linux: Centos7安装jdk8 ld-linux.so.2
yum install glibc.i686原创 2020-12-21 19:21:16 · 499 阅读 · 0 评论 -
Linux: 关闭centos 防火墙
systemctl stop firewalld.servicesystemctl disable firewalld.service原创 2020-12-21 11:08:10 · 96 阅读 · 0 评论 -
Linux: getconf LONG_BIT
bit原创 2020-03-05 17:45:46 · 407 阅读 · 0 评论