Main > Free Download Search >

Free umount 1.05 software for linux

umount 1.05

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 79
Samba Scanner / Mount / Umount 1.05

Samba Scanner / Mount / Umount 1.05


Samba Scanner / Mount / Umount is a tool to Scan Samba share from Host. more>>
Samba Scanner / Mount / Umount is a tool to Scan Samba share from Host.

Samba Scanner / Mount / Umount can found and mount remote share in local folder. Umount Share and Device from System.

<<less
Download (0.032MB)
Added: 2006-03-24 License: GPL (GNU General Public License) Price:
1318 downloads
wbumount 0.1.4

wbumount 0.1.4


Wbumount is a tool that lists processes which are blocking the unmounting of a device. more>>
Wbumount is a tool that lists processes which are blocking the unmounting of a device.

Wbumount has two goals: (1) Make a "statement" how i would deal with the "umount - device is busy"-problem on the free desktop. (2) To provide a small tool which makes life easier for people already using the desktop - until someone comes up with a better solution.

Wbumount helps to find out, which processes block unmounting or ejecting devices (such as cdroms, usb-harddisks...).

Wbumount only deals with mount points which are under user control ("user"-option in fstab or mtab).

wbumount consists of two parts:

* The command line utility "wbumount". It has to be installed as "suid root" in order to see all processes via /sbin/fuser , because certain applications like the "fam"-file alteration monitor (used by nautilus) run as root. Link to fam.
* The pygtk frontend "wbumount-gtk":
This desktop app shows the list of processes, which "block" a certain mountpoint. The list gets updated every second - you will see processes come and go...
When all processes are gone, the buttons "umount" and "eject" get activated.
The "Mountpoint"-menu also gets updated permanently - when you mount a device, its mountpoint is added to the list.

<<less
Download (0.075MB)
Added: 2006-09-28 License: GPL (GNU General Public License) Price:
1121 downloads
Mobile::UserAgent 1.05

Mobile::UserAgent 1.05


Mobile::UserAgent is a mobile user agent string parsing class. more>>
Mobile::UserAgent is a mobile user agent string parsing class.

SYNOPSIS

### Print the information parsed from a user-agent string:
use Mobile::UserAgent;
my $useragent = Nokia6600/1.0 (4.09.1) SymbianOS/7.0s Series60/2.0 Profile/MIDP-2.0 Configuration/CLDC-1.0;
my $uaobj = new Mobile::UserAgent($useragent);
if ($uaobj->success()) {
print Vendor: . $uaobj->vendor() . "n";
print Model: . $uaobj->model() . "n";
print Version: . $uaobj->version() . "n";
print Series60: . $uaobj->isSeries60() . "n";
print Imode?: . $uaobj->isImode() . "n";
print Mozilla?: . $uaobj->isMozilla() . "n";
print Standard?: . $uaobj->isStandard() . "n";
print Rubbish?: . $uaobj->isRubbish() . "n";
}
else {
print "Not a mobile user-agent: $useragentn";
}


### Determine if the client is a mobile device.
use Mobile::UserAgent ();
use CGI ();

# Check 1: (check if it sends a user-agent profile URL in its headers)
foreach my $name (X_WAP_PROFILE,PROFILE,13_PROFILE,56_PROFILE) {
if (exists($ENV{"HTTP_$name"})) {
print "Client has a user-agent profile header, so its probably a mobile device.n";
last;
}
}

# Check 2: (check if it supports WML):
my $q = new CGI();
if ($q->Accept(text/vnd.wap.wml) == 1) {
print "Client supports WML so its probably a mobile device.n";
}

# Check 3: (check if this class can parse it)
my $uaobj = new Mobile::UserAgent();
if ($uaobj->success()) {
print "Clients user-agent could be parsed, so its a mobile device.n";
}

Parses a mobile user agent string into its basic constituent parts, the most important being vendor and model.

One reason for doing this would be to use this information to lookup vendor-model specific device characteristics in a database. You can use also use user agent profiles to do this (for which Ive developed other classes), but not all mobile phones have these, especially the older types. Another reason would be to detect if the visiting client is a mobile handset.

Only real mobile user-agent strings can be parsed succesfully by this class. Most WAP emulators are not supported because they usually dont use the same user-agent strings as the devices they emulate.

<<less
Download (0.037MB)
Added: 2007-03-22 License: Perl Artistic License Price:
957 downloads
hmount 0.2.1

