Main > Free Download Search >

Free computer delayed shutdown software for linux

computer delayed shutdown

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 2003
Computer Breaker 0.2

Computer Breaker 0.2


Computer Breaker project is a network testing tool for services vulnerabilities. more>>
Computer Breaker project is a network testing tool for services vulnerabilities.

Computer Breaker is a network testing tool that allows networking administrators to test if a computer is vulnerable to malicious attacks.

Using the Nessus scanner, computer-breaker scans the remote host and automatically exploits its vulnerabilities.

<<less
Download (0.089MB)
Added: 2007-02-22 License: GPL (GNU General Public License) Price:
981 downloads
zCI Computer Inventory System 3.1B

zCI Computer Inventory System 3.1B


zCI is freeware for computer inventory. It is free but contains a lot of corporate feature. zCI has 100% web-based user interface, including its automatic data gathering mechanism. Also, zCI has peripheral inventory capability and facilities to manage device ownerships. zCI provides client programs for Windows and Linux/Unix operating system. The client programs automatically collect hardware and software information. more>>

zCI Computer Inventory System - zCI is freeware for computer inventory. It is free but contains a lot of corporate feature. zCI has 100% web-based user interface, including its automatic data gathering mechanism. Also, zCI has peripheral inventory capability and facilities to manage device ownerships.

zCI provides client programs for Windows and Linux/Unix operating system. The client programs automatically collect hardware and software information, such as hardware list, software list, computer serial number, monitor serial number, MAC address and etc. The free zCI gives you more and better features compared to many non-free inventory softwares.


Enhancements:
Version 3.1B

Advance Computer Finder, Monitor Serial Number Autodetection


System Requirements:PHP, MySQL
<<less
Download (1.6Mb)
Added: 2008-06-28 License: Free Price: Free
63 downloads
Computer Dictionary Computer Terminology 1.0

Computer Dictionary Computer Terminology 1.0


Computer Dictionary: What is an Operating System or OS. This computer terminology explained in plain English in this simple video computer lesson you ... more>> <<less
Download (48145KB)
Added: 2009-04-06 License: Freeware Price: Free
241 downloads
Instant Computer Help from Sunflower Network 0.5

Instant Computer Help from Sunflower Network 0.5


Instant Computer Help from Sunflower Network is an extension which enables you to get instant, expert help with your computer. more>>
Instant Computer Help from Sunflower Network is an extension which enables you to get instant, expert help with your computer.

Get instant, expert help with your computer.
You choose the price!

The Instant Computer Help tool bar immediately connects you with Sunflower Networks computer experts. Simply type in a brief description of your computer problem, and select the price that this answer is worth to you.

These agents are instantly notified of your help request -- their responses to you will appear in your browser. Choose an agent based on their profile and rating, and youll be connected by text chat, screen sharing, and telephone, for rapid problem resolution.

If the agent cant resolve your problem you dont have to pay! Payment for services is handled through a secure connection with PayPal.

By safely and securely connecting you with friendly and experienced experts, your computer problems can be fixed quickly, at a price of your choosing.

<<less
Download (0.003MB)
Added: 2007-04-04 License: MPL (Mozilla Public License) Price:
936 downloads
Computer Basics Whats a USB Flash Drive 1.0

Computer Basics Whats a USB Flash Drive 1.0


Computer Basics: What is a USB Flash Drive and How They Work in Plain English - another easy video computer lesson from Worth Godwin uses simple expla... more>> <<less
Download (77118KB)
Added: 2009-04-09 License: Freeware Price: Free
198 downloads
Computer History Graphing Project 0.9.2

Computer History Graphing Project 0.9.2


Computer History Graphing Project is a computer family tree. more>>
Computer History Graphing Project is a computer family tree.

The Computer History Graphing Project is an attempt to graph every computer standard, every piece of hardware, every OS, and every computer language in one big family tree.

<<less
Download (MB)
Added: 2006-10-04 License: GPL (GNU General Public License) Price:
1115 downloads
Computer Temperature Monitor 0.9.3

Computer Temperature Monitor 0.9.3


Computer Temperature Monitor is a little applet for the GNOME desktop that shows the temperature of your computer CPU. more>>
Computer Temperature Monitor is a little applet for the GNOME desktop that shows the temperature of your computer CPU and disks on screen. Computer Temperature Monitor also allows you to log temperatures to a file.
You can set alarms to notify you when a tempertature is reached. Several monitors can be added to the panel to monitor different sensors. It is designed to look like the CPU Frequency Gnome applet. This applet used to be called Laptop Temperature Monitor.
Enhancements:
- The way the temperature file is read has been changed to fix a bug in some modules (acpi, ibm_acpi, i8k, and omnibook).
- Support has been added for Apple G5 computers (windfarm sensors).
- Support has been added for dynamic log filenames using patterns.
- A bug that prevented the icon from appearing sometimes has been fixed.
- A GConf key has been added for showing debug information in the applet tooltip.
- A Simplified Chinese translation has been added.
- Support has been added to change the logging timeout.
- There are some bugfixes.
<<less
Download (MB)
Added: 2006-09-04 License: GPL (GNU General Public License) Price:
759 downloads
Command Executor 0.2

