?一、Openjdk
1.安裝命令:
yum search java | grep -i --color JDK
yum install -y java-1.8.0-openjdk-devel.x86_64
2.切換jdk版本:
sudo update-alternatives --config java
sudo update-alternatives --config javac
3.查看jdk安裝路徑:
java -verbose
二雪猪、Linux防火墻相關(guān)
1.redhat關(guān)閉防火墻:
1)立即關(guān)閉,并非永久關(guān)閉
service iptables stop
2)永久關(guān)閉
iptables -F? 關(guān)閉防火墻功能
chkconfig iptables off? ? 禁止防火墻啟動
2.centos7防火墻:
啟動一個服務(wù):systemctl start firewalld.service
關(guān)閉一個服務(wù):systemctl stop firewalld.service
重啟一個服務(wù):systemctl restart firewalld.service
顯示一個服務(wù)的狀態(tài):systemctl status firewalld.service
在開機時啟用一個服務(wù):systemctl enable firewalld.service
在開機時禁用一個服務(wù):systemctl disable firewalld.service
查看服務(wù)是否開機啟動:systemctl is-enabled firewalld.service;echo $?
查看已啟動的服務(wù)列表:systemctl list-unit-files|grep enabled
三只恨、Linux查看進程
ps -ef|grep {程序名稱}? 查詢出進程編號
ps -aux|grep {程序名稱} 查詢出進程編號
kill -9 {進程編號}? ? ? 殺死進程
四、給vim編輯的文件添加行號
:set nu
五官觅、編輯如下文件允許root用戶遠(yuǎn)程登錄
vim /etc/ssh/sshd_config
更改 PasswordAuthentication 后的 no 為 yes
再執(zhí)行 service sshd restart 重啟ssh服務(wù)
六、查找某個文件
find {全路徑} -name *{需模糊查詢的文件名}*
七缰猴、管理磁盤
通過此命令定位文件在哪個目錄
du -shx *
![歡迎掃碼關(guān)注公眾號,不定期更新一些干貨](https://upload-images.jianshu.io/upload_images/9270069-356fd0eb4b55f1c7?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)