hmount 0.2.1


hmount project is a simple interface to HAL for mounting and unmount hot-plugged devices. more>>
hmount project is a simple interface to HAL for mounting and unmount hot-plugged devices. Unlike gnome-mount, it doesnt depend on gconf, GTK+, X, or GNOME libraries.
Installation:
The simplest way to compile this package is:
1. `cd to the directory containing the packages source code and type `./configure to configure the package for your system.
Running `configure might take a while. While running, it prints some messages telling which features it is checking for.
2. Type `make to compile the package.
3. Optionally, type `make check to run any self-tests that come with the package.
4. Type `make install to install the programs and any data files and documentation.
5. You can remove the program binaries and object files from the source code directory by typing `make clean. To also remove the files that `configure created (so you can compile the package for a different kind of computer), type `make distclean. There is also a `make maintainer-clean target, but that is intended mainly for the packages developers. If you use it, you may have to get all sorts of other programs in order to regenerate files that came with the distribution.
Enhancements:
- autotools used for build.
- allow to use not full mountpoint during umount.
- right slash ignoreg in mountpoint during umount.
<<less
Download (0.098MB)
Added: 2007-02-16 License: GPL (GNU General Public License) Price:
981 downloads
Peng 1.05

Peng 1.05


Peng project consists of an AOL Linux dialer. more>>
Peng project consists of an AOL Linux dialer.

Peng is a free program for Linux that sets up a PPP, cable, or DSL connection for AOL or other providers by using a reverse engineered version of the AOL protocol.

It can be used from the command line and is known to work in several countries.

<<less
Download (0.32MB)
Added: 2007-03-21 License: GPL (GNU General Public License) Price:
949 downloads
Pod::TOC 1.05

Pod::TOC 1.05


Pod::TOC is a Perl module to extract a table of contents from a Pod file. more>>
Pod::TOC is a Perl module to extract a table of contents from a Pod file.

SYNOPSIS

This is a Pod::Simple subclass, so it can do the same things.
use Pod::TOC;

my $parser = Pod::TOC->new;

my $toc;
open my($output_fh), ">", $toc;

$parser->output_fh( $output_fh );

$parser->parse_file( $input_file );

This is a Pod::Simple subclass to extract a table of contents from a pod file. It has the same interface as Pod::Simple, and only changes the internal bits.

<<less
Download (0.004MB)
Added: 2006-11-29 License: Perl Artistic License Price:
1059 downloads
multistat 1.0

multistat 1.0


multistat is a generic program to display the up/down status of all kinds of things. more>>
multistat is a generic program to display the up/down status of all kinds of things (some examples: VPN, particular machines, whether filesystems are mounted).

You will need to edit the multistat.py file to configure the things whose status you want to check.

Status for each "property" (i.e., VPN, computer, filesystem mount) is either red or green.

For each property, you enter values into several arrays, as defined below

Taken from multistat.py:

# commands that set properties to the green state
green_cmds = []

# commands that set properties to the red state
red_cmds = []

# commands whose output can be used to determine whether the state is green or red
check_colour_cmds = []

# strings that, if present in check_colour_cmds, mean that we are in the green state
is_green = []

# display this when in the green state
green_display_strings = []

# display this when in the red state
red_display_strings = []

So what happens is:

For each property:

1. In the green state the green_display_strings value for the property is displayed in green.

2. In the red state the red_display_strings value for the property is displayed in red.

3. To determine whether the property is in the gren or red state, the command in the check_colour_cmds array is run, and if the string in the is_green array is found in the output, then the property is in the green state. Otherwise, it is in the red state.

4. If green_cmds and red_cmds are not null (they MUST be defined, but they MAY be empty strings), then clicking the displayed string for the property on the widget will cause the relevant command to be executed to cause the property to change state. In other words, you can force a property to toggle between green and red by clicking the property on the widget. So, for example, you can mount/umount filesystems with a click. For some properties it makes no sense to provide a toggle (for example, if you are simply monitoring whether a particular computer is on the network): for such properties, define red_cmds and green_cmds to be empty strings.

This may not make much sense (sorry!) but if you read it again with the multistat.py script open in front of you, you should be able to see what I mean.

You can change the actual displayed colours easily (see screenshot 2 for an example where "red" has been redefined).

By default, properties are scanned and updated once per miute.

