Posts

Showing posts from July, 2005

Increase hotmail quota from 2MB to 250MB

+++++++++++++++++++++++++++++++++ STEPS: +++++++++++++++++++++++++++++++++ Login ur hotmail account and go to options. Go to "Personal" Click "My Profile" Change Country to "United States" Wait for browser to load United states settings. Change the state to "Florida" and zip code "33332" Click "update" Click "Continue" Go to "Language" and make sure its "English" Paste this link in the same browser. http://by17fd.bay17.hotmail.msn.com/cgi-bin/Accountclose Wait until the Screen says you're Hotmail is Closed and ready to be deleted. Click "Close My Account". Go back to login page and relogin to ur hotmail account..!! Your account size will now increase to 25 MB which a mnth later becomes 250 mb. +++++++++++++++++++++++++++++++++

.cshrc script for solaris

++++++++++++++++++++++++++++++++++++++++++ # @(#)cshrc 1.11 89/11/29 SMI # set protection umask 022 set prompt="`uname -n` $LOGNAME \!> " set history=100 savehist=100 # limit the size of the history files set filec # enable filename completion +++++++++++++++++++++++++++++++++++++++++

Ctrl + Alt + Del on vncviewer for Unix

How to Ctrl + Alt + Del your vncviewer running from a unix box which has windows vnc'ed. Ans. Use 'F8' :-)

Freeing Space

Found 2 utilities which did saved me lots of space: - WinDirStat (from sourceforge) and downloaded from an alternate source http://sf.gds.tuwien.ac.at/w/wi/windirstat/ - Check Identical Files v2.14 http://www.abc-view.com/cif.html And just in case if you have cleaned up too much of your space, then download Ontrack DataRecovery 6.04 software :-)

xstartup file of Vncserver for Solaris

++++++++++++++++++++++++++++++++++++++++++++++ CAT .vnc/xstartup for SUN SOLARIS ++++++++++++++++++++++++++++++++++++++++++++++ #!/bin/sh xrdb $HOME/.Xdefaults eval `locale_env -env` # Set Locale Environment DTXSERVERLOCATION="remote" SESSIONTYPE="altDt" SDT_ALT_SESSION="/usr/dt/bin/dtsession" SDT_ALT_HELLO="/usr/dt/bin/dthello &" export DTXSERVERLOCATION SESSIONTYPE SDT_ALT_SESSION SDT_ALT_HELLO /usr/dt/bin/Xsession display = `echo $DISPLAY | sed -e 's/.*:/:/'` ++++++++++++++++++++++++++++++++++++++++++++++

Hard Links

There is this guy who came asking on how do we search for hard links, i thought of initially writing a shell script, but then found out that our dear old unix 'find' did that job. find . -name '*.c' -printf "%n:%i:%p \n" (or just do a) find . -name '*.c' -ls %n - tells the number of hard links %i - gives u the inode number %p - the filename