登陸時候選擇其他用戶為root則默認密碼和系統(tǒng)默認用戶一致
例如設(shè)置用戶為centos1,密碼為centos1,則root用戶的密碼同centos1
在終端中切換用戶
[centos1@localhost ~]$ su root Password: [root@localhost centos1]#
eth0:NAT網(wǎng)卡;lo本機測試環(huán)回網(wǎng)卡
[root@localhost centos1]# ifconfig eth0 down [root@localhost centos1]# ifconfig
使用ifconfig查看網(wǎng)卡,只剩下lo網(wǎng)卡
[root@localhost centos1]# ifconfig eth0 up [root@localhost centos1]# ifconfig
這時候eth0沒有網(wǎng)絡(luò)地址
[root@localhost centos1]# dhclient eth0 //重復(fù)啟用dhclient報錯,直接kill -9 進程號(進程好在錯誤提示信息中) [root@localhost centos1]# ifconfig
可以從windows操作系統(tǒng)ping虛擬機linux系統(tǒng)。注意:虛擬操作系統(tǒng)安裝完成后在網(wǎng)絡(luò)適配器中會生成網(wǎng)卡,如果禁用則無法ping通。
默認IP自動獲取,我們通過修改網(wǎng)卡配置讓IP固定下來。
查看IP地址配置的另一條指令:
[root@localhost centos1]# ip a
把自動獲取的IP地址拷貝出來:
inet 192.168.153.128/24 brd 192.168.153.255 scope global eth0
查看網(wǎng)關(guān)指令:
[root@localhost centos1]# netstat –rn
全球通用DNS:8.8.8.8
通過可視化修改后,需要重啟網(wǎng)絡(luò)服務(wù),命令:
[root@localhost ~]# service network restart
修改主機名:
[root@localhost ~]# gedit /etc/hosts
查看主機名:
[root@localhost ~]# hostname localhost.localdomain
讓主機配置文件生效:
[root@localhost ~]# reboot
虛擬機和windows7系統(tǒng)之間可以直接拷貝文件。
如果實在生產(chǎn)環(huán)境中,需要使用工具連接Linux系統(tǒng)。
常用:
工具和虛擬機中的Linux正常連接需要注意三個問題:
1、啟用以下兩個適配器
2、以下4個服務(wù)必須已啟動狀態(tài)
3、確保SSH服務(wù)開啟(工具一般采用SSH連接服務(wù)器)
查看某個進程命令:
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