Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
sudo chroot /tmp/jail /bin/echo 'test' > /home/someone/.bash_history
エラー ログ: -bash: /home/someone/.bash_history: 許可が拒否されました
コマンド全体を sudo で実行していません。試す
sudo sh -c "chroot /tmp/jail /bin/echo 'test' > /home/someone/.bash_history"
リダイレクト後の部分がルートとして実行されていません
その他の例
sudo を使用して、書き込み権限のない場所に出力をリダイレクトするにはどうすればよいですか?