cp 拷贝 把一个文件或者目录拷贝到另一个地方
1、拷贝文件
[root@wy ~]# cp anaconda-ks.cfg 123.txt
[root@wy ~]# ls
123.txt anaconda-ks.cfg install.log install.log.syslog
2、拷贝目录(需要加-r)
[root@wy ~]# mkdir 111
[root@wy ~]# cp 111 222
cp: 略过目录"111"
[root@wy ~]# cp -r 111 222
[root@wy ~]# ls
111 123.txt 222 anaconda-ks.cfg install.log install.log.syslog
3、查看当前系统分区情况与使用大小(后续会详细讲解)
[root@wy ~]# df -h
Filesystem Size Used Avail Use% Mounted on
/dev/mapper/vg_wy-lv_root 18G 2.3G 15G 14% /
tmpfs 495M 0 495M 0% /dev/shm
/dev/sda1 485M 34M 426M 8% /boot
4、跨分区拷贝
[root@wy ~]# cp -r /boot/grub /tmp/
[root@wy ~]# ls /tmp
grub