- 浏览: 6715 次
- 性别:
- 来自: 北京
最新评论
文章列表
简介
finger命令用于查找并显示用户信息。包括本地与远端主机的用户皆可,帐号名称没有大小写的差别。单独执行finger指令,它会显示本地主机现在所有的用户的登陆信息,包括帐号名称,真实姓名,登入终端机,闲置时间,登入时间以及地址。
A、install software
[root@localhost ~]# yum info finger
Loaded plugins: fastestmirror, priorities, security
Loading mirror speeds from cached hostfile
* webtatic: us-east.repo.webtat ...
A、nethogs
有时候我会发现服务器网络慢,进一步发现大量带宽被占用,在linux下有很多监控流量的工具【iftop iptraf ifstat darkstat bwm-ng vnstat】等大都是统计和监控网卡流量的,现在介绍一款可以监控每个进程的网络带宽占用情况的工具nethogs
[root@walle ~]# yum -y install nethogs
[root@walle ~]# nethogs
Waiting for first packet to arrive (see sourceforge.net bug 1019381)
NetHogs version 0.8. ...
简介
Mtr是 Linux系统中一个非常棒的网络连通性判断工具,它结合了ping, traceroute,nslookup 的相关特性。
A、install software
[root@localhost ~]# yum -y install mtr
[root@localhost ~]# yum info mtr
Loaded plugins: fastestmirror, priorities, security
Loading mirror speeds from cached hostfile
* webtatic: sp.repo.webtatic.com
Installed Pa ...
cat createuser.sh
#!/bin/bash
useradd username
cd /home/username
mkdir .ssh
chown username:username .ssh
chmod 700 .ssh
cd .ssh
echo "user-key-公钥" >> authorized_keys
chown username:username authorized_keys
chmod 600 authorized_keys
echo "username ALL=(ALL) NOPASSWD: AL ...