08 2019 档案

ETCD的使用
摘要:使用ETCD的目的是想用它来监控服务进程的状态。 显示服务列表: etcdctl --write-out=table --endpoints=localhost:2379 member list 写入一个键值对: etcdctl put ${key} ${value} 根据键获取值: etcdctl 阅读全文

posted @ 2019-08-14 16:25 lialin 阅读(1089) 评论(0) 推荐(0) 编辑

Linux查看CPU核数量
摘要:查看逻辑核数: cat /proc/cpuinfo| grep "processor"| wc -l 阅读全文

posted @ 2019-08-09 09:46 lialin 阅读(15970) 评论(0) 推荐(3) 编辑

Linux系统启动自动运行命令的方法
摘要:Put a script containing the command in your /etc directory. Create a script such as "startup.sh" using your favorite text editor. Save the file in you 阅读全文

posted @ 2019-08-08 11:19 lialin 阅读(1061) 评论(0) 推荐(0) 编辑

新建的账户在bash窗口中没有账户名和主机名的解决办法
摘要:这是因为在创建账户前已经建立了该用户的文件夹,导致useradd的时候有些初始化没有完成。 解决办法: useradd testuser cp /home/testuser/.bash* ./home/targetuser/ -rf userdel testuser 阅读全文

posted @ 2019-08-02 11:24 lialin 阅读(289) 评论(0) 推荐(0) 编辑

导航