Linux與Windows命令的比較

2021-10-07 14:01:43 字數 4181 閱讀 1214

linux下開放埠

windows不區分大小寫,linux區分大小寫

command

linux

windows

批處理.sh

.bat

幫助cmd –help /

-h列出目錄檔案

ls/ ls -l

dir改變當前目錄

cdcd

進父目錄

cd …兩個點

cd …兩個點

進home目錄

cd ~

複製cp

copy

刪除rm file_name

del file_name

建目錄mkdir foldername

md foldername

建檔案touch filename

touch filename

刪目錄rmdir foldername

rmdir foldername

設定目錄檔案許可權

chmod u+rwx file

設定目錄檔案所有者

chown user.group file

command

linux

windows

顯示檔案內容

cattype

more,less

more

head、tail

統計行數

wc顯示檔案資訊

file

查詢檔案

find /bin -name ls

定位可執行檔案位置

which

在文字檔案內查詢

grep str1 1.txt

find

啟動執行程式

gnome-open/open

start

command

linux

windows

顯示核心版本

uname -a

顯示發布版本

lsb_release -a

cat /etc/issue

顯示id資訊

id/whoami

顯示當前登陸使用者

who顯示當前環境資訊

env顯示啟動中檢測到的硬體資訊

dmesg

顯示系統的pci裝置

lspci

顯示系統的usb

lsusb

顯示cpu資訊

less /proc/cpuinfo

顯示記憶體

less /proc/menminfo

顯示硬碟儲存資訊

df -h

command

linux

windows

顯示程序資訊

ps -auxf

殺死程序

kill proc_id

殺死所有

killall postgresql

暫停中斷當前前台任務

ctrl - z

恢復任務到後台

bg恢復任務到前台

fgcommand

linux

windows

顯示啟動的網路服務

netstat -anli less

netstat

顯示路由表資訊

netstat -r

netstat -r

顯示ip

ip a/ifconfig

ipconfig

顯示防火牆資訊

iptables -list

遠端登陸

ssh user@host

傳送ping資訊

ping ip

ping ip

wget url/curl -o url

command

linux

windows

修改命令

passwd

建立使用者

useradd

刪除使用者

userdel

修改使用者

usermod

退出exit / ctrl + d

切換使用者至(預設root)

su [-]user

以su後的許可權執行

sudo -u user cmd

檢視防火牆是否關閉

firewall-cmd –state

啟動服務

systemctl start firewalld.service

關閉服務

systemctl stop firewalld.service

重啟服務

systemctl restart firewalld.service

顯示服務的狀態

systemctl status firewalld.service

在開機時啟用服務

systemctl enable firewalld.service

在開機時禁用服務

systemctl disable firewalld.service

檢視服務是否開機啟動

systemctl is-enabled firewalld.service;echo $?

檢視已啟動的服務列表

systemctl list-unit-files

新增開發埠

firewall-cmd –zone=public –add-port=5432/tcp –permanent

firewall-cmd –reload

fdisk -l

mkfs -t ext4 /dev/sdb

mkdir /mnt/sdb

mount /dev/sdb /mnt/sdb

df -h

firewall-cmd --zone=public --add-port=5432/tcp --permanent

firewall-cmd --zone=public --query-port=5432/tcp

firewall-cmd --zone=public --remove-port=5432/tcp --permanent

command

linux

windows

顯示日期時間

date

date

日曆cal2014

清除螢幕

clear

cls搜尋軟體包

yum search tree

刪除軟體包

yum remove pkg_name

安裝軟體包

yum install pkg_name

重啟系統

reboot

關閉系統

halt -p

設定環境變數

export path=spath:~/bin

set顯示資訊/環境變數

echo $home

echo

在linux下開啟vim的命令:vi或者vim

vi的三種模式:

esc:命令列

i 編輯模式

i: 行首插入

a: 追加

a: 行尾插入

r: 替換文字

v: 選擇

ctrl-v: 選擇舉行區域

x: 刪除

dd: 剪下/刪除行

dw: 剪下/刪除字

yy: 拷貝行

p: 游標之後貼上

p: 游標之前貼上

r: 替換單個字元

j: 連線兩行

/: 搜尋

:s///: substitute

cw: 修改詞語

.: 重複最後乙個命令

u: 撤銷

ctr-r: 重做

:w:儲存

:q:關閉

find命令 linux與windows檔案互傳

whereis locate 查詢命令 yum install y mlocate 安裝locate命令 updatedb 常用快捷鍵 ctrl d 退出 ctrl c 取消執行命令 ctrl u 往前全部刪除 ctrl a 跳到最前面 ctrl e 跳到最後面 find 命令 ctime chan...

Linux與Windows檔案共享命令 rz,sz

與ssh有關的兩個命令可以提供很方便的操作 sz 將選定的檔案傳送 send 到本地機器 rz 執行該命令會彈出乙個檔案選擇視窗,從本地選擇檔案上傳到伺服器 receive 當然,還可以設定一下目錄了 剩下的你只要在用securecrt登陸linux終端的時候 傳送檔案到客戶端 sz filenam...

Windows與Linux的命令列命令對比

windows與linux的命令列命令對比 windows不區分大小寫,linux區分大小寫的。sndos command unix equivalent effect影響1 assign lnlink file or directory 鏈結檔案或目錄 2attrib chmod change f...