The dangers of geek boredom


 
Thread Tools Search this Thread
The Lounge What is on Your Mind? The dangers of geek boredom
# 1  
Old 06-18-2010
The dangers of geek boredom

After having listed a bunch of items for one of my daughters; I decided to unload one of my expired license plates. When I lived in Virginia, I wrote a PERL script that crawled my server farm attempting to register the vanity plate of 'UNIX' on Virginia's DMV site. One day, it succeeded. I didn't list the link here, as the point wasn't to promote the auction as much as it was to show the dangers of being bored. Note the starting price representing a common umask. Cheers,

Keith
The dangers of geek boredom-unix_auctionjpg
Login or Register to Ask a Question

Previous Thread | Next Thread
Login or Register to Ask a Question
moduload(2)							System Calls Manual						       moduload(2)

NAME
moduload - unload a kernel module on demand SYNOPSIS
DESCRIPTION
allows processes with appropriate privilege to demand unload one or all unloadable modules from the running kernel. A module is considered unloadable if it is not currently in use, if no module depending on it is currently loaded, and if the module is not being loaded or unloaded from the kernel. If module_id is set to 0 (zero), attempts to unload all unloadable modules, otherwise attempts to unload the module specified by module_id. Notes is currently implemented as a macro. Security Restrictions is restricted to superuser processes or privileged processes. A privileged process requires the privilege to execute the system call. See privileges(5), for more information about the privilege. RETURN VALUE
On success, returns 0, otherwise it returns -1 and sets to indicate the error. ERRORS
fails if one or more of the following are true: module_id does not correspond to any valid currently loaded kernel module. The caller is not a superuser process or a privileged process. There are outstanding references to the module, or modules that depend on this module are currently loaded, or profiling is enabled, or the module is in the process of being loaded or unloaded from the kernel. The Dynamically Loadable Kernel Module feature is not initialized. SEE ALSO
kcmodule(1M), modload(2), privileges(5). moduload(2)