Besides using Unlocker, there is another way (Process Explorer) to delete an open file in Windows. Here is my example: 1) The system tells me the Track_3.pdf can not be deleted as it is being used. 2) Launch the Process Explorer then search the file name, then click the search result. 3) Right click the … Continue reading Delete an open file in Windows
Author: Jackie Chen
TSM Dynamic Volume
In my previous post, I created a few fixed volumes for the backup pool in my TSM sandbox. In some scenarios, you may find it is flexible to use the dynamic volumes. In my TSM sandbox, I will configure the dynamic volumes to use the four 50G drives (G, H, I, J). 1) Update the device … Continue reading TSM Dynamic Volume
Blogilo Proxy Settings
To make Blogilo work behind a proxy, I edited this file ~/.kde/share/config/kioslaverc in my Ubuntu laptop (there is no proxy settings in the Blogilo UI).[$Version]update_info=kioslave.upd:kde2.2/r1,kioslave.upd:kde2.2/r2,kioslave.upd:kde2.2/r3[Proxy Settings][$i] ProxyType=1 httpProxy=http://proxy-server:8080httpsProxy=http://proxy-server:8080ftpProxy=http://proxy-server:8080
Auto deploy Puppet Agent
Continue with my previous Puppet and Puppet dashboard installation, now I start to deploy the agent to all my Ubuntu desktops. I wrote a script to do the dirty work. Pre-requisite package: expect (no need if use passwordless ssh, but you need to change the script slightly). How to use: 1) Create the following 4 scripts … Continue reading Auto deploy Puppet Agent
Puppet-dashboard Installation
Continue with my previous Puppet Installation, here is how I installed the puppet dashboard which offers a web UI. Install puppet-dashboard sudo yum install puppet-dashboard Config /usr/share/puppet-dashboard/config/database.yml production: database: dashboard_production username: dashboard password: puppet encoding: utf8 adapter: mysql Create MySQL database for puppet-dashboard CREATE DATABASE dashboard_production CHARACTER SET utf8; CREATE USER 'dashboard'@'localhost' IDENTIFIED BY 'puppet'; GRANT … Continue reading Puppet-dashboard Installation