Linux常用命令

2021-10-07 03:14:14 字數 1887 閱讀 6106

linux 檔案現行,一切皆檔案

mysql 日誌先行 一切皆日誌

這裡以ubuntu18為例

安裝完成之後

#這個命令,會訪問源列表裡的每個**,並讀取軟體列表,然後儲存在本地電腦。我們在新立得軟體包管理器裡看到的軟體列表,都是通過update命令更新的

sudo apt-get update

1公升級了 0 個軟體包,新安裝了 0 個軟體包,要解除安裝 0 個軟體包,有 0 個軟體包未被公升級。

update是更新軟體列表,upgrade是更新軟體。

sudo apt-get upgrade

#建立乙個shell資料夾

ubuntu@vm-0-11-ubuntu:~$ mkdir shell

#檢視是否建立成功

ubuntu@vm-0-11-ubuntu:~$ ls

dicom djangoweb nginx shell wechat

#切換到shell資料夾下面

ubuntu@vm-0-11-ubuntu:~$ cd shell/

#檢視資料夾內容

ubuntu@vm-0-11-ubuntu:~/shell$ ls

#檢視資料夾前面 . 的檔案

ubuntu@vm-0-11-ubuntu:~/shell$ ll

#沒有檔案

ll: command not found

#建立乙個檔案

ubuntu@vm-0-11-ubuntu:~/shell$ touch dup.py

#檢視是否建立成功

ubuntu@vm-0-11-ubuntu:~/shell$ ls

#顯示檔案 建立成功

dup.py

#刪除檔案

ubuntu@vm-0-11-ubuntu:~/shell$ rm dup.py

#檢視是否刪除成功

ubuntu@vm-0-11-ubuntu:~/shell$ ls

#使用vim工具編輯檔案

ubuntu@vm-0-11-ubuntu:~/shell$ vim cpu.py

#!/usr/bin/env python

from __future__import print__function

from collections import ordereddict

import pprint

def cupinfo():

cpuinfo = ordereadict()

procinfo=ordereddict()

nprocs = 0

with open('/proc/cpuinfo') as f:

for line in f:

if not line.strip():

cpuinfo['proc%s' % nprocs] = procinfo

nprocs = nprocs+1

procinfo = ordereadict()

else:

if len(line.split(':')) == 2:

procinfo[line.split(':')[0].strip()] = liine.split(':')[1].strip()

else:

procinfo[line.split(':')[0].strip()] = ''

return cuoinfo

if __name__=='__main__'

cpuinfo = cupinfo()

for processor in cpuinfo.keys():

print(cupinfo[processor]['model name'])

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...