一般在linux中会有8个loop设备,一般是/dev/loop0~loop7,可用通过losetup -a查看所有的loop设备,如果命令没有输出就说明所有的loop设备都没有被占用。而如果8个loop设备不够用,会提示”mount: could not find any free loop device”,但可以通过修改内核……
同事在写一个脚本的时候,在将time获取的执行时间结果输出到文件时,发现无法将结果输入到文件。通过测试发现可以通过如下方法实现time 结果输入到文件: 1{ time sleep 1 ; } 2> time.txt 2{ time sleep 1 2> sleep.stderr ; } 2> time.txt 3(time ls) > outfile 2>&1 4(time ls) > ls_results 2> time_results 5/usr/bin/time -o time.txt sleep 1 Note: some shells (e.g., bash(1)) have a built-in time command that provides less functionality than the command described here. To access the real command, you may need to specify its pathname……