WareSeeker Search Software

unix


Sponsored Links
Collapse All
Software Name Software Type Category Price
1

Unix::Mknod 0.03


linux Programming->Libraries Free
View Detail
Download Unix::Mknod 0.03Download Unix::Mknod 0.03
0.005 MB
Unix::Mknod is a Perl extension for mknod, major, minor, and makedev.

SYNOPSIS

use Unix::Mknod qw(:all);
use File::stat;
use Fcntl qw(:mode);

$st=stat(/dev/null);
$major=major($st->rdev);
$minor=minor($st->rdev);

mknod(/tmp/special, S_IFCHR|0600, makedev($major,$minor+1));

This module allows access to the device routines major()/minor()/makedev() that may or may not be macros in .h files.

It also allows access to the mknod system call.


2

Unix-LineFeed 1.0


windows Utilities->Misc Text Editing Tools Free
View Detail
Download Unix-LineFeed 1.0Download Unix-LineFeed 1.0
15K
This program converts line-feeds from windows style to unix style. It can be installed for right-mouse click in the explorer. The program checks if the file is really a text file to prevent that you destroy a program accidently.

3

UNIX TimeStamp Converter 0.1


windows System->Browser Tweak Free
View Detail
Download UNIX TimeStamp Converter 0.1Download UNIX TimeStamp Converter 0.1
72.7 KB
UNIX TimeStamp Converter description
To quickly convert a date into a Unix TimeStamp string and the other way around use the Unix TimeStamp Converter Opera widget The UNIX TimeStamp Converter Opera widget allows conversions between the Unix TimeStamp date format and the human date.

You can input the date in DD/MM/YYYY, hours, minutes and seconds and the Unix TimeStamp Converter converts it to a Unix TimeStamp string and the other way around.

Requirements:

· Opera 9 or later

4

UNIX Breaks 1.0


mac Utilities->Others Free
View Detail
Download UNIX Breaks 1.0Download UNIX Breaks 1.0
25 KB
UNIX Breaks is an AppleScript droplet that will convert a text documents line breaks from Macintosh to UNIX.
This is neccessary for some UNIX servers and PHP.

The author has also includes another script which will list only the JPGs of a certain folder (needs edited to suit local needs).



5

Unix Watch 1.0


windows Network Internet->Network Information Tools $27.00
View Detail
Download Unix Watch 1.0Download Unix Watch 1.0
878k
Monitor UNIX processes from Win9x/2K or NT with this simple utility. View all or filtered list of processes. Sort results. Supports both BSD and SysV UNIX flavours. User must have telnet access to the remote host.

6

UNIX-Edit 32 1.13


windows Network Internet->UNIX Ports and Commands Free
View Detail
Download UNIX-Edit 32 1.13Download UNIX-Edit 32 1.13
157K
A Windows Editor that allows you to edit ASCII Files in UNIX an in PC format. You also can convert files to both formats, UNIX and PC. So You can always upload Your Files in Binary Mode.

7

Unix.2.Windows 1.1


windows Home Shell Desktop->Text editors Free
View Detail
Download Unix.2.Windows 1.1Download Unix.2.Windows 1.1
470 KB
Unix.2.Windows change TEXT Files from UNIX to WINDOWS style and from WINDOWS to UNIX style.
In fact, change "LF" to "CR+LF" and "CR+LF" to "LF".Unix.2.Windows is a tool that allows you to change text files.

Note: USE ONLY WITH TEXT TYPE FILES (txt, html, doc, wri, etc.). THIS PROGRAM WAS NOT CREATED FOR USE ON EXECUTABLE OR ARCHIVE FILES !

Here are some key features of "Unix 2 Windows":

· Recursive Scan thru Directories
· Change only files with given extension (Ex.: *.txt,*.htm)

8

UNIX Console 3.2


mac Utilities->Others $199
View Detail
Download UNIX Console 3.2Download UNIX Console 3.2
2 MB
UNIX Console is a Solaris UNIX system analysis and performance tool for Power Macintosh and Windows 9x/NT computers.

It consists of a series of modules that send commands to a remote UNIX server and displays a graphical interpretation of the results. Many modules make an analysis of the commands result set and highlight potential problems and suggest possible options. The modules will never override the current users access permission level on the server.

Analyses are based on published work.

This application works best with Sun Microsystems Solaris UNIX, although some modules may work on other platforms. At this stage only Solaris is supported. No non-Solaris server-side components need be installed.

Limitations:

· Registration reminders.


Whats New in This Release:

· Now runs native under OS X and Win32.
· Free upgrade for those who supported UNIX Console by purchasing v1.0.

9

Unix configuration extractor 4


windows Security Privacy->Other Tools Free
View Detail
Download Unix configuration extractor 4Download Unix configuration extractor 4
19KB

The Unix configuration extractor is a script that runs on the server to extract necessary security configurations. This script doesnt make any changes to the server other than creating the dump files
10

Unix Permissions Widget 1.0


