免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1426 | 回复: 4
打印 上一主题 下一主题

帮忙看看,用来完成文件的归档迁移,还有不少问题请帮忙指正 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2007-04-16 14:52 |只看该作者 |倒序浏览
需要将/f1下访问时间超过30天的文件,迁移到/nfs1下
以下是我写的:

find /f1 -atime +30 -exec ls {} \; >> 30.txt
find /f1 -atime +30 -exec cp -ar {} /nfs1 \;
find /f1 -atime +30 -exec rm {} \;
line_30=`cat 30.txt|wc -l`
find /nfs1/* -ctime -1 -exec ls \; >> 1.txt
L=1
while ((L<line_30))
  do sour=`sed -n "$L"p 1.txt`
     dest=`sed -n "$L"p 30.txt`
     ln -sf $sour Sdest
done

遇到二个问题
1.如果遇到大文件我删除完了但链接尚未作好,就有访问,就会出错。我有什么办法来控制这段时间的禁止访问吗?
2.就是如果我用find /f1 -atime +30 -exec ls  -l {} \; >> 30.txt
输出到30.txt中的内容会有total(红色标记的)分割出来的几段文件列表, 为什么会分段啊?一下是输出结果
total 5132
drwxr-xr-x    2 root     root         4096 Apr 16 10:34 070416
-rw-r--r--    1 root     root         5824 Jan 25  2003 boot.b
-rw-r--r--    1 root     root          612 Jan 25  2003 chain.b
-rw-r--r--    1 root     root        44309 Mar 14  2003 config-2.4.20-8
drwxr-xr-x    2 root     root         4096 Apr 16 00:17 grub
-rw-r--r--    1 root     root       254454 Apr 15 23:39 initrd-2.4.20-8.img
-rw-r--r--    1 root     root          473 Apr 15 23:39 kernel.h
drwx------    2 root     root         4096 Apr 15 23:35 lost+found
-rw-r--r--    1 root     root        23108 Feb 25  2003 message
-rw-r--r--    1 root     root        21282 Feb 25  2003 message.ja
lrwxrwxrwx    1 root     root           20 Apr 15 21:09 module-info -> module-info-2.4.20-8
-rw-r--r--    1 root     root        15436 Mar 14  2003 module-info-2.4.20-8
-rw-r--r--    1 root     root          640 Jan 25  2003 os2_d.b
lrwxrwxrwx    1 root     root           19 Apr 15 21:09 System.map -> System.map-2.4.20-8
-rw-r--r--    1 root     root       520129 Mar 14  2003 System.map-2.4.20-8
-rw-r--r--    1 root     root      3193503 Mar 14  2003 vmlinux-2.4.20-8
lrwxrwxrwx    1 root     root           16 Apr 15 21:09 vmlinuz -> vmlinuz-2.4.20-8
-rw-r--r--    1 root     root      1122186 Mar 14  2003 vmlinuz-2.4.20-8
total 0
total
208
-rw-r--r--    1 root     root           82 Apr 16 00:17 device.map
-rw-r--r--    1 root     root         7840 Apr 16 00:17 e2fs_stage1_5
-rw-r--r--    1 root     root         7536 Apr 16 00:17 fat_stage1_5
-rw-r--r--    1 root     root         6880 Apr 16 00:17 ffs_stage1_5
-rw-------    1 root     root          554 Apr 16 00:17 grub.conf
-rw-r--r--    1 root     root         8448 Apr 16 00:17 jfs_stage1_5
lrwxrwxrwx    1 root     root           11 Apr 15 21:09 menu.lst -> ./grub.conf
-rw-r--r--    1 root     root         7040 Apr 16 00:17 minix_stage1_5
-rw-r--r--    1 root     root         9408 Apr 16 00:17 reiserfs_stage1_5
-rw-r--r--    1 root     root        11050 Feb 25  2003 splash.xpm.gz
-rw-r--r--    1 root     root          512 Apr 16 00:17 stage1
-rw-r--r--    1 root     root       106364 Apr 16 00:17 stage2
-rw-r--r--    1 root     root         6528 Apr 16 00:17 vstafs_stage1_5
-rw-r--r--    1 root     root         9320 Apr 16 00:17 xfs_stage1_5
-rw-------    1 root     root          554 Apr 16 00:17 /test/boot/grub/grub.conf
lrwxrwxrwx    1 root     root           11 Apr 15 21:09 /test/boot/grub/menu.lst -> ./grub.conf
-rw-r--r--    1 root     root           82 Apr 16 00:17 /test/boot/grub/device.map
-rw-r--r--    1 root     root          512 Apr 16 00:17 /test/boot/grub/stage1
-rw-r--r--    1 root     root       106364 Apr 16 00:17 /test/boot/grub/stage2
-rw-r--r--    1 root     root         7840 Apr 16 00:17 /test/boot/grub/e2fs_stage1_5
-rw-r--r--    1 root     root         7536 Apr 16 00:17 /test/boot/grub/fat_stage1_5
-rw-r--r--    1 root     root         6880 Apr 16 00:17 /test/boot/grub/ffs_stage1_5
-rw-r--r--    1 root     root         8448 Apr 16 00:17 /test/boot/grub/jfs_stage1_5
-rw-r--r--    1 root     root         7040 Apr 16 00:17 /test/boot/grub/minix_stage1_5
-rw-r--r--    1 root     root         9408 Apr 16 00:17 /test/boot/grub/reiserfs_stage1_5
-rw-r--r--    1 root     root         6528 Apr 16 00:17 /test/boot/grub/vstafs_stage1_5
-rw-r--r--    1 root     root         9320 Apr 16 00:17 /test/boot/grub/xfs_stage1_5
-rw-r--r--    1 root     root       520129 Mar 14  2003 /test/boot/System.map-2.4.20-8
lrwxrwxrwx    1 root     root           16 Apr 15 21:09 /test/boot/vmlinuz -> vmlinuz-2.4.20-8
lrwxrwxrwx    1 root     root           19 Apr 15 21:09 /test/boot/System.map -> System.map-2.4.20-8
lrwxrwxrwx    1 root     root           20 Apr 15 21:09 /test/boot/module-info -> module-info-2.4.20-8
-rw-r--r--    1 root     root          473 Apr 15 23:39 /test/boot/kernel.h
-rw-r--r--    1 root     root       254454 Apr 15 23:39 /test/boot/initrd-2.4.20-8.img
total 0
-rw-r--r--    1 root     root            0 Apr 16 10:34 yingxi
-rw-r--r--    1 root     root            0 Apr 16 10:34 /test/boot/070416/yingxi


谢谢!

论坛徽章:
0
2 [报告]
发表于 2007-04-16 15:04 |只看该作者
第一个问题:
1. 建立指向文件的ln;
2. 复制文件;
3. 修改符号链;
4. 删除旧文件.

第二个问题:
看看 给find  加这个参数-type f

论坛徽章:
0
3 [报告]
发表于 2007-04-16 16:34 |只看该作者
谢谢 !
第一个问题,我不是很明白。你的意思是,现在/nfs下建好一个指向一个/f1的链接,然后在将/f1下的文件copy到/nfs下,然后在修改链接,最后删除/f1下的文件,是这样吗?
如果是这样的话怎么操作啊。感觉好像行不通啊!能和我说一下具体如何操作吗?

第二个问题加-type f就是输出普通文件,是不是。我是要求符合30天未访问的所有文件都列出,包括文件夹和链接。谢谢,你的帮助,我现在分别用-type d和-type l 生成多个符合要求的文本文件来操作。

谢谢 你的帮助!

论坛徽章:
0
4 [报告]
发表于 2007-04-16 16:42 |只看该作者
刚才少了一步...1. 先给要删除的文件改名字.
2. 建立ln到改名字的待删除文件.
3. 备份文件.
4. 修改ln指向备份文件.
5. 删除旧文件.

论坛徽章:
0
5 [报告]
发表于 2007-04-16 16:43 |只看该作者
原帖由 ozar 于 2007-4-16 16:34 发表
谢谢 !
第一个问题,我不是很明白。你的意思是,现在/nfs下建好一个指向一个/f1的链接,然后在将/f1下的文件copy到/nfs下,然后在修改链接,最后删除/f1下的文件,是这样吗?
如果是这样的话怎么操作啊。感觉好 ...



ls对于目录的输出就是你不关心的东西了. 这个地方你要好好构思下.
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP