Kulish Digital Hub

tech.kulish.com - This site
cars.kulish.com - Auto Info
family.kulish.com - Invite only
gallery.kulish.com - General pics
webmail.kulish.com - Kulish Webmail
pastebin.kulish.com - Local Pastebin
mediaserv.kulish.com - Kulish Media

Posted in Drupal, Website, Wordpress | Tagged , , , , , , , , , , , , | Leave a comment

VZ HTC Incredible Bypass Activation

1. Select emergency call and dial ##778.
2. Select edit and enter service password 000000.
3. Select NAM Settings.
4. Change Mobile Directory number to 0000000000 (Ten digits).
5. Change MIN1 to 0000000 (Seven digits).
6. Change Mobile Country Code to 000 (Three digits).
7. Tap Menu and commit changes.
8. The phone will auto reboot in 10 seconds.

I modified step 7 to be more clear from a forum post at:

http://androidforums.com/incredible-support-troubleshooting/106652-bypassing-activation-screen-no-service-available.html#post990713

Posted in Uncategorized | Tagged , , | Leave a comment

Home Storage: Increasing Filesystem Size

Extending my backup volume group, logical volume and filesystem on both NASes.

vgdisplay

— Volume group —
VG Name hcst002
System ID
Format lvm2
Metadata Areas 1
Metadata Sequence No 3
VG Access read/write
VG Status resizable
MAX LV 0
Cur LV 2
Open LV 2
Max PV 0
Cur PV 1
Act PV 1
VG Size 465.52 GiB
PE Size 4.00 MiB
Total PE 119173
Alloc PE / Size 119173 / 465.52 GiB
Free PE / Size 0 / 0
VG UUID 7aaDWJ-6go0-nSLQ-3Hwa-FdJo-0g9q-3ZbW71

Posted in Linux, OS | Tagged | Leave a comment

Debian Squeeze 802.3ad

Debian Lenny and Squeeze
2x Realtek 8169
1x Reaktek 8169, 1x nForce
Fisher-Price My First Managed Switch

Testing:
iptraf
cat /proc/net/bonding/bond0





Posted in Hardware, Linux, Network, OS | Tagged , , , | 1 Comment

nginx+observium configuration

Update to index.php in observium to work with nginx.

Change from:

$_SERVER['PATH_INFO'] = (isset($_SERVER['PATH_INFO']) ? $_SERVER['PATH_INFO'] : $_SERVER['ORIG_PATH_INFO']);

Change to:

$_SERVER['PATH_INFO'] = $_SERVER['REQUEST_URI'];

nginx site configuration:

server {
listen 80;
server_name hostname.kulish.com;

access_log /var/log/nginx/hostname.kulish.com.acc.log;
error_log /var/log/nginx/hostname.kulish.com.err.log;

root /www/observium/html;
index index.php;

error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/www;
}

location / {
try_files $uri $uri/ @observium;
}

location @observium {
rewrite ^(.+)$ /index.php/$1/ last;
}

}

# General php settings
include php.conf;

# We need to exclude robots.txt specifically
include drop.conf;

Posted in Daemons, http, Linux, OS, php, Scripting, Website | Tagged | Leave a comment

Apache to Nginx Migration





Status update of the web engine migration.
All items are pending further testing.

Tech.kulish.com
Fully functional (including links to other/outside domains)

Posted in Daemons, http, Linux, OS, php, Scripting, Website, Wordpress | Tagged | Leave a comment