Menghilangkan menu restart dan shutdown di xfce, buat yang pake SAM Linux, zencafe dan distro linux lain yang desktopnya pake xfce. soalnya kalau clientnya bisa shutdown jadi berabe . . . .
tutorialnya di sini
# mkdir /ect/X11/xdg/xfce4/kiosk
# mousepad /etc/X11/xdg/xfce4/kiosk/kioskrc
[xfce4-session]
CustomizeSplash=NONE
CustomizeChooser=NONE
CustomizeLogout=NONE
CustomizeCompatibility=%sgc
Shutdown=%sgc
CustomizeSecurity=NONE
# simpan
opsi CustomizeCompatibility dan Shutdown isi dengan user atau group yang diperbolehkan. disini saya isi sgc user buat operator.
Selasa, 24 Juli 2007
Trouble file core* di SAM Linux
Ada yang ameh dengan SAM Linux OS. setiap beberapa menit mencul file core* di semua direktori home user. file besarnya 10 mega lebih dan tiap jam terus bertambah. habis space harddisknya kalu gini terus. . .
kita buat script biar menghapus sendiri file nya tiap beberapa menit. pake shell script dan crontab . . .
user linux warnet com1-10
buat shell scriptnya
# su
# cd
# mousepad del_core.sh
#!/bin/sh
for i in `seq 1 10`;
do
rm -rf /home/com-$i/core*;
done;
simpantambahkan mode execute
# chmod +x del_core.sh
tambahkan di crontab. crontab adalah servis terjadwal. untuk lebih jelas baca ini crontab refference . ubah default editor k vim karenangedit drontab pake mousepad error terus
# EDITOR=vim
# crontab -e
0 * * * * /root/del_core.sh
simpan
crontab diatas mengeksekusi script del_core.sh setiap menit ke 0
lihat daftar crontab
# crontab -l
kita buat script biar menghapus sendiri file nya tiap beberapa menit. pake shell script dan crontab . . .
user linux warnet com1-10
buat shell scriptnya
# su
# cd
# mousepad del_core.sh
#!/bin/sh
for i in `seq 1 10`;
do
rm -rf /home/com-$i/core*;
done;
simpantambahkan mode execute
# chmod +x del_core.sh
tambahkan di crontab. crontab adalah servis terjadwal. untuk lebih jelas baca ini crontab refference . ubah default editor k vim karenangedit drontab pake mousepad error terus
# EDITOR=vim
# crontab -e
0 * * * * /root/del_core.sh
simpan
crontab diatas mengeksekusi script del_core.sh setiap menit ke 0
lihat daftar crontab
# crontab -l
Langganan:
Postingan (Atom)