linux下如何優雅的掛載乙個外界裝置(比如優盤)

2022-03-13 13:23:46 字數 2620 閱讀 4923

最近從事linux,實驗室乙個破伺服器,能連上網,但是輸入這樣的命令:        yum -y install gcc

yum -y install gcc-c++ ,居然說是沒有這樣的映象,也罷,就用u盤搞了乙個linux gcc,gcc-c++,然後問題來了?

外掛程式哪家強?   完全找不到移動裝置有木有。  嗷嗷的哭呀!

果斷的敲入:   fdisk -l    -->檢視分割槽的狀態

disk /dev/sdb: 4051 mb, 4051697664 bytes

151 heads, 42 sectors/track, 1247 cylinders

units = cylinders of 6342 * 512 = 3247104 bytes

sector size (logical/physical): 512 bytes / 512 bytes

i/o size (minimum/optimal): 512 bytes / 512 bytes

disk identifier: 0xc3072e18

device boot start end blocks id system

/dev/sdb1 1 1248 3956708 c w95 fat32 (lba)

找到了,u盤的位置,但是就是進不去呀!

於是先建立乙個路徑: mkdir  mnt/usb   

有木有,果然的去問了迅雷工作的學長韋回超學長,說是我mount命令用錯了!!

我看了,我的命令一下:mount /dev/gdb1/mnt/usb  

並mount -help了一下!

恩! 是的! 用錯了! 少了乙個空格!!   mount  file1  file2  

mount /dev/gdb1   /mnt/usb

這樣就掛載好了!

總結一下步驟吧!:

第一步: fdisk -l    -->檢視外界裝置的位置   比如這個優盤  /dev/sdb1

[root@tomato2 ~]# fdisk -l

disk /dev/sda: 500.1 gb, 500107862016 bytes

255 heads, 63 sectors/track, 60801 cylinders

units = cylinders of 16065 * 512 = 8225280 bytes

sector size (logical/physical): 512 bytes / 4096 bytes

i/o size (minimum/optimal): 4096 bytes / 4096 bytes

disk identifier: 0x141cccb4

device boot start end blocks id system

/dev/sda1 * 1 64 512000 83 linux

partition 1 does not end on cylinder boundary.

/dev/sda2 64 60802 487873536 8e linux lvm

disk /dev/sdb: 4051 mb, 4051697664 bytes

151 heads, 42 sectors/track, 1247 cylinders

units = cylinders of 6342 * 512 = 3247104 bytes

sector size (logical/physical): 512 bytes / 512 bytes

i/o size (minimum/optimal): 512 bytes / 512 bytes

disk identifier: 0xc3072e18

device boot start end blocks id system

/dev/sdb1 1 1248 3956708 c w95 fat32 (lba)

第二步: 設定乙個路徑    mkdir   mnt/usb       -->這個usb什麼的就隨便的起名字了!

[root@tomato2 ~]# mkdir /mnt/usb

第三步: 將u盤掛載到這個路徑中來!    mount  /dev/gdb1   /mnt/usb

這樣就ok 了!   但是最後還是有乙個結尾就是解除安裝這個掛載點  unmount /mnt/usb

[root@tomato2 ~]# umount /mnt/usb

然後刪除路徑:  rmkdir  mnt/usb

[root@tomato2 ~]# rmdir /mnt/usb

然後就可以去優雅的去使用u盤裡的東西啦!!!!

linux下如何優雅的掛載乙個外界裝置(比如優盤)

最近從事linux,實驗室乙個破伺服器,能連上網,但是輸入這樣的命令 yum y install gcc yum y install gcc c 居然說是沒有這樣的映象,也罷,就用u盤搞了乙個linux gcc,gcc c 然後問題來了?外掛程式哪家強?完全找不到移動裝置有木有。嗷嗷的哭呀!果斷的敲...

如何優雅關閉乙個執行緒

當我們去thread類裡面找相關的介面時,發現有 個stop方法,看上去非常適合用來終止乙個執行緒,但是這個方法上面標了個 deprecated註解,非常明顯,這是乙個廢棄方法,不建議使用它。主要有兩個方面的原因 因為這個方法會將執行緒直接殺掉,沒有任何喘息機會,一旦執行緒被殺死,後面的 邏輯就再也...

如何優雅的生成乙個 diff patch

某天如果你要把一條 git 或 svn 記錄的修改傳送給其他人時我們要怎麼做呢?在 git 下你可以這麼做 git format patch commit sha1 id 1這樣會生成單條記錄的 patch 檔案,當然也可以生成多條或者兩條 commit 記錄之間的修改。例如我們在開源專案 nukl...