среда, 13 ноября 2013 г.

Unix shell commands

1. Find all files in home dir with size greater than and of certain type, finally copy them to usb flash drive (on Mac OS X):
find ~ -iname '*.tiff' -size +1M -exec cp {} /Volumes/flashka/tiff/ \;

On Max OS X to preserve directory structure use pax command:
find ~ -iname '*.tiff' -size +1M -exec pax -rw {} /Volumes/flashka/tiff/ \;



понедельник, 13 мая 2013 г.

ZyXEL ZyWall USG300. Schedule weekly reboots.

1. upload reboot.zysh to "Maintenance -> Shell script" with single command "reboot" (txt format)
2. connect to console and enter the following commands:
configure terminal
schedule-run 1 reboot.zysh weekly 05:30 mon
write

(mon stands for Monday)

вторник, 26 марта 2013 г.

МФУ Brother. Не сканирует по сети

Часто встречаюсь с проблемой, когда МФУ от Brother перестает сканировать по сети. Проблема кроется в WINS. Чтобы устранить ее, следует обращаться к устройству по ip, а не по имени.

control sticpl.cpl
В консоли нужно найти свое устройство, в свойствах прописать ip-адрес. voila!

понедельник, 21 января 2013 г.

Nginx and VirtualBox shared folders

Thanks to the "Geek" i've finally figured out how to operate with vboxsf on nginx.
Just turn off sendfile directive in nginx.conf.

http://smotko.si/nginx-static-file-problem/