當前位置:首頁 » 操作系統 » linuxm4

linuxm4

發布時間: 2024-11-27 15:15:12

❶ 手動分區怎麼在ibm 3650m4上安裝redhat linux 6.5 64位系統

fdisk命令用於管理磁碟分區,格式為:「fdisk [磁碟名稱]」。
管理某硬碟的分區:「fdisk /dev/sda」
編輯
參數 作用
m 查看全部可用的參數
n 添加新的分區
d 刪除某個分區信息
l 列出所有可用的分區類型
t 改變某個分區的類型
p 查看分區表信息
w 保存並退出
q 不保存直接退出
使用fdisk命令對sdb硬碟進行分區:
[root@linuxprobe ~]# fdisk /dev/sdb
Welcome to fdisk (util-linux 2.23.2).
Changes will remain in memory only, until you decide to write them.
Be careful before using the write command.
Device does not contain a recognized partition table
Building a new DOS disklabel with disk identifier 0x47d24a34.

敲擊字元p查看分區表信息(當前為空):
Command (m for help): p
Disk /dev/sdb: 21.5 GB, 21474836480 bytes, 41943040 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk label type: dos
Disk identifier: 0x47d24a34
Device Boot Start End Blocks Id System

敲擊字元n創建新的分區信息:
Command (m for help): n

敲擊字元p,這個p代表是主分區,e為擴展分區:
Partition type:
p primary (0 primary, 0 extended, 4 free)
e extended
Select (default p): p

敲擊數字1代表分區編號為1:
Partition number (1-4, default 1): 1

磁碟的起始扇區,直接回車即可:
First sector (2048-41943039, default 2048):

鍵入+2G,代表該分區的大小為2G:
Using default value 2048
Last sector, +sectors or +size{K,M,G} (2048-41943039, default 41943039): +2G
Partition 1 of type Linux and of size 2 GiB is set

再看下分區表信息(增加了sdb1分區信息):
Command (m for help): p
Disk /dev/sdb: 21.5 GB, 21474836480 bytes, 41943040 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk label type: dos
Disk identifier: 0x47d24a34
Device Boot Start End Blocks Id System
/dev/sdb1 2048 4196351 2097152 83 Linux

敲擊字元w,將上述分區信息保存:
Command (m for help): w
The partition table has been altered!
Calling ioctl() to re-read partition table.
Syncing disks.

讓內核同步分區信息(此步驟僅在沒有找到分區設備的情況下才需要執行,非必要動作。):
[root@linuxprobe ~]# partprobe

第3步:格式化為xfs文件系統。
在Linux系統中用於格式化的命令是mkfs,它支持的文件類型有:
cramfs,ext2,ext3,ext4,fat,msdos,xfs,btrfs,minix,vfat
使用方法非常的簡單:"mkfs.文件類型名稱",例如要格式分區為ext4,則命令為"mkfs.ext4 硬碟分區名稱"。
使用mkfs.xfs來對/dev/sdb1進行格式化:
[root@linuxprobe ~]# mkfs.xfs /dev/sdb1
meta-data=/dev/sdb1 isize=256 agcount=4, agsize=131072 blks
= sectsz=512 attr=2, projid32bit=1
= crc=0
data = bsize=4096 blocks=524288, imaxpct=25
= sunit=0 swidth=0 blks
naming =version 2 bsize=4096 ascii-ci=0 ftype=0
log =internal log bsize=4096 blocks=2560, version=2
= sectsz=512 sunit=0 blks, lazy-count=1
realtime =none extsz=4096 blocks=0, rtextents=0

第4步:將硬碟設備掛載到/newFS目錄。
[root@linuxprobe ~]# mkdir /newFS
[root@linuxprobe ~]# mount /dev/sdb1 /newFS/
第5步:設置系統啟動後自動掛載該硬碟設備。
[root@linuxprobe ~]# vim /etc/fstab
/dev/sdb1 /newFS xfs defaults 0 0
第6步: 查看文件系統的使用情況。
好棒!我們現在就可以通過訪問/newFS目錄來使用硬碟資源啦!另外多教給您幾條用於日常了解硬碟使用情況的命令:
df命令用於查看掛載點信息與磁碟使用量,格式為:「df [選項] [文件]」。
查看掛載信息與硬碟使用量:「df -h」
編輯
參數 作用
-a 顯示出所有的文件系統(包括虛擬的)
--total 展出出總體使用量
-h 更易讀的容量格式如1K,234M,2G…
-i 展示出Inode的信息(默認是磁碟使用信息)
-T 顯示出文件系統的類型
查看到所有已掛載的掛載信息與硬碟使用情況:
[root@linuxprobe ~]# df -h
Filesystem Size Used Avail Use% Mounted on
/dev/mapper/rhel-root 18G 3.5G 15G 20% /
devtmpfs 905M 0 905M 0% /dev
tmpfs 914M 140K 914M 1% /dev/shm
tmpfs 914M 8.8M 905M 1% /run
tmpfs 914M 0 914M 0% /sys/fs/cgroup
/dev/sr0 3.5G 3.5G 0 100% /media/cdrom
/dev/sda1 497M 119M 379M 24% /boot
/dev/sdb1 2.0G 33M 2.0G 2% /newFS

搜索Linux就該這么學,第6章 存儲結構與磁碟劃分,裡面有詳細的圖文教程。

❷ Linux中安裝m4出錯,該如何配置

/usr/bin/install: cannot create regular file '/usr/bin/m4': Permission denied,得用root用戶安裝

❸ linux中的m4是一個什麼命令

M4 是一個宏處理器.將輸入拷貝到輸出,同時將宏展開. 宏可以是內嵌的也可以是用戶定義的. 除了可以展開宏,m4還有一些內建的函數,用來引用文件,執行Unix

熱點內容
xshell解壓 發布:2024-11-27 17:35:14 瀏覽:358
ftp伺服器管理方法 發布:2024-11-27 17:24:48 瀏覽:974
微信視頻為什麼要緩存 發布:2024-11-27 17:18:18 瀏覽:249
招生宣傳片腳本 發布:2024-11-27 17:18:07 瀏覽:301
騰訊視頻上傳官網 發布:2024-11-27 17:06:53 瀏覽:389
python假死 發布:2024-11-27 17:06:07 瀏覽:941
c語言plc 發布:2024-11-27 17:00:11 瀏覽:678
遠程拒絕訪問 發布:2024-11-27 16:57:57 瀏覽:413
大人玩吃雞要買哪些配置 發布:2024-11-27 16:51:10 瀏覽:189
超級訪問保劍鋒 發布:2024-11-27 16:51:06 瀏覽:445