agus nragus nr

Siapa Saja User Yang Menjalankan CRON?

Mencari satu persatu user yang menjalankan crontab pada sistem linux cukup merepotkan, tapi bisa dicoba baris berikut pada terminal/console : for user in $(cut -f1 -d: /etc/passwd); do echo $user; crontab -u $user -l; done perintah tsb diatas akan menampilkan semua user yang menjalankan crontab. (http://stackoverflow.com/questions/134906/how-do-i-list-all-cron-jobs-for-all-users) ...

agus nragus nr

Windows Multi Point Server 2012 didalam proxmox

Menjalankan Virtual Desktop didalam WMS 2012 yang dijalankan sebagai host pada proxmox akan menyatakan Hyper-V ‘disable’ dan proses tidak dapat dilanjutkan, aktifkan hyper-v dengan menjalankan perintah berikut pada WMS 2012 : Dism /online /enable-feature /featurename:Microsoft-Hyper-V Dism /online /enable-feature /featurename:Microsoft-Hyper-V-Management-Clients This installs the Hyer-V roles without the CPU check. I do not believe that it removes ...

agus nragus nr

Import a .SQL script using OSQL

untuk hasil export script .sql MS SQL Server yang berukuran besar dan tidak dapat diproses import oleh sql management studio, dapat menggunakan osql untuk mengimport nya : osql -U YourUserName -P YourPassword -S ServerName -d DatabaseName -n-1 -i DriveLetter:SQLFileNameAndPath.sql -o DriveLetter:LogFile.txt Switches -U: login ID for the specified server -P: password for the login ID ...