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

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