Saturday, September 26, 2009

Automount - Persistent mount shared folders in VirtualBox (ubuntu as gest, in xp host)

http://forums.virtualbox.org/viewtopic.php?f=3&t=15868

With the command 'id' you can see the user and group id which are needed in the mount command.
The file /etc/rc.local is executed at the end of the boot sequence, hence the vboxsf file system is defined. Add the mount command(s) in the rc.local file:

sudo vi /etc/rc.local

add the following line before the 'exit 0' statement:

sudo mount -t vboxsf -o uid=1000,gid=1000 xp_C /mnt/xp_C

where 1000 is the uid and gid of the default user in the ubuntu gest
xp_C is the name of the shared folder e.g. the disk C which you have to define first in the Devices/Shared Folders...
/mnt/xp_C is the directory you have to create first where the share folder is mounted

Wednesday, July 29, 2009

Bookmark A Page In Your PDF

source

ditto:
-------
With the long, yet wonderful, books in PDF format these days, there needs to be a better way to digitally bookmark where you left off. For some reason Adobe Reader (Acrobat Reader) doesn’t have this capability built in. I found a plugin for Acrobat Reader to do multiple bookmarks per document from PDF Hacks. However, I really just want it to be simple like a physical book – you bookmark the page you’re on when you stop and go to that page when you pick back up. So here is my plugin to bookmark your page in Adobe Reader.

Saturday, February 28, 2009

Privoxy

Privoxy is a non-caching web proxy with advanced filtering capabilities for enhancing privacy, modifying web page data, managing HTTP cookies, controlling access, and removing ads, banners, pop-ups and other obnoxious Internet junk. Privoxy has a flexible configuration and can be customized to suit individual needs and tastes. Privoxy has application for both stand-alone systems and multi-user networks.

http://www.privoxy.org

Secure Gmail access on public networks

Simply type an 's' in the http ID like this: https://gmail.google.com. You'll be encrypted with SSL throughout your entire e-mail session.

source

Saturday, February 14, 2009

Bypass ACCESS DENIED error when accessing data in a USB drive

Guide:
http://www.techspot.com/vb/all/windows/t-8914-Guide-Bypass-ACCESS-DENIED-error-when-accessing-data-from-different-XP2000-install.html

SnortSnarf

SnortSnarf consolidates all the alert entries generated by Snort into an easy-to-read HTML format.

http://www.snort.org/dl/contrib/data_analysis/snortsnarf/

Usage:

perl -w \snortsnarf.pl -d c:/snort/log/alerts.ids


Installation errors


Can't call method "first_last" on an undefined value at include/SnortSnarf/HTMLMemStorage.pm line 220.

Add in snortsnarf.pl the line

use lib qw(./include/SnortSnarf);

bellow the line

use lib qw(./include);


Using an array as a reference is deprecated at include/SnortSnarf/HTMLMemStorage.pm line 290.

Replace @ with $$ in line 290 of include/SnortSnarf/HTMLMemStorage.pm


Using an array as a reference is deprecated at include/SnortSnarf/HTMLAnomMemStorage.pm line 266.

ditto