Command Executor 0.2


Command Executor is an amaroK script which execute an internal command (e.g. stop playing) when reaches that entry. more>>
Command Executor is an amaroK script which execute an internal command (e.g. stop playing) when reaches that entry. Sometimes it is useful to execute some external commands (e.g. shutdown) when playing reached a certain place (e.g. end of album).

This script does the job. If amaroK starts playing a track from the "Shell Command" album, this script executes the comment tag of the track as a shell command.

You need some prepared audio files, with correctly filled tags. There are three .ogg files enclosed for stop playing, shutdown and hibernate the computer.

<<less
Download (0.005MB)
Added: 2006-03-06 License: GPL (GNU General Public License) Price:
1330 downloads
Open Source Computer Vision Library 1.0.0

Open Source Computer Vision Library 1.0.0


Open Computer Vision Library is a collection of algorithms and sample code for various computer vision problems. more>>
Open Computer Vision Library is a collection of algorithms and sample code for various computer vision problems. The library is compatible with IPL (Intel Image Processing Library) and utilizes Intel Integrated Performance Primitives for better performance.

Philosophy

Aid commercial uses of computer vision in human-computer interface, robotics, monitoring, biometrics and security by providing a free and open infrastructure where the distributed efforts of the vision community can be consolidated and performance optimized.
<<less
Download (10.6MB)
Added: 2006-11-08 License: BSD License Price:
1108 downloads
POE::Component::Server::HTTP 0.09

POE::Component::Server::HTTP 0.09


POE::Component::Server::HTTP is a foundation of a POE HTTP Daemon. more>>
POE::Component::Server::HTTP is a foundation of a POE HTTP Daemon.

SYNOPSIS

use POE::Component::Server::HTTP;
use HTTP::Status;
my $aliases = POE::Component::Server::HTTP->new(
Port => 8000,
ContentHandler => {
/ => &handler1,
/dir/ => sub { ... },
/file => sub { ... }
},
Headers => { Server => My Server },
);

sub handler {
my ($request, $response) = @_;
$response->code(RC_OK);
$response->content("Hi, you fetched ". $request->uri);
return RC_OK;
}

POE::Kernel->call($aliases->{httpd}, "shutdown");
# next line isnt really needed
POE::Kernel->call($aliases->{tcp}, "shutdown");

POE::Component::Server::HTTP (PoCo::HTTPD) is a framework for building custom HTTP servers based on POE. It is loosely modeled on the ideas of apache and the mod_perl/Apache module.

It is built alot on work done by Gisle Aas on HTTP::* modules and the URI module which are subclassed.

PoCo::HTTPD lets you register different handler, stacked by directory that will be run during the cause of the request.

<<less
Download (0.016MB)
Added: 2007-04-18 License: Perl Artistic License Price:
920 downloads
Basic Computer Training Tips Lesson #2 1.0

Basic Computer Training Tips Lesson #2 1.0


Basic computer training secrets to success #2 - Why Traditional Ways to Learn Computers Just Dont Work. Second in an ongoing series of lessons that r... more>> <<less
Download (31639KB)
Added: 2009-04-07 License: Freeware Price: Free
212 downloads
 
Other version of Basic Computer Training Tips Lesson
Basic Computer Training Tips Lesson #1 1.0Basic Computer Training Tips and Help - Basic computer training secrets to success #1 - Learning Levels. First in an ongoing series of ... Basic
License:Freeware
Download (26548KB)
240 downloads
Added: 2009-04-05
The Global File System 6.1pre21

The Global File System 6.1pre21


The Global File System a shared block file system for Linux. more>>
GFS (Global File System) is a cluster file system. It allows a cluster of computers to simultaneously use a block device that is shared between them (with FC, iSCSI, NBD, etc...). GFS reads and writes to the block device like a local filesystem, but also uses a lock module to allow the computers coordinate their I/O so filesystem consistency is maintained. One of the nifty features of GFS is perfect consistency -- changes made to the filesystem on one machine show up immediately on all other machines in the cluster.

GFS consists of a set of kernel patches and userspace programs.
The GFS lock module lock_dlm depends on CMAN and DLM.
The GFS lock module lock_gulm depends on GULM.
The GFS lock module lock_nolock depends on nothing.
Some GFS tools depend on the iddev library.

Building and Installing

1. build and install from cluster tree
cd cluster
./configure --kernel_src=/path/to/kernel
make; make install

- This builds and installs kernel modules, libraries and user programs.

- Kernel modules can also be built within the original kernel source tree by applying the kernel patches from cman-kernel/patches, dlm-kernel/patches and gfs-kernel/patches.

2. build device mapper user space
cd device-mapper
./configure
make; make install

