在命令行中截断不使用 google-drive
Truncate not working with google-drive in command line
我正在使用 rclone
在命令行 上使用 Google 驱动器。
我想使用 truncate
创建 特定大小 的文件,但出现错误
$ truncate -s 4096 qwe
truncate: failed to truncate 'qwe' at 4096 bytes: Operation not permited
我知道没有足够的权限,但我不知道如何获得或如何绕过它:(
请帮帮我
UPD1:
我使用 google 磁盘远程工作,它使用 rclone
安装到我的服务器
screenshot
UPD2:
当我在本地执行时一切正常
screenshot
how to get around it :(
而不是调用 ftruncate
的 truncate
,真正创建全为零的文件。
dd if=/dev/zero of=qwe bs=1M count=4
我正在使用 rclone
在命令行 上使用 Google 驱动器。
我想使用 truncate
创建 特定大小 的文件,但出现错误
$ truncate -s 4096 qwe
truncate: failed to truncate 'qwe' at 4096 bytes: Operation not permited
我知道没有足够的权限,但我不知道如何获得或如何绕过它:(
请帮帮我
UPD1:
我使用 google 磁盘远程工作,它使用 rclone
screenshot
UPD2:
当我在本地执行时一切正常
screenshot
how to get around it :(
而不是调用 ftruncate
的 truncate
,真正创建全为零的文件。
dd if=/dev/zero of=qwe bs=1M count=4