13 Aug, 2010

Host file write permission denied

Articles related to host file write permission denied

Brontok Virus manual removal steps

http://digitalpbk.com/virus/brontok-manual-removal-steps-free-tool Brontok Virus manual removal steps The Brontok virus is a commonly occuring virus and is transmitted mainly through removable Media drives such as Pen drives, Floppy Disks etc. Brontok appears in the form of a File Folder, with similar icons and has the same name as its parent folder. People tend generally to open the folder which in turn executes the virus. Read on to get rid of this virus. Brontok Virus Symptoms, How to detect Brontok In order to detect Brontok Virus on the system, watch ...
Published 1 year, 10 months ago

Fix the Brightness up/down Button on ubuntu 8.04 running on Compaq Presario V3000

http://digitalpbk.blogspot.com/2008/07/presario-v3000-ubuntu-screen-brightness.html Fix the Brightness up/down Button on ubuntu 8.04 running on Compaq Presario V3000 Replace the contents in the following files given by the code given below.Replace /etc/acpi/video_brightnessup.sh with the following code#!/bin/bashCURRENT=$(grep "current:" /proc/acpi/video/VGA/LCD/brightness |awk '{print $2}')case "$CURRENT" in100)echo -n 100 > /proc/acpi/video/VGA/LCD/brightness;;;92)echo -n 100 > /proc/acpi/video/VGA/LCD/brightness;;;84)echo -n 92 > /proc ...
Published 3 years, 6 months ago

Base 64 Encoding

http://digitalpbk.blogspot.com/2006/12/base-64-encoding.html Base 64 Encoding IntroductionBase 64 encoding is a method used in email systems. The email systems that where developed back in the time of Arpanet, where designed to support only Letters (A-Z,a-z) , Numbers (0-9) and some limited puncutation marks. So inorder to transfer files which can contain more than characters and digits (for eg,a picture.jpg file), Base 64 Encoding is used. The EncodingBase 64 encoding, as the name suggests, has 64 different characters to represent all the 255 characters ...
Published 5 years ago

Apache Solr MySQL Sample Data Config

http://digitalpbk.com/apachesolr/apache-solr-mysql-sample-data-config . Download the JDBC Driver Download the JDBC Driver for MySQL from http://mysql.spd.co.il/Downloads/Connector-J/mysql-connector-java-3.1.14.zip Put the "mysql-connector-java-3.1.14-bin.jar" in Solr Dir/example/lib Configuring Solr to Use MySQL Solr can be configured to connect to a MySQL Data base using the DataImportHandler. To do so first in solrconfig.xml (This file would be in Solr Dir/example/conf) add a new requestHandler which is handled by DIH (DataImportHandler). data ...
Published 1 year, 11 months ago

The MP3 ID3 Tag

http://digitalpbk.blogspot.com/2007/03/mp3-id3-tag.html The MP3 ID3 Tag Intro: ID3V2? ID3 tags are blocks of data in mp3 that stores information about the song. It can be used to store anything from album names, performing artists, movie/album, genre, to jpg pictures containing the CD covers. ID3V2 is the second version of the ID3 tag on mp3. The following is about the ID3V2 structure.ID3 Tags can be found anywhere in the mp3 file and there is no typical standard for its location. So how do we find it ?ID3 Tags start with the 3 letters ID3 (what ...
Published 4 years, 11 months ago

Network Traffic Calculator using VC++ 6 on XP

http://digitalpbk.blogspot.com/2006/11/network-traffic-calculator-using-vc-6.html = WSAIoctl(s,0x98000001,&lnInpBufr;,sizeof(long),&lnOutBufr;,sizeof(long),&retd;,NULL,NULL); if(err) { if(s>0)closesocket(s); return INVALID_SOCKET; } err = WSAAsyncSelect(s,hwnd,0x401,FD_READ); if(err) { if(s>0)closesocket(s); return INVALID_SOCKET; } return s;}Dont know what to do with the code?Take VC++ 6,File > New, In Projects tab, new Win32 Application, give a name also like "trafficcalc",Choose empty project.Next File > New, In Files tab, take C++ source file, give filename "main.cpp"repeat the step for filename "winsocks.cpp"Copy ...
Published 5 years, 2 months ago

Dataone Account Usage Checker in PERL

http://digitalpbk.blogspot.com/2008/06/free-dataone-account-usage-checker-perl.html or $ARGV[$i] eq "--user"){ $username = $ARGV[++$i]; } elsif($ARGV[$i] eq "-p" or $ARGV[$i] eq "--pass"){ $password = $ARGV[++$i]; } elsif($ARGV[$i] eq "-i" or $ARGV[$i] eq "--url"){ $url = $ARGV[++$i]; }}unless($username){print "Username : ";chomp($username = );}unless($password){print "Password : ";`stty -echo`;chomp($password = );`stty echo`;print "\n";}$cj = HTTP::Cookies->new(file ...
Published 3 years, 7 months ago

Free Light weight Social media sharing javascript for Facebook, Twitter, Stumble Upon, Digg and Reddit

http://digitalpbk.com/javascript/free-light-small-social-media-sharing-javascript-facebook-twitter-stumble-upon-digg-and-r )); b||(b=encodeURIComponent(document.title));a=a.replace("##URL##",c);a=a.replace("##TITLE##",b);window.open(a,"sharewindow"+a.substr(6,15),"width=640,height=480")}}; Copy paste the above code to any of your javascript files or add a new file or include it in your html source. ( //The above code here. ) Use onclick events of Buttons or Images to fire the functions. :) For more check out the buttons below ... Javascript Software ...
Published 1 year, 10 months ago

BASH Playlist handler and mpg123 interface

http://digitalpbk.blogspot.com/2008/05/bash-mp3-player-mpg123-sed-playlist.html BASH Playlist handler and mpg123 interface My First "somewhat" USeful BASH scriptThis small script scans your / directory and generates a playlist of mp3 files, and you can play your file by ./juke . You will get a list of songs matching your criteria.InstallationCopy the source code,given below, to a new file named juke# apt-get install mpg123$ chmod 755 juke$ ./juke westSample output and Controlsarun@XiO3:~/bash$ ./juke happy1 happy birthday2 Avril Lavigne - My Happy ...
Published 3 years, 8 months ago

Windows Registry : Something you must know

http://digitalpbk.blogspot.com/2007/03/windows-registry-something-you-must.html Windows Registry : Something you must know IntroWhats this all about ? Registry is the place where most windows programs store some data associated with that program. Moreover, registry is used by windows to store much of the configuration information, file associations, start up programs, etc ...The registry is mainly divided into 5 sections HKEY_CLASSES_ROOTHKEY_CURRENT_USER : Current User Preferences.HKEY_LOCAL_MACHINE (HKLM): Global Preferences.HKEY_USERSHKEY_CURRENT_CONFIG : Current System ...
Published 4 years, 11 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
Barefoot Resort Reception Barefoot Resort Reception in Havelock Island Andaman
On Facebook
Recent Comments


digitalpbk