mac Dashboard Widgets->Calculater Free
View Detail
Download Unix Permissions Widget 1.0Download Unix Permissions Widget 1.0
1 MB
Unix Permissions Widget allows users to easily figure out the binary equivalent of permissions for files and directories.

This tool provides the binary equivalent of read, write, and execute privileges.

The resulting numbers can then be used with the command-line tools chmod, chown, and chgrp to modify file and directory permissions.

11

Unix::Conf::Bind8::Conf 0.3


linux Programming->Libraries Free
View Detail
Download Unix::Conf::Bind8::Conf 0.3Download Unix::Conf::Bind8::Conf 0.3
0.076 MB
Unix::Conf::Bind8::Conf is a front end for a suite of classes for manipulating a Bind8 style configuration file.

SYNOPSIS

my ($conf, $obj, $ret);

$conf = Unix::Conf::Bind8->new_conf (
FILE => named.conf,
SECURE_OPEN => /etc/named.conf,
) or $conf->die ("couldnt create `named.conf");

#
# All directives have corrresponding new_*, get_*, delete_*
# methods
#

$obj = $conf->new_zone (
NAME => extremix.net,
TYPE => master,
FILE => db.extremix.net,
) or $obj->die ("couldnt create zone `extremix.net");

# For objects that have a name attribute, name is to
# be specified, otherwise no arguments are needed.
$obj = $conf->get_zone (extremix.net)
or $obj->die ("couldnt get zone `extremix.net");

$obj = $conf->get_options ()
or $obj->die ("couldnt get options");

# For objects that have a name attribute, name is to
# be specified, otherwise no arguments are needed.
$obj = $conf->delete_zone (extremix.net)
or $obj->die ("couldnt delete zone `extremix.net");

$obj = $conf->delete_options ()
or $obj->die ("couldnt get options");

# directives that have a name attribute, have iterator
# methods
printf ("Zones defined in %s:n", $conf->fh ());
for my $zone ($conf->zones ()) {
printf ("%sn", $zone->name ();
}

printf ("Directives defined in %s:n", $conf->fh ());
for my $dir ($conf->directives ()) {
print ("$dirn");
}

$db = $conf->get_db (extremix.net)
or $db->die ("couldnt get db for `extremix.net");

This class has interfaces for the various class methods of the classes that reside beneath Unix::Conf::Bind8::Conf. This class is an internal class and should not be accessed directly. Methods in this class can be accessed through a Unix::Conf::Bind8::Conf object which is returned by Unix::Conf::Bind8->new_conf ().


12

TreeSize for Unix 0.53


linux System->Filesystems Free
View Detail
Download TreeSize for Unix 0.53Download TreeSize for Unix 0.53
0.20 MB
TreeSize for Unix is a disk consumption analyzing tool, which sorts folders according to their physical occupied sizes.

The perfect tool to help you obtaining more disk free space, on your hard drive, usb pen drive or even on network folders (provided that they are mounted and you have access to them, of course )

Just like du, it counts hard links just once and the space utilized by different filesystems are not added together.


13

jEdit for Unix 4.3pre12


windows Software Development->Java Tools Free
View Detail
Download jEdit for Unix 4.3pre12Download jEdit for Unix 4.3pre12
2.41MB
jEdit is a mature programmers text editor with hundreds (counting the time developing plugins) of person-years of development behind it. To download, install, and set up jEdit as quickly and painlessly as possible, go to the Quick Start page.
While jEdit beats many expensive development tools for features and ease of use, it is released as free software with full source code, provided under the terms of the GPL 2.0.
The core of jEdit was originally by Slava Pestov. Now the jEdit core, together with a large collection of plugins is maintained by a world-wide developer team.
Some of jEdits features include:
Written in Java, so it runs on Mac OS X, OS/2, Unix, VMS and Windows.
Built-in macro language; extensible plugin architecture. Dozens of macros and plugins available.
Plugins can be downloaded and installed from within jEdit using the plugin manager feature.
Auto indent, and syntax highlighting for more than 130 languages.
Supports a large number of character encodings including UTF8 and Unicode.
Folding for selectively hiding regions of text.
Word wrap.
Highly configurable and customizable.
Every other feature, both basic and advanced, you would expect to find in a text editor.
14

TealInfoDB: Unix SysLog Reference 1.0


pda Desktop Shell->Linux FREE
View Detail
Download TealInfoDB: Unix SysLog Reference 1.0Download TealInfoDB: Unix SysLog Reference 1.0
6.00 KB
TealInfoDB: Unix SysLog Reference is a folio to decode and cross-reference Unix SysLog code values.


15

Seismic Unix 4.0


linux Science and Engineering->Visualization Free
View Detail
Download Seismic Unix 4.0Download Seismic Unix 4.0
10.7 MB
The CWP/SU Seixmic Un*x (SU) package is a software environment for seismic processing and seismic and wave-propagation related research.

Seismic Unix project is used not only in seismology but in other areas involving time-dependent data, such as Ground Penetrating RADAR.

Installation:

1) read the READMEs before unbundling cwp.su.all.xx.tar.Z

