任务是在一个文件条目中创建两个具有不同大小的记录。 我正在使用python 3.4.5进行测试:
import fcntl
import os
import struct
MTIOCTOP = 0x40086d01 # refer to mtio.h
MTSETBLK = 20
fh = os.open('/dev/st2', os.O_WRONLY )
fcntl.ioctl(fh, MTIOCTOP, struct.pack('hi', MTSETBLK, 1024))
os.write(fh, b'a'*1024)
fcntl.ioctl(fh, MTIOCTOP, struct.pack('hi', MTSETBLK, 2048))
os.write(fh, b'b'*2048)
os.close(fh)
[root@dev2 mhvtl]# tcopy /dev/st2
file 0: block size 4096: 1 records
file 0: eof after 1 records: 4096 bytes <<< should be 2 records
eot
total length: 4096 bytes
[root@dev2 mhvtl]# ^C
是否有ioctl opt代码可以在磁带上启动具有可变记录长度的新记录。 或者以其他方式解决这个错误?
答案 0 :(得分:0)
问题在于tcopy,它在设备上使用块大小而不是检测它。
fcntl.ioctl(fh, MTIOCTOP, struct.pack('hi', MTSETBLK, 0))
在最后一次写入后允许tcopy按预期显示数据。
答案 1 :(得分:0)
如commands.getstatus('mt -f /dev/st2 fsf')