<<less
Download (0.032MB)
Added: 2006-06-19 License: GPL (GNU General Public License) Price:
1222 downloads
TxSig 1.05

TxSig 1.05


TxSig is a small signature rotator. more>>
TxSig project is a small signature rotator.
It can randomly pick from a directory of files containing fortunes or quotes. It offers a variety of features such as compatibility with files from fortune. Users can generate their own quote files.
Main features:
- Quotes chosen based on length
- Quotes chosen based on rating
- Multiple configuration files
- Multiple quote/fortune files
- 100% Compatability with standard fortune files
- Drop-in compatability with pine V 4.44
- Optional apending of .signature (or any other file)
- Uses only standard perl modules
- Tastes Good
- Possibly Sexy
Enhancements:
- fixed a problem with creating and updating the data.cnt file
<<less
Download (0.028MB)
Added: 2006-12-13 License: GPL (GNU General Public License) Price:
1046 downloads
KKopy 1.05

KKopy 1.05


KKopy - copy, cut and paste tool for Word that selects sections of text in one click more>>
KKopy is an award winning copy, cut and paste utility for Microsoft Word that selects sections of text or in one click. It avoids the need to highlight the text you want to copy and works out for itself what needs to be copied purely from where you place your cursor on your document. A valuable time saving tool which complements the standard Word Copy and Cut tools. It is extremely easy to use. One quick read of the included help file and you will be using it immediately.
<<less
Download (2.30MB)
Added: 2009-04-27 License: Freeware Price:
184 downloads
djbdns 1.05

djbdns 1.05


djbdns is a Domain Name System tools. more>>
djbdns is a collection of Domain Name System tools. Security is one of the primary motivations for the development of djbdns.

Every step of the design and implementation has been carefully evaluated from a security perspective. The djbdns package has been structured to minimize the complexity of security-critical code.

dnscache is immune to cache poisoning. It is advisable to use the package as a secure alternative to BIND.

Installation

Like any other piece of software (and information generally), djbdns comes with NO WARRANTY. Exception: See the djbdns security guarantee.

djbdns works only under UNIX. One UNIX flavor, SCO UnixWare, is not supported at this time.

Before installing djbdns, install daemontools 0.70 or above, and install ucspi-tcp.

As you go through the installation and configuration process, please keep notes of exactly what you did and exactly what the computer did. Put the notes on your web pages, and include the URL with any questions that you send to the dns mailing list.

1. If you would like a local copy of these web pages, download the djbdns documentation package and unpack it under under /doc:

gunzip < doc.tar.gz | (cd /; tar -xf -)

Then run slashdoc-merge to create indices such as /doc/commands.html.

2. Download the djbdns package. The latest published djbdns package is djbdns-1.05.tar.gz.

3. Unpack the djbdns package:

gunzip djbdns-1.05.tar
tar -xf djbdns-1.05.tar
cd djbdns-1.05

4. Compile the djbdns programs:

echo gcc -O2 -include /usr/include/errno.h > conf-cc
make

The first line, modifying conf-cc, is necessary for some Linux systems, to work around a Linux bug. It can be skipped under BSD, Solaris, and other systems that comply with IEEE Std 1003.1-1990.

5. As root, install the djbdns programs under /usr/local:

make setup check

6. Report success:

( echo First M. Last; cat `cat SYSDEPS` )
| mail djb-sysdeps@cr.yp.to

Replace First M. Last with your name.
<<less
Download (0.083MB)
Added: 2005-04-26 License: Freeware Price:
1644 downloads
OODBC for unix 1.05

OODBC for unix 1.05


Object adapter for ODBC more>> OODBC is object interface built above ODBC API for C++ language. The primary goal of OODBC is to provide a flexible and convenient interface to relational databases for C++ language. Anyone who has to use ODBC or similar SQL interfaces will understand what I am speaking about. So binding of variables is performed exactly in place where they are used in the query. Programmer should not worry about specifying types and sizes of query parameters, binding buffers to retrieve results, allocation and deallocation of resources. As a result programming of interaction with database becomes significantly less error prone. What is more important, this interface allows programmer to abstract from relational database table and deal only with application objects. OODBC also provides flexible mapping of application classes on relational database tables, making application code less dependent of the database structure.<<less
Download (21KB)
Added: 2009-04-18 License: Freeware Price: Free
188 downloads
Plosxom 1.05

Plosxom 1.05


