Units = cylinders of 16065 * 512 = 8225280 bytes
柱面扇区数 一个柱面大小
设备 启动分区 起始柱面 结束柱面 数据块 系统ID 系统类型名
Device Boot Start End Blocks Id System
/dev/sda1 * 1 13 104391 83 Linux --ext3 (W95 FA //fat32 Extend //扩展分区 Linux Swap //交换分区
/dev/sda2 14 2610 20860402+ 8e Linux LVM --逻辑卷管理
Command (m for help): m
Command action
a toggle a bootable flag
b edit bsd disklabel
c toggle the dos compatibility flag
d delete a partition
l list known partition types
m print this menu
n add a new partition
o create a new empty DOS partition table
p print the partition table
q quit without saving changes
s create a new empty Sun disklabel
t change a partition's system id
u change display/entry units
v verify the partition table
w write table to disk and exit
x extra functionality (experts only)
访问磁盘:
mount
1. 普通文件
mount -t ext3 /dev/sda7 /media/, umount /media 或 /dev/sda7 ,两个均可
可重复挂载同一目录,但是访问到的是最后一次挂载的资源
正在被访问的,不能被卸载,之前挂载几个,同样卸载几个,且只能按顺序卸载。交换分区,扩展分区不允许挂载
[root@localhost ~]# mount
设备名 挂载目录 文件类型(数据存储格式) 挂载的权限
/dev/mapper/VolGroup00-LogVol00 on / type ext3 (rw)
proc on /proc type proc (rw)
sysfs on /sys type sysfs (rw)
devpts on /dev/pts type devpts (rw,gid=5,mode=620)
/dev/sda1 on /boot type ext3 (rw)
tmpfs on /dev/shm type tmpfs (rw)
none on /proc/sys/fs/binfmt_misc type binfmt_misc (rw)
none on /proc/fs/vmblock/mountPoint type vmblock (rw)
sunrpc on /var/lib/nfs/rpc_pipefs type rpc_pipefs (rw)
proc及sysfs都是内存,ls /proc/可查看
devpts终端,用tty查看
2. 网络挂载:
showmount -e 2.2.2.192
mount -t nfs 2.2.2.192:/share2 /mnt --挂载为目录名mnt,t指定文件系统类型为nfs(网络文件系统),mount -t ext3/vfat/ext2/cifs/ntfs(系统默认不支持,需要装第三方软件ntfs-3g来实现),2.2.2.192:/share2为源设备,/mnt目标挂载路径
cd /mnt/ --进入mnt
ls
安装过程,根据上面的包类型操作后,
1. vim README, 按照里面的介绍安装
2. ./configure ,如果提示:configure:error:no acceptable C compiler found in $PATH,表示gcc没有安装,用yum install gcc安装
3. make:生成Makefile,make all或输make,自动查找all规则(先找小写的makefile再找大写),生成可执行文件
4. make install:自动将文件copy到指定目录