2) dont install as root (the superuser) (It is possible to damage a systems file structure if the install is not done properly.)

3) begin with the compressed tarfile cwp.su.all.xx.tar.Z in /your/root/path

4) set the CWPROOT environment variable to CWPROOT=/your/root/path

5) put /your/root/path/bin on your working shell path

6) uncompress and untar the compressed tarfile via:

zcat cwp.su.all.xx.tar.Z | tar -xvf -

The code will appear as the single directory /your/root/path/src

7) compile codes via:

cd /your/root/path/src

1) edit the file /your/root/path/src/Makefile.config to agree with the needs of your system.

2) type:

make install (to install the basic set of codes)
make xtinstall (to install the X-toolkit applications)
make finstall (to install the Fortran codes)
make mglinstall (to install the Mesa/ Open GL items) (experimental)
make utils (to install libcwputils) (nonessential)
make xminstall (to install the Motif application)(nonessential)
make sfinstall (to install an improved version of SEGDREAD)

or if remaking:

type: make remake (to remake the basic set of codes)
make xtremake (to remake the X-toolkit applications)
make finstall (to install the Fortran codes)
make mglremake (to install the Mesa/ Open GL items)(experimental)
make uremake (to remake libcwputils.a)(nonessential)(nonessential)
make xmremake (to remake the Motif-based applications)(nonessential)
make sfremake (to remake the improved version of SEGDREAD)

You may have to do some hacking along the way, if the codes fail to compile the first time through. In this event, you may simply type "make" in the directory where you were modifying code. If code appears to have been missed, you may need to
use the "remaking" options.

A screen dump of a successfull install of the current version of the codes on a RedHat Linux based PC is located in the file: "install.successfull"

Whats New in This Release:

· This version added functions for converting stiffnesses to velocities, replacing lobes on seismic data with a spike of height scaled by the area of the lobe, and carrying out deconvolution by complex division in the frequency domain.
· There were also many code speedups, cleanups, and bugfixes.


16

DateTime::Format::Epoch::Unix 0.10


linux Programming->Libraries Free
View Detail
Download DateTime::Format::Epoch::Unix 0.10Download DateTime::Format::Epoch::Unix 0.10
0.017 MB
DateTime::Format::Epoch::Unix is a Perl module that can convert DateTimes to/from Unix epoch seconds.

SYNOPSIS

use DateTime::Format::Epoch::Unix;

my $dt = DateTime::Format::Epoch::Unix->parse_datetime( 1051488000 );
# 2003-04-28T00:00:00

DateTime::Format::Epoch::Unix->format_datetime($dt);
# 1051488000

my $formatter = DateTime::Format::Epoch::Unix->new();
my $dt2 = $formatter->parse_datetime( 1051488000 );
$formatter->format_datetime($dt2);

This module can convert a DateTime object (or any object that can be converted to a DateTime object) to the number of seconds since the Unix epoch.


17

Interactive UNIX Tutorial 1.20


windows Software Development->Help File Tools $20
View Detail
Download Interactive UNIX Tutorial 1.20Download Interactive UNIX Tutorial 1.20
355KB

L-nix is an interactive UNIX tutorial program that teaches beginner to advanced
concepts of the UNIX operating system. L-nix is ideal for anyone interested in learning UNIX commands.
The trial version of L-Nix contains 10 modules covering:
Introduction to UNIX
File characteristics
Korn shell customization
Processes and linking
Command substitutions
Finding files, and more.
The complete version of L-nix provides nine additional modules:
UNIX and Files
Directories
Introduction to the Korn shell
Redirection and Pipes
Useful Tools
Communicating with Other Users
Kornshell Programming
Features:
Contains simple UNIX shell simulation
Can try out UNIX commands as they are learned
Short optional tests
18

Boson Unix Tests 3.38


windows Business Finance->Educational Tools $29.95
View Detail
Download Boson Unix Tests 3.38Download Boson Unix Tests 3.38
2,734K
This practice test contains 200+ questions to help the student prepare for Linux or Solaris Unix certification.

19

UNIX User Password Modifier 1.10


windows Network Tools->Network Tools Suites $49.00
View Detail
Download UNIX User Password Modifier 1.10Download UNIX User Password Modifier 1.10
1014 KB
UNIX User Password Modifier (2UPM) is a Windows application which is designed for batch modifying, generating, initializing and managing the user passwords on the various UNIX/Linux hosts. It may be useful for the UNIX/Linux system administrators, programmers and general users, specially, if you manage or use many UNIX/Linux hosts, you will find it to be very useful.
20

Convert Unix Time 1.3


windows Windows Widgets->Alarms Clocks Free
View Detail
Download Convert Unix Time 1.3Download Convert Unix Time 1.3
66 KB
Convert Unix Time is a clock widget which will convert Unix time-stamps to various other time formats, including Local Time, Universal Time, NTP Time, Internet Time, Julian Date, and GPS Week.

It can also function as a clock in any of its time formats.


My Software


You have not saved any software. Click "Save" next to each software to save it to your software basket


Related Search