Plosxom is a blogsoftware written in PHP by Pali Dhar. more>>
Plosxom is a blogsoftware written in PHP by Pali Dhar. The project is a rewrite of phposxom. Blogposts are stored in textfiles, categories are simple directories. Plosxom has a comprehensive plugin api, which allows to add almost any functionality or to replace existing functionality.
Phposxom were itself a php rewrite of blosxom, but the developer has abandoned the project. I am using it, because I cannot run perl where my site is hosted and because it is small. However, the sourcecode of phposxom were nearly unmaintanable, inefficient and bad styled (sorry Robert). Since I use it on an every day basis, I decided to completely rewrite it. Plosxom was born.
Many of the blosxom forks out there have been abandoned too, especially the php ports (there are lots of it). None of them seemed to be a usefull base for me. Most of them justify their decision that if it were developed further it would become too far to existing projects like wordpress and they didnt want to re-invent the wheel.
While I share this view in general, I also see a lot of disadvantages with wordpress: its storage backend cant be replaced. It depends on MySQL, which is the worst database system on the planet. With plosxom you could write a sqlite backend or whatever you like, even a mysql backend. Wordpress is also a "large biest", it contains a lot of source code and thus a lot of problems, especially from the security point of view.
Speaking of security - plosxom were developed with strong security in mind. Since there is almost no cgi input being used in the software, this goal were not difficult to achive. Everything which gets into the script will be filtered for bogus characters. Future attacks are hopefully prevented using this technique.
There is no administration backend delivered with plosxom, because you write textfiles (or upload them) - thats all. Without admin backend, the blog cant be hijacked like most other blogs could be.
The plosxom core engine is very small. In fact, I wrote it in just two days. This sounds like a hell of a crap, but it isnt. Much functionality is provided by plugins, even core functions, such as text file management, is coded as a plugin. Since we are using smarty as our template engine there are endless possibilities to enhance plosxom. You can write a simple plugin along with a simple smarty function and thats it.
For now, plosxom doesnt provide built-in comment support due to security reasons. Instead comments can be outsourced to Haloscan. However, perhaps someone will write a comment plugin some day, who knows.
Enhancements:
- This release comes with two new templates (blog.txt and crystalx) and a couple of some new plugins.
- Several bugs were fixed.
- Templates and plugins can be downloaded separately too.
<<less
Download (0.082MB)
Added: 2007-06-24 License: Artistic License Price:
854 downloads
FreeMIS 1.05

FreeMIS 1.05


FreeMIS project is developing a free and better alternative to the commercial MIS products. more>>
FreeMIS project is developing a free and better alternative to the commercial MIS products. All the FreeMIS files and data are stored on a web server, and the FreeMIS system is accessed via the Internet. Users simply need an Internet connection and a modern web browser (preferrably Firefox, but Internet Explorer 6 and Safari work fine).
Each user has a unique username and password, which grant them access to the system. At present, only teachers can access the system, but the design of FreeMIS is ready for access by any of the stakeholders in the school system - students, parents, governors etc.
At present, FreeMIS is used to write reports to parents on pupil progress. Using FreeMIS, teachers can write reports at a time and place of their own choosing. Some choose to write reports in school, but many now write their reports from home.
Main features:
- Password protected access, to ensure security of data.
- Web-based, so it can be accessed on any computer connected to the Internet, without the need for special software.
- Storage of pupil and staff data
- Storage of class enrollment and course data
- Production of reports to parents/guardians on pupil progress
- Monitoring of pupil progress through a tracking and target setting system, which includes the automatic generation of letters to parents/guardians
- Noting of unexplained absences, which automatically generates a warning email to the school office
The FreeMIS project aims to provide schools with a high quality alternative to the proprietary Management Information Systems that abound in schools in the UK and beyond.
We at the FreeMIS project believe that the best way to create a high quality MIS is to develop it as an Open Source project. This means that the system and the code from which it is built will always be freely available.
At present, FreeMIS only offers a subset of the functionality of a comprehensive MIS. Development is ongoing, however, and FreeMIS has stood the test of being used in a Scottish High School.
Becta has recently published a report highlighting the financial savings possible if schools move towards Open Source alternatives. FreeMIS aims to be part of the package that schools will adopt.
Enhancements:
- Added user/admin_edit screen to simplify administration
- Cleaned up xhtml
- Fixed bug #1497176
- Refactored code to make it more DRY
- Removed historic tables from old PHP version
- Improved admin screen to edit pupil sets
- Increased coverage of unit/functional tests
- Cleared up css for reports, and switched full reports to print on blank page, rather than having fancy hiding of navigation stuff for printing.
- Fixed bug that made reports vanish if pupil was dropped from a pupil set
- Put together all academic_year related details on one form for ease of administration
- Gave Heads of Faculties write access to all faculty reports
<<less
Download (2.2MB)
Added: 2006-06-13 License: GPL (GNU General Public License) Price:
1228 downloads
Album::Tutorial 1.05

