第一單元:
####1,命令列提示符####
root##開啟shell的使用者
@##分隔符
localhost##主機名稱
~##工作目錄名稱
###身份提示符,#表示超級使用者,$表示普通使用者
注意:命令要在行提示符之後輸入才能執行
####2,切換使用者####
注意:高階使用者切換到低階使用者不需要密碼,低階使用者切換到高階或者平級使用者的切換需要密碼
red hat enterprise linux server 7.0 (maipo) ##系統版本
kernel 3.10.0-123.el7.x86_64 on an x86_64##核心版本,系統位數
desktop0 login:root##登陸使用者名稱輸入
password:##密碼輸入無回顯
####4,命令的執行####
1.命令必須在行提示符之後輸入
2.命令格式
命令 引數 目標
3.ctrl +c##撤銷命名的執行
4.命令引數
-引數##單詞縮寫
--引數##單詞的全拼
####5,命令的幫助####
5.1 whatis 命令##檢視命令的功能
5.2 命令 --help ##檢視命令的幫助
--help之後需要注意:
##選擇加入的內容,可加可不加
...##加入的內容個數任意
<>##內容在命令執行過程當中必須要加
####6,系統的使用基礎方法####
6.1 系統登陸
圖形登陸方式
文字登陸方式
gnome-session-quit --force###登出使用者 --force強制登出,不詢問
6.4 退出:exit | ctrl+d
6.5 系統關機,重啟
重啟:reboot | init 6 |shutdown -r now
關機:poweroff | init 0 | shutdown -h now
6.6 鎖屏
ctrl + alt +l##在rhel7.0
win鍵 + l##在rhel7.2
####7,簡單的系統命令####
7.1 date命令:檢視日期
watch -n 1 date ###讓date命令每秒執行一次,ctrl +c 推出監控模式
date 11181115###把系統時間設定為11月18日11:15 格式:月月天天小時分鐘
date 111811152016.55##2016表示年(可以不加).55 表示秒(可以不加)
-d +xday -xday##檢視x天前或者後的時間
+%....##設定date的輸出格式
7.2 passwd命令:修改使用者密碼
changing password for user root.##改變超級使用者密碼
new password: ##輸入密碼
bad password: the password is shorter than 8 characters
retype new password: ##確認密碼
passwd: all authentication tokens updated successfully.
[kiosk@localhost desktop]$ passwd
changing password for user kiosk.##改變普通使用者密碼
changing password for kiosk.
(current) unix password: ##輸入當前密碼
new password:
bad password: the password is the same as the old one##和原始密碼不能相似
new password:
bad password: the password fails the dictionary check - it is too simplistic/systematic ##密碼必須是無序數字+字母
new password:
bad password: the password is shorter than 8 characters##密碼必須》8位
passwd引數 使用者名稱
-sstudent##使用者密碼資訊
--status student。。。。。。
-lstudent##鎖定帳號
-ustudent##解鎖
-n 1student##設定密碼最短有效期
-x 30student##設定密碼最長有效期
-w 3student##警告期
-i 2student##設定使用者非活躍天數
-dstudent##清除使用者密碼
7.3 file命令:檢視檔案
file filename##檢視檔案型別
其他檔案的檢視命令
catfilename ##顯示檔案的全部內容
lessfile ##分頁瀏覽,按「q」退出
headfilename ##顯示乙個檔案的前幾行
head -n 5filename##前五行
tailfilename ##顯示檔案後幾行
tail -n 5 filename##顯示乙個檔案的後5行
7.4 wc命令:統計檔案容量資訊
wc-l行數
-w字數
-c位元組數
-m字元數
####8,tab鍵####
在系統中table鍵可以自動補齊存在的命令,檔名稱和某些命令的引數
比如:a+tab x2 顯示系統中所有a開有的命令
####9,history歷史呼叫####
history##顯示歷史
hostory -c##清除當前環境當中的歷史命令
!數字##執行第多少行命令
!字母##執行最近一條以這個字母開頭的命令
ctrl +r +關鍵字##執行最近一條含有這個關鍵字的命令
上下鍵##逐行呼叫命令
linux基礎unit12練習題
1.在server主機中把 etc目錄打包壓縮到 mnt中,名字為etc.tar.gz root localhost desktop tar zcf etc.tar.gz etc root localhost desktop mv etc.tar.gz mnt 2.複製server主機中的etc.t...
python基礎練習1
這次又是一次學習打卡,之前一直想做一下關於python的內容,後續會想辦法玩點新花樣,希望有所收穫 注釋 print helloworld 這是列印函式 這是多 行注釋 運算子 print 12 7 19 print 12 7 5 print 12 7 1.7142857142857142 prin...
Linux基礎命令練習1
1.將之前所建立的目錄和檔案全部清理掉 2.在家目錄下建立 workspace cmd目錄以及 workspace tmp test目錄 什麼是家目錄?家目錄即使用者目錄,用於存放個人資料,除了root使用者其他使用者的設定檔案,桌面檔案以及個人資料都是放在各自的使用者目錄下面。如otomia使用者...