登陆时候选择其他用户为root则默认密码和系统默认用户一致
例如设置用户为centos1,密码为centos1,则root用户的密码同centos1
在终端中切换用户
[centos1@localhost ~]$ su root Password: [root@localhost centos1]#
eth0:NAT网卡;lo本机测试环回网卡
[root@localhost centos1]# ifconfig eth0 down [root@localhost centos1]# ifconfig
使用ifconfig查看网卡,只剩下lo网卡
[root@localhost centos1]# ifconfig eth0 up [root@localhost centos1]# ifconfig
这时候eth0没有网络地址
[root@localhost centos1]# dhclient eth0 //重复启用dhclient报错,直接kill -9 进程号(进程好在错误提示信息中) [root@localhost centos1]# ifconfig
可以从windows操作系统ping虚拟机linux系统。注意:虚拟操作系统安装完成后在网络适配器中会生成网卡,如果禁用则无法ping通。
默认IP自动获取,我们通过修改网卡配置让IP固定下来。
查看IP地址配置的另一条指令:
[root@localhost centos1]# ip a
把自动获取的IP地址拷贝出来:
inet 192.168.153.128/24 brd 192.168.153.255 scope global eth0
查看网关指令:
[root@localhost centos1]# netstat –rn
全球通用DNS:8.8.8.8
通过可视化修改后,需要重启网络服务,命令:
[root@localhost ~]# service network restart
修改主机名:
[root@localhost ~]# gedit /etc/hosts
查看主机名:
[root@localhost ~]# hostname localhost.localdomain
让主机配置文件生效:
[root@localhost ~]# reboot
虚拟机和windows7系统之间可以直接拷贝文件。
如果实在生产环境中,需要使用工具连接Linux系统。
常用:
工具和虚拟机中的Linux正常连接需要注意三个问题:
1、启用以下两个适配器
2、以下4个服务必须已启动状态
3、确保SSH服务开启(工具一般采用SSH连接服务器)
查看某个进程命令:
ps –ef|grep 查询条件
e:显示所有进程
f:全格式显示
grep:匹配正则搜索条件
例如:ps –ef|grep mysql
[root@node1 ~]# ps -ef|grep sshd
root 1850 1 0 05:04 ? 00:00:00 /usr/sbin/sshd
root 2574 2504 1 05:18 pts/0 00:00:00 grep sshd
SSH进程已启用。(杀死进程:kill -9 PID进程号,9表示杀死全部,外号“绝杀”)
杀死和启动线程:
[root@node1 ~]# kill -9 1850 [root@node1 ~]# service sshd start
另一种停止进程方式:
service 进程名 stoplinux常用命令,例如service sshd stop
上一个教程:Linux wc 命令用法详解
下一个教程:alex.shu