Album::Tutorial 1.05


Album::Tutorial is a Perl module on how to use the Album program. more>>
Album::Tutorial is a Perl module on how to use the Album program.

SYNOPSIS

This tutorial describes the basic use of the Album program to create and maintain browser based photo albums.

Getting started

To get started, create a new directory and cd to it. Create a subdirectory large and put some pictures there. If you have installed the album tool in your execution path, you can now execute it as follows:

$ album -v
No info.dat, adding images from large
info.dat: Cannot update (does not exist)
Number of entries = 7 (7 added)
mkdir thumbnails
mkdir icons
mkdir css
Creating icons: first-gr.png first.png ... sound.png movie.jpg
Creating style sheets: common.css index.css ... journal.css
im023.jpg: thumbnail OK
im024.jpg: thumbnail OK
im025.jpg: thumbnail OK
im026.jpg: thumbnail OK
im027.jpg: thumbnail OK
im028.jpg: thumbnail OK
im029.jpg: thumbnail OK
Creating pages for 7 images
(Needed to write 7 image pages)
Creating pages for 1 index
(Needed to write 1 index page)

Your results will vary, but be similar to this example run. What you can see is that album found 7 images in the large directory, created thumbnails, icons and css directories, created thumbnails by resizing the images, and finally created the HTML pages. You can inspect your first photo album by opening file index.html with your favorite browser. You can click on any image to see the larger version. Navigation buttons are provided to the left of the image.

It is interesting to run album again:

$ album -v
No info.dat, adding images from large
info.dat: Cannot update (does not exist)
Number of entries = 7 (7 added)
.......[7]
Creating pages for 7 images
(No image pages needed updating)
Creating pages for 1 index
(No index pages needed updating)

album tries to avoid doing unnecessary work as much as possible. In this case, all thumbnails and image and index pages are up to date. The line of periods shows progress, one period for each image processed.

<<less
Download (0.049MB)
Added: 2006-11-17 License: Perl Artistic License Price:
1071 downloads
Sanefile 1.05

Sanefile 1.05


Sanefile is a tool to easily and quickly clean and change a large number of filenames. more>>
Sanefile is a tool to easily and quickly clean and change a large number of filenames. The idea started when I started “ripping” my own CD’s and the filenames were all different and full of errors. When I started getting TV downloads from other sources, the issue became a problem.

I had to find an efficient way of changing a large number of filenames. Sanefile was the result. Simple, single-purpose and very efficient at it with total exploitation of Tcl’s rich Regular Expression capabilities.

What this tool is NOT: spy-ware, spam-ware, virus or any other crappy stuff.

With Sanefile, you can use the full power of regular expressions. For instance, imagine that you want to filter off all files starting with a A. To use the just A would remove from the list all the files with A in it. Not the solution. If you use ^A (Carat and A) it means that it has to match A only at the beginning of the text.

More examples:

^text matches "text" in the beginning of the name
text$ matches "text" in the END of the filename
. matches ANY character
[ ] range indicator as in:
[a-z] matches ONE letter "a" to "z"
[a-zA-Z] matches ONE letter "a" to "z" and "A" to "Z"
[0-9] matches ONE digit
[^range] (caret) matches if NOT in the range as in:
[^0-9] matches if it is NOT a digit
* operator for repetition
.* matches everything
[0-9]* multiple digits
[^a-zA-Z0-9]* a bunch of everything BUT a letter or digit
escape operator
t tab
( when you want to match (
. when you want to match .
when you want to match (RARELY DONE! Think why.)
() used to group expressions
ab* a followed with multiple bs
(ab)* multiple ab (different from above!)

^Doors.*([A-Z][0-9]*).*.mp3$ Matches all files starting with Doors, have somewhere in the middle a letter followed by digits and end in ".mp3"
<<less
Download (0.007MB)
Added: 2006-12-11 License: Artistic License Price:
1047 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5