3. build lvm2/clvm
cd LVM2
./configure --with-clvmd --with-cluster=shared
make; make install
LVM2/scripts/clvmd_fix_conf.sh /usr/lib

Load kernel modules

depmod -a
modprobe dm-mod
modprobe gfs
modprobe lock_dlm

Modules that should be loaded: lock_dlm, dlm, cman, gfs, lock_harness and dm-mod if device-mapper was built as a module.

Startup procedure

Run these commands on each cluster node:

> ccsd - Starts the CCS daemon
> cman_tool join - Joins the cluster
> fence_tool join - Joins the fence domain (starts fenced)
> clvmd - Starts the CLVM daemon
> vgchange -aly - Activates LVM volumes (locally)
> mount -t gfs /dev/vg/lvol /mnt - Mounts a GFS file system

Shutdown procedure

Run these commands on each cluster node:

> umount /mnt - Unmounts a GFS file system
> vgchange -aln - Deactivates LVM volumes (locally)
> killall clvmd - Stops the CLVM daemon
> fence_tool leave - Leaves the fence domain (stops fenced)
> cman_tool leave - Leaves the cluster
> killall ccsd - Stops the CCS daemon
<<less
Download (0.13MB)
Added: 2005-04-08 License: GPL (GNU General Public License) Price:
1663 downloads
Open Computer Forensics Architecture 2.0.6pl1

Open Computer Forensics Architecture 2.0.6pl1


Open Computer Forensics Architecture is a modular computer forensics framework built by the Dutch National Police Agency. more>>
Open Computer Forensics Architecture (OCFA) is a modular computer forensics framework built by the Dutch National Police Agency. The main goal is to automate the digital forensic process to speed up the investigation and give tactical investigators direct access to the seized data through an easy to use search and browse interface.
The architecture forms an environment where existing forensic tools and libraries can be easily plugged into the architecture and can thus be made part of the recursive extraction of data and metadata from digital evidence.
The Open Computer Forensics Architecture aims to be highly modular, robust, fault tolerant, recursive and scalable in order to be usable in large investigations that spawn numerous terabytes of evidence data and covers hundreds of evidence items.
Enhancements:
- This release fixes a memory leak in the evidence library and adds a workaround to limit the impact of a memory-hungry indexer module.
<<less
Download (1.9MB)
Added: 2007-05-24 License: GPL (GNU General Public License) Price:
889 downloads
MR Tech Disable XPI Install Delay 2.4.1

MR Tech Disable XPI Install Delay 2.4.1


MR Tech Disable XPI Install Delay offers you a wonderful and totally free extension which enables fast extension to install. more>> MR Tech Disable XPI Install Delay 2.4.1 offers you a wonderful and totally free extension which enables fast extension to install. Disables default delay when installing extensions.

Enhancements: Minor version bump

Requirements: Mozilla Thunderbird


<<less
Added: 2009-02-14 License: MPL Price: FREE
26 downloads
Linux Multimedia Player 2.5

Linux Multimedia Player 2.5


Linux Multimedia Player, is an yet another tiny Linux based OS. more>>
LiMP is a a tiny LIVE CD based linux distro, that loads into memory and works only in the memory. This is the easiest, simpler yet powerful distro that works in all computers (PIII onwards).
Linux Multimedia Player supports most of the known formats, let it be mpeg-I, or mpeg-II, or divx, or wmv,qt-mov,real video for video and for audio mp3,wav,wma, ogg, real audio. It has the auto detection of partitions (ide or sata or scsi), sound cards,video cards, network cards and supports all the the cards as of kernel 2.6.13. It identifies the Partitions and mounts in the folder START.
It has the network support, which can be configured inside the GUI. It also mounts the Windows Shares, Linux Smb shares in the folder START.
It is complete tiny OS, with menu driven option and requires no knowledge of linux. All in a embedded image file of size 35 MB that gives you the entertainment. It can be easily integrated into WINDOWS XP/2000/98/95 or in linux boot loader or boot from cdrom.
LiMP distro runs only from memory and so CDROM/DVD is free to use. LiMP is completely safe to use as it mounts the partitions (NTFS, EXT2, EXT3, REISERFS) and windows / linux shares in READONLY mode.
Computer Shutdown schedule for bed time listeners. It supports viewing encrypted DVDs (Zone set DVDs). User has to option to load his favorite language font, for viewing subtitle User can set his favorite skin for xmms as default so that it loads on startup.
It runs a vnc server and can be accessed remotely from any vnc client.
Enhancements:
- The kernel was updated to 2.6.21.1.
- ALSA was updated to 1.0.14rc3.
- Idesk, a desktop program, was added.
- Mplayer, conky, and openbox were updated.
- Xdialog was added, providing an even easier interface.
- LiMP includes compressed cache to give better performance (http://linuxcompressed.sourceforge.net/).
<<less
Download (74MB)
Added: 2007-05-10 License: GPL (GNU General Public License) Price:
613 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5