生活在宁静的角落 Linux
Centos怎样查看已经安装的软件
centos查看已经安装的软件
命令如下:
rpm -qa |grep name_of_software
例如:
[root@vBlog ~]# rpm -qa|grep vsftpd vsftpd-2.2.2-11.el6_4.1.x86_64 [root@vBlog ~]#
wordpress安装百度分享按钮
Linux 查看文件系统、磁盘
[root@vCentos ~]# fdisk -l Disk /dev/xvda: 21.5 GB, 21474836480 bytes 255 heads, 63 sectors/track, 2610 cylinders Units = cylinders of 16065 * 512 = 8225280 bytes Sector size (logical/physical): 512 bytes / 512 bytes I/O size (minimum/optimal): 512 bytes …点击查看更多…
Centos 双网卡绑定
[root@Study ~]# cat /etc/sysconfig/network-scripts/ifcfg-eth0
DEVICE=eth0
ONBOOT=yes
BOOTPROTO=none
USERCTL=no
MASTER=bond0
SLAVE=yes
[root@Study ~]# cat /etc/sysconfig/network-scripts/ifcfg-eth1
DEVICE=eth1
ONBOOT=yes
BOOTPROTO=none
USERCTL=no
MASTER=bond0
SLAVE=yes
[root@Study ~]#
linux常用命令
1.losf
lsof(list open files)是一个列出当前系统打开文件的工具。在linux环境下,任何事物都以文件的形式存在,通过文件不仅仅可以访问常规 …