Contoh kita akan merubah nilai SystemMaxUse di /etc/systemd/journald.conf, contoh journald.conf

Storage=persistent
SystemMaxUse=400M
SystemMaxFileSize=30M
RuntimeMaxUse=250M
RuntimeMaxFileSize=30M

sebenarnya dengan cara ini nilai tersebut bisa langsung diganti

sed "s/SystemMaxUse\=400M/SystemMaxUse\=500M/g" /etc/systemd/journald.conf

tetapi cara diatas tidak fleksibel karena kita harus tau berapa nilai dari SystemMaxUse, cara yang lebih fleksibel adalah

sed "s/SystemMaxUse\=[0-9]*M/SystemMaxUse\=500M/g" /etc/systemd/journald.conf

cara diatas hanya merubah output dari sed, tanpa mereplace (menimpa) file asli di journald.conf, bila anda sudah yakin tambahkan -i, agar file tersebut ditimpa dengan nilai yang baru

sed -i "s/SystemMaxUse\=[0-9]*M/SystemMaxUse\=500M/g" /etc/systemd/journald.conf

Leave a comment

Your email address will not be published. Required fields are marked *