web-dev-qa-db-ja.com

アプリが頻繁に書き込みを行ったり、ディスクにログを記録しすぎたりしないように制限するにはどうすればよいですか?

これを最小限に保つ方法、または必要な場合にのみ制限する方法はありますか?

これはpowertopからです。

Firefoxでは、history/cookies/cache/etcが決して保存されないように設定されていない限り、できることは多くないと思います。

The program 'firefox-bin' is writing to file 'webappsstore.sqlite' on /dev/sda6.
This prevents the disk from going to powersave mode.

これは何ですか?私はどんな種類のWeb App Storeアドオンも持っていません。

The program 'firefox-bin' is writing to file 'cookies.sqlite' on /dev/sda6.
This prevents the disk from going to powersave mode.

The program firefox-bin' is writing to file 'places.sqlite-wal' on /dev/sda6.
This prevents the disk from going to powersave mode.

他のアプリはどうですか?

The program 'flush-8:0' is writing to file '_CACHE_003_' on /dev/sda6.
This prevents the disk from going to powersave mode.

The program 'dconf-service' is writing to file 'user.62VC1V' on /dev/sda6.
This prevents the disk from going to powersave mode.

The program 'unity-panel-ser' is writing to file 'user' on /dev/sda6.
This prevents the disk from going to powersave mode.
3
Marky

ケースのほとんどのディスクアクティビティ(最後の2つを除く)はfirefoxによって実行され、データと履歴をキャッシュに保存します。

これを減らすには

1
arrange

アプリにこのオプションがない場合は、自分で削除することしかできないと思います。logrotateスクリプトをお勧めしますか、それとも質問が間違っているのでしょうか。 logrotateスクリプトを使用すると、これを自動化できます。私が間違っている場合は訂正してください。

0
Sebastian Grebe