1.解壓
tar -zxvf /home/images.tar.gz -c /specific dir //解壓到指定目錄
tar –xvf file.tar //解壓 tar包
tar -xjvf file.tar.bz2 //解壓 tar.bz2
tar –xzvf file.tar.z //解壓tar.z
2.yum安裝
安裝lrzsz
yum -y install lrzsz
3.遠端拷貝
scp [引數] [原路徑] [目標路徑]
scp local_file remote_username@remote_ip:remote_file
4.安裝 example.rpm 包並在安裝過程中顯示正在安裝的檔案資訊及安裝進度
rpm -ivh example.rpm
5.需要解除安裝的安裝包
rpm -e
6.rpm 查詢操作
rpm -q
附加查詢命令:
a 查詢所有已經安裝的包以下兩個附加命令用於查詢安裝包的資訊;
eg: rpm -qa | grep tomcat8 檢視tomcat8是否被安裝;
mysql相關
1.登入
mysql -u root -p
2.遠端授權登入
給特定ip授權
grant all privileges on *.* to 'root'@'192.168.1.100' identified by 'yourpassword' with grant option;
給任意ip授權
grant all privileges on *.* to 'root'@'%' identified by 'yourpassword' with grant option;
3.顯示編碼
show variables like '%character%';
4.修改字符集為utf8(修改/etc/my.cnf)
[mysqld]
character_set_server=utf8
init_connect='set names utf8'
5.重啟mysql服務
systemctl restart mysqld
6.修改密碼
alter user 'root'@'localhost' identified by 'yourpassword';
或 set password for 'root'@'localhost'=password('yourpassword');
防火牆相關(centos7)
1.啟動
systemctl start firewalld
2.停止
systemctl stop firewalld
3.禁用
systemctl disable firewalld
4.開啟埠
開啟3306埠
firewall-cmd --add-port=3306/tcp --permanent
5.顯示狀態
firewall-cmd --state
6.更新防火牆規則
firewall-cmd --reload
或者firewall-cmd --complete-reload
docker相關
1.建立網路
建立網路docker_gwbridge
docker network create --subnet 172.21.0.0/16 \
--gateway 172.21.0.1 \
--opt com.docker.network.bridge.name=docker_gwbridge \
--opt com.docker.network.bridge.enable_icc=false \
docker_gwbridge
或建立網路 yournetname
docker network create yournetname --subnet 172.21.0.0/16 \
--gateway 172.21.0.1
2.重啟docker
systemctl daemon-reload
systemctl restart docker.service
Linux常用命令之Linux常用命令實戰知識點
在在複習linux,這是以前做的筆記,分享一下。linux系統 一切皆檔案 操作檔案就是操作linux系統 一 linux版本 1 redhat 企業版 收費 2 centos redhat的社群版 免費 3 ubuntu 4 紅旗 二 linux的特點 1 多使用者 多工 2 豐富的網路功能 3 ...
LINUX常用命令
一 目錄結構 目錄名稱 意 義 vmlinuz 該目錄中存放的是系統核心 bin 該目錄中存放linux的常用命令,在有的版本中是一些和根目錄下相同的目錄。boot 該目錄下存放的都是系統啟動時要用到的程式,當用lilo引導linux時,會用到這裡的一些資訊 dev 該目錄包含了linux系統中使用...
linux 常用命令
ssh 連線 eg.ssh l mike www.mydomain.com or 192.168.0.1 scp 複製 本地 遠端 scp localfile username tohost newfile 遠端 本地 scp username tohost remotefile local 把tx...