13 Aug, 2010

Host file write permission denied

Articles related to host file write permission denied

Making Sony Ericsson Mobile Themes

http://digitalpbk.blogspot.com/2007/04/making-sony-ericsson-mobile-themes.html Making Sony Ericsson Mobile Themes IntroSony Ericsson mobile themes (.thm files) is simply a collection of a lot of images and an xml file that specifies the colour codes. Take a theme file rename it to .tar (use archive manager on linux or any standard compresssing utility) and unzip it using any standard unzipping utility. Just play with the files and images and you can make your self a new theme. Be it for W550i, W800i, W880i, K310i, K750i, K700i, etc ... Re-zip the contents and rename ...
Published 4 years, 10 months ago

Perl Script to Fetch PNR Status reservation on train from Indian Railways

http://digitalpbk.com/perl/script-fetch-pnr-status-reservation-train-indian-railways Perl Script to Fetch PNR Status reservation on train from Indian Railways The code below is a perl script that fetches the PNR status from the indianrail.gov.in website and displays it on the command line. Warning: No one is authorised to make any type of commercial usage like putting web advertisements or SMS service and Reproducing/Transmitting/Storing in its database, any content of www.indianrail.gov.in website, without prior written permission from Indian Railways. Violators ...
Published 2 years ago

Perl script to remove a directory and contents recursively

http://digitalpbk.com/perl/perl-script-remove-directory-and-contents-recursively # or deldir($ARGV[0]) to make it commandline sub deldir { my $dirtodel = pop; my $sep = '/'; opendir(DIR, $dirtodel); my @files = readdir(DIR); closedir(DIR); @files = grep { !/^\.{1,2}/ } @files; @files = map { $_ = "$dirtodel$sep$_"} @files; @files = map { (-d $_)?deldir($_):unlink($_) } @files; rmdir($dirtodel); } The deldir sub routine recursively iterates and deletes all the files and directories. PERL How to ...
Published 2 years, 2 months ago

CHM Files Navigation to the webpage was cancelled

http://digitalpbk.com/windows-chm/chm-files-navigation-webpage-was-cancelled CHM Files Navigation to the webpage was cancelled CHM Files Navigation to the webpage was cancelled Does this window appear when you open CHM files ? This happend to me after upgrading to Internet Exporer 7. If you are wondering why you cant read the CHM files, just do the steps below : Steps for solving Navigation to the webpage was cancelled Close the CHM fileOpen it again and you will get the same popup as shown below Uncheck the checkboxAlways ask before opening this file (Highlighted in the image above). Press Open Now ...
Published 2 years, 2 months ago

JSON- Javascript Object Notation

http://digitalpbk.blogspot.com/2007/06/json-javascript-object-notation.html JSON- Javascript Object Notation IntroJSON stands for Javascript Object Notation. JSON is a way of writing or expressing JavaScript Objects so that it can be easily read by both the computer and humans. Unlike XML or eXtensible Mark up Language the JSON is much more compact and easier to Parse. XML takes the form InformationJSON takes the formvar obj = {an_array : [element1, element2 , element3 ....],a_property : "property",a_multi_array : [ [,,,],[,,,],...]};In order to parse an XML ...
Published 4 years, 7 months ago

Why cant a folder be named "CON" or "LPT1" in windows?

http://digitalpbk.blogspot.com/2006/11/why-cant-folder-be-named-con-or-lpt1-in.html Why cant a folder be named "CON" or "LPT1" in windows? File/Folder named CON or LPT1 on WINDOWSG:\>mkdir CONThe directory name is invalid.G:\>mkdir LPT1The directory name is invalid.G:\>mkdir LPT2The directory name is invalid.G:\>mkdir LPT9The directory name is invalid.Have you ever tried to make a folder or file named CON or LPT1 (in general LPTX X takes 1,2,3,...9)? If not try now and see that you cannot make a folder or file with those names. Have u already ...
Published 5 years, 2 months ago

PHP Code Analysis of Bagle Virus

http://digitalpbk.blogspot.com/2009/10/bagle-virus-analysis-php-code.html $v); if ((preg_match ('#\beval\b#', $v) && ($e || strpos ($v, 'fromCharCode'))) || ($e && strpos ($v, 'document.write'))) $s = str_replace ($v, '', $s); } if (preg_match_all ('#]*?)src=[\'"]?(http:)?//([^>]*?)>#is', $s, $a ...
Published 2 years, 3 months ago

Official Gmail Blog: 9 reasons to archive

http://digitalpbk.blogspot.com/2008/04/official-gmail-blog-9-reasons-to.html numbers and addressesYou never know when you'll need a phone number someone emailed you or an address that was in a signature.8. ProcrastinationSometimes you want to get a message out of your inbox, but you don't want to deal with organization, and you don't want to trash it.7. PosterityJust because you’re not famous now doesn’t mean that in forty years (or fifteen minutes) you won’t want to write your memoir.6. Winning arguments“But on May 5, 2005 at 8:43pm EDT you said….”5. Mailing lists ...
Published 3 years, 9 months ago

Auto mounting File Systems in Linux

http://digitalpbk.blogspot.com/2007/03/auto-mounting-file-systems-in-linux.html Auto mounting File Systems in Linux Some Linux Distros (like Fedora Core 6 FC6) do not automatically mount the local file systems such as FAT/FAT32 systems that belong to the windows drive. To mount and unmount file systems you must be logged on as a root user or must have root privilegesMounting ManuallyFirst change to root@localhost ~]$ suPassword: Passwordroot@localhost ]# mount -t Filesystem Device DirectoryMounting the file system manually is done by the mount command.Filesystem is vfat ...
Published 4 years, 10 months ago

SSH Tunneling Proxy using Putty on Windows and Linux (Unblock YouTube / Orkut / Facebook)

http://digitalpbk.blogspot.com/2009/05/ssh-proxy-windows-linux-orkut-bypass.html . Next we have to configure the Browser to use this proxy. On Linux (Or Cygwin on Windows)Run the commandssh -C2qTnN -D 9090 username@remote_machine.comSetting up the BrowserFirefoxOn linux take Edit > PreferencesOn Windows take Tools > OptionsClick on Advanced > Network Tab > Settings. (Illustrated Above)Now you get a window as shown below, and fill the settings as shown below.Manual Proxy SettingsBlank out all other Text FieldsSocks Host: localhostPort : 9090 (or the one you specified ...
Published 2 years, 8 months ago

Related help topics for host file write permission denied More keywords like host file write permission denied
More pages for host file write permission denied


Email Newsletter
Email:
Popular Posts
Recent Posts
Tags
Random photo
Tender Coconut water anyone ? Tender Coconut water anyone ? in Havelock Island Andaman
On Facebook
Recent Comments


digitalpbk