解決策 1:
cp
のマニュアルしか開いていない場合 ...
次は、ファイルのパーミッションと所有権 + グループシップを上書きしません:
cp --no-preserve=mode,ownership /tmp/file /home/file
所有権とグループシップを保持したい場合は、root 権限が必要であることに注意してください。
マニュアルからの抜粋:
--preserve[=ATTR_LIST] preserve the specified attributes (default: mode,owner- ship,timestamps), if possible additional attributes: context, links, xattr, all
解決策 2:
cat
も動作します:
cat /tmp/file > /home/file
Linux システム ユーザーとしてコマンドを実行します (シェル =/bin/false)
Linux ubuntu サーバーを最新の状態に保つためのベスト プラクティスは何ですか (ビルド パッケージ、dist-upgrade、alt リポジトリなど)。