nfs
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 118
FreeNAS 0.685 Beta 2
FreeNAS is a free implementation of a minimal FreeBSD distribution. more>>
FreeNAS is a free implementation of a minimal FreeBSD distribution(for run it on a Compact Flash, CD-ROM or USB key) that provide NAS (Network-Attached Storage) services, supporting: CIFS, FTP, NFS protocols, with a Full WEB configuration interface.
The minimal FreeBSD distribution, Web interface,PHP scripts and documentations are based on M0n0wall.
<<lessThe minimal FreeBSD distribution, Web interface,PHP scripts and documentations are based on M0n0wall.
Download (38.1MB)
Added: 2007-08-06 License: BSD License Price:
499 downloads
Other version of FreeNAS
License:Freeware
FreeNAS 0.69b4 / 0.686.4 Stable
A Free NAS server that supports FTP, NFS protocols, Software RAID more>>
FreeNAS 0.69b4 / 0.686.4 Stable gives a program which is to support FTP, NFS protocols, Software RAID(0,1,5) with a Full WEB configuration interface. It takes less than 16MB once installed on Compact Flash, hard drive or USB key.
Enhancements:
- Upgrade to FreeBSD 6.4.
- Upgrade rsync to 3.0.4.
- Upgrade PHPMailer to 2.2.1.
- Upgrade Transmission to 1.34.
- Minors changes:
- Add new attribute Temporary directory to UPnP WebGUI to define a directory used to store temporary trans-coded files.
- Modify /etc/rc.d/samba script.
- Add Who combo-box to RSYNC client/local jobs to select user which is used to execute this job.
- Add Enable check-box to RSYNC client/local jobs to enable/disable them (FR 2123243).
- Add hw.ata.to=15 to sys-ctrl to prevent TIMEOUT WRITE_DMA errors, e.g. when using APM for hard drives (FR 2101811).
- Bug fixes:
- Fix bug in zone-info port.
- Remove Samba --with-utmp build parameter. It causes a crash when accessing shares (BR 2118240).
- Fix bug in Samba Make-file which causes various problems, e.g. it was not possible to join an AD domain.
Requirements: none
Download (59.3MB)
Added: 2008-10-01 License: Freeware Price: FREE
19 downloads
OpenVZ kernel 2.6.18-028stab039.1
OpenVZ is a modified Linux kernel with additional support for OpenVZ Virtual Private servers (VPS). more>>
OpenVZ is a modified Linux kernel with additional support for OpenVZ Virtual Private servers (VPS).
VPSs are isolated, secure environments on a single physical server, enabling better server utilization and ensuring that applications do not conflict.
Each VPS performs and executes exactly like a stand-alone server; VPSs can be rebooted independently and have root access, users, IP addresses, memory, processes, files, applications, system libraries, and configuration files. OpenVZ is a subset of Virtuozzo.
Whats New in 2.6.18-028stab039.1 Stable Release:
- A critical fix in CPT. Minor fixes for bridge, XEN x8664, CPT, 4GB split, NFS, VPIDs, etc.
- Fixes for swsusp on SLES, CBQ fairness on low rates, and an NFS startup deadlock.
Whats New in 2.6.18-028test027.1 Development Release:
- Fixes/improvements in checkpointing, NFS in VE, IOPRIO, and the CPU fair scheduler.
- A few fixes have been ported from the mainstream branch.
- The NMI watchdog is now disabled by default.
- DRBD has been updated to 8.0.
<<lessVPSs are isolated, secure environments on a single physical server, enabling better server utilization and ensuring that applications do not conflict.
Each VPS performs and executes exactly like a stand-alone server; VPSs can be rebooted independently and have root access, users, IP addresses, memory, processes, files, applications, system libraries, and configuration files. OpenVZ is a subset of Virtuozzo.
Whats New in 2.6.18-028stab039.1 Stable Release:
- A critical fix in CPT. Minor fixes for bridge, XEN x8664, CPT, 4GB split, NFS, VPIDs, etc.
- Fixes for swsusp on SLES, CBQ fairness on low rates, and an NFS startup deadlock.
Whats New in 2.6.18-028test027.1 Development Release:
- Fixes/improvements in checkpointing, NFS in VE, IOPRIO, and the CPU fair scheduler.
- A few fixes have been ported from the mainstream branch.
- The NMI watchdog is now disabled by default.
- DRBD has been updated to 8.0.
Download (11MB)
Added: 2007-07-31 License: GPL (GNU General Public License) Price:
815 downloads
Web 1.35
Web Perl module contains a set of useful routines for many webworking purposes. more>>
Web Perl module contains a set of useful routines for many webworking purposes.
This module was primarily made for UNIX/Linux-Systems. Parts of it cannot be used on other systems. E.g. the procedures for file locking demand systems that can use symlinks. If you use the modul on systems where symlinks cannot be used, fatal errors may happen.
ABSTRACT
This perl module serves users with several useful routines for many purposes, like generating webpages, processing CGI scripts, working with XML datafiles and net-connections. It also uses own variants of routines, that was invented first in the famous libraries CGI.pm and cgi-lib.pl.
INSTALLATION
If you dont have sufficient privileges to install web.pm in the Perl library directory, you can put web.pm into some convenient spot, such as your home directory, or in cgi-bin itself and prefix all Perl scripts that call it with something along the lines of the following preamble:
use lib /home/myname/perl/lib;
use web;
NLock
This routine allows to set a filelock across NFS-boundaries. The common used perl-routine flock() fails at this point, so this routine is a useable alternative for bigger file-systems. It uses the modular functions link() and unlink() to mark a file locked. In addition to this, it also gives the locked file a counter: A file that is locked for more than $web::MAX_LOCKTIME seconds will be freed by the next process that calls NLock() on this file. A calling process gets either 0 or 1 as a return value, where 1 is returned if the file-locking was successful. 0 is returned only if the process waits for more than $web::MAX_WAITLOCK seconds or if symlink() fails.
Example 1:
$filename = "data.txt";
NLock($filename);
open(f1,"$filename");
# do something
close f1;
NUnlock($filename);
Example 2:
#!/local/bin/perl5
use web;
$stat= &NLock("jump.pl");
print "Lock: stat= $statn";
$stat= &NLock("jump.pl");
print "Lock this file again: stat= $statn";
sleep 8;
$stat= &NLock("jump.pl");
print "Lock this file again: stat= $statn";
$stat= &NUnlock("jump.pl");
print "Unlock: stat= $statn";
exit;
<<lessThis module was primarily made for UNIX/Linux-Systems. Parts of it cannot be used on other systems. E.g. the procedures for file locking demand systems that can use symlinks. If you use the modul on systems where symlinks cannot be used, fatal errors may happen.
ABSTRACT
This perl module serves users with several useful routines for many purposes, like generating webpages, processing CGI scripts, working with XML datafiles and net-connections. It also uses own variants of routines, that was invented first in the famous libraries CGI.pm and cgi-lib.pl.
INSTALLATION
If you dont have sufficient privileges to install web.pm in the Perl library directory, you can put web.pm into some convenient spot, such as your home directory, or in cgi-bin itself and prefix all Perl scripts that call it with something along the lines of the following preamble:
use lib /home/myname/perl/lib;
use web;
NLock
This routine allows to set a filelock across NFS-boundaries. The common used perl-routine flock() fails at this point, so this routine is a useable alternative for bigger file-systems. It uses the modular functions link() and unlink() to mark a file locked. In addition to this, it also gives the locked file a counter: A file that is locked for more than $web::MAX_LOCKTIME seconds will be freed by the next process that calls NLock() on this file. A calling process gets either 0 or 1 as a return value, where 1 is returned if the file-locking was successful. 0 is returned only if the process waits for more than $web::MAX_WAITLOCK seconds or if symlink() fails.
Example 1:
$filename = "data.txt";
NLock($filename);
open(f1,"$filename");
# do something
close f1;
NUnlock($filename);
Example 2:
#!/local/bin/perl5
use web;
$stat= &NLock("jump.pl");
print "Lock: stat= $statn";
$stat= &NLock("jump.pl");
print "Lock this file again: stat= $statn";
sleep 8;
$stat= &NLock("jump.pl");
print "Lock this file again: stat= $statn";
$stat= &NUnlock("jump.pl");
print "Unlock: stat= $statn";
exit;
Download (0.017MB)
Added: 2007-07-21 License: Perl Artistic License Price:
864 downloads
JFtp 1.50
JFtp is a graphical Java network and file transfer client. more>>
JFtp is a Swing Java network and file transfer client. It supports FTP using its own FTP API and various other protocols like SMB, SFTP, NFS, HTTP, and file I/O using third party APIs.
The FTP API is separated from the GUI and can also be used in third-party applications. It should ideally be launched in a Web browser via Java Web Start (contained by the Java 1.4 plugin), but can also be started locally.
JFtp supports FTP using its own FTP API and various other protocols like SMB, SFTP, NFS, HTTP, and file I/O using third party APIs, includes many advanced features such as recursive directory up/download, browsing FTP servers while transferring files, FTP
You can also have more than one connection open at a time in a mozilla-style tabbed browsing environment.
The FTP API is separated from the GUI and can also be used in third-party applications.
It should ideally be launched in a Web browser via Java Web Start (contained by the Java 1.4 plugin), but can also be started locally.
JFtp is free and distributed under the GNU public license. The API is dual licensed, you may use it under the GPL in your project or negotiate with me about a commercial license.
Main features:
- recursive directory up/download
- browsing FTP servers while transferring files
- FTP resuming and queueing
- browsing the LAN for Windows shares
- and more...
Enhancements:
- This release includes UI improvements, sftp support usings jsch (in addition to j2ssh), and lots of bugfixes.
<<lessThe FTP API is separated from the GUI and can also be used in third-party applications. It should ideally be launched in a Web browser via Java Web Start (contained by the Java 1.4 plugin), but can also be started locally.
JFtp supports FTP using its own FTP API and various other protocols like SMB, SFTP, NFS, HTTP, and file I/O using third party APIs, includes many advanced features such as recursive directory up/download, browsing FTP servers while transferring files, FTP
You can also have more than one connection open at a time in a mozilla-style tabbed browsing environment.
The FTP API is separated from the GUI and can also be used in third-party applications.
It should ideally be launched in a Web browser via Java Web Start (contained by the Java 1.4 plugin), but can also be started locally.
JFtp is free and distributed under the GNU public license. The API is dual licensed, you may use it under the GPL in your project or negotiate with me about a commercial license.
Main features:
- recursive directory up/download
- browsing FTP servers while transferring files
- FTP resuming and queueing
- browsing the LAN for Windows shares
- and more...
Enhancements:
- This release includes UI improvements, sftp support usings jsch (in addition to j2ssh), and lots of bugfixes.
Download (3.5MB)
Added: 2007-07-20 License: GPL (GNU General Public License) Price:
935 downloads
openQRM Plug-ins 0.9
openQRM Plug-ins is a collection of community-supported plug-ins that enable openQRM to manage other enterprise software. more>>
openQRM Plug-ins is a collection of community-supported plug-ins that enable openQRM to manage other enterprise and open source software.
openQRM is designed to deal with all sorts of failures automatically, thus preventing interrupts because of unexpected events.
Implementing openQRM greatly improves the reliability of the x86 data-center.
openQRM is an open source systems management platform which integrates with existing components in enterprise data centers to create scalable, highly available and customizable infrastructures.
openQRM is derived from a proven commercial product and distributed as an open source project through SourceForge, using a modified Mozilla Public License.
openQRMs architecture extends to and embraces other existing data center technologies through "plug-ins."The openQRM project team has created a number of plug-ins for broadly-used open source projects and proprietary solutions, and seeks to recruit community members to assist in additional plug-ins.
openQRM leverages the proven technologies of PXE and NFS along with storing images on central storage to effectively manage the data center.
The project team aims to set the standard in data center management by continuing to provide a "premiere" enterprise-grade project for automating IT infrastructure, and by embracing other technologies through increasing our offering of plug-ins.
OpenQRM.org is the best destination for our projects community to share ideas and innovations. Contributed by Qlusters, openQRM.org offers a range of support and information services to benefit all users of openQRM, including implementation advice, user forums and customer feedback.
<<lessopenQRM is designed to deal with all sorts of failures automatically, thus preventing interrupts because of unexpected events.
Implementing openQRM greatly improves the reliability of the x86 data-center.
openQRM is an open source systems management platform which integrates with existing components in enterprise data centers to create scalable, highly available and customizable infrastructures.
openQRM is derived from a proven commercial product and distributed as an open source project through SourceForge, using a modified Mozilla Public License.
openQRMs architecture extends to and embraces other existing data center technologies through "plug-ins."The openQRM project team has created a number of plug-ins for broadly-used open source projects and proprietary solutions, and seeks to recruit community members to assist in additional plug-ins.
openQRM leverages the proven technologies of PXE and NFS along with storing images on central storage to effectively manage the data center.
The project team aims to set the standard in data center management by continuing to provide a "premiere" enterprise-grade project for automating IT infrastructure, and by embracing other technologies through increasing our offering of plug-ins.
OpenQRM.org is the best destination for our projects community to share ideas and innovations. Contributed by Qlusters, openQRM.org offers a range of support and information services to benefit all users of openQRM, including implementation advice, user forums and customer feedback.
Download (18.4MB)
Added: 2006-05-03 License: MPL (Mozilla Public License) Price:
1270 downloads
Other version of openQRM Plug-ins
License:MPL (Mozilla Public License)
License:MPL (Mozilla Public License)
License:MPL (Mozilla Public License)
License:GPL (GNU General Public License)
License:MPL (Mozilla Public License)
License:MPL (Mozilla Public License)
plptools 0.18
plptools is a set of libraries and utilities for enabling Unix (mainly Linux) systems to communicate with a Psion palmtop. more>>
plptools is a set of libraries and utilities for enabling Unix (mainly Linux) systems to communicate with a Psion palmtop over a serial line. On Linux, a connection over IrDA using the IrCOMM feature is also possible.
The following (console-based) tools are part of the package: plpbackup, a command-line backup program. plpftp, a FTP-like frontend with some extensions. sisinstall, a SIS package installer. plpnfsd, a daemon providing the Psions file services via an NFS-mounted directory. and plpprintd, a print server for printing via a PC.
plptools libraries also includes the KDE 2/3 program kio_plp, a KIOslave which adds a new protocol "psion:/" to the list of known protocols of KDEs generic I/O library. This enables all KDE applications to deal with files on a Psion. There is a plugin for konquerors Properties dialog, a graphical frontend "KPsion" (similar to PsiWin), and a remote clipboard tool "Klipsi" (similar to CopyAnywhere).
Enhancements:
- This release fixes compilation with GCC 4.3, fixes a crash in sisinstall, and changes plpbackup so that it just backs up to and restores from a directory rather than a tarball.
<<lessThe following (console-based) tools are part of the package: plpbackup, a command-line backup program. plpftp, a FTP-like frontend with some extensions. sisinstall, a SIS package installer. plpnfsd, a daemon providing the Psions file services via an NFS-mounted directory. and plpprintd, a print server for printing via a PC.
plptools libraries also includes the KDE 2/3 program kio_plp, a KIOslave which adds a new protocol "psion:/" to the list of known protocols of KDEs generic I/O library. This enables all KDE applications to deal with files on a Psion. There is a plugin for konquerors Properties dialog, a graphical frontend "KPsion" (similar to PsiWin), and a remote clipboard tool "Klipsi" (similar to CopyAnywhere).
Enhancements:
- This release fixes compilation with GCC 4.3, fixes a crash in sisinstall, and changes plpbackup so that it just backs up to and restores from a directory rather than a tarball.
Download (1.2MB)
Added: 2007-07-07 License: GPL (GNU General Public License) Price:
840 downloads
PLoP Linux 3.5.7
PLoP Linux is a small distribution on a CD, DVD or USB flash drive / memory stick. more>>
PLoP Linux is a small distribution on a CD, DVD or USB flash drive / memory stick. PLoP Linux is designed to rescue data from a damaged system.
A antivirus is also in the package, view the feature list.
Main features:
- linux kernel is 2.6.13
- IDE, SATA, SCSI, and RAID support
- partimage to save or restore partitions
- proftpd server
- ssh connections
- samba connection
- nfs connection
- cryptsetup
- lot of network tools
- limited NTFS write support (see status new driver).
- clamav
- linux antivirus for windows from antivir personal edition.
- this antivirus is free for personal and non-commercial use only
- You need a generated key from the download page. Key generation is free for personal and non-commercial use.
- Network connections to windows network shares, ftp servers, web servers or ssh connections.
- Boot from cd, dvd or usb media
- Boot with floppy to usb, cd or dvd media
- supports wlan cards
- you can add you own windows tools in a seperated folder
- mp3blaster and mplayer are also there
<<lessA antivirus is also in the package, view the feature list.
Main features:
- linux kernel is 2.6.13
- IDE, SATA, SCSI, and RAID support
- partimage to save or restore partitions
- proftpd server
- ssh connections
- samba connection
- nfs connection
- cryptsetup
- lot of network tools
- limited NTFS write support (see status new driver).
- clamav
- linux antivirus for windows from antivir personal edition.
- this antivirus is free for personal and non-commercial use only
- You need a generated key from the download page. Key generation is free for personal and non-commercial use.
- Network connections to windows network shares, ftp servers, web servers or ssh connections.
- Boot from cd, dvd or usb media
- Boot with floppy to usb, cd or dvd media
- supports wlan cards
- you can add you own windows tools in a seperated folder
- mp3blaster and mplayer are also there
Download (71.1MB)
Added: 2007-06-25 License: GPL (GNU General Public License) Price:
858 downloads
Apache Lucene 2.2.0
Apache Lucene is a high-performance, full-featured text search engine library written entirely in Java. more>>
Apache Lucene is a high-performance, full-featured text search engine library written entirely in Java.
Apache Lucene is a technology suitable for nearly any application that requires full-text search, especially cross-platform.
Enhancements:
- Many new features, optimizations, and bugfixes have been added since 2.1.0, including "point-in-time" searching over NFS, payloads, function queries, and new APIs for pre-analyzed fields.
- This release includes index format changes that are not readable by older versions.
- It can both read and update older Lucene indexes.
- Adding to an index with an older format will cause it to be converted to the newer format.
<<lessApache Lucene is a technology suitable for nearly any application that requires full-text search, especially cross-platform.
Enhancements:
- Many new features, optimizations, and bugfixes have been added since 2.1.0, including "point-in-time" searching over NFS, payloads, function queries, and new APIs for pre-analyzed fields.
- This release includes index format changes that are not readable by older versions.
- It can both read and update older Lucene indexes.
- Adding to an index with an older format will cause it to be converted to the newer format.
Download (2.5MB)
Added: 2007-06-21 License: The Apache License 2.0 Price:
880 downloads
GXemul 0.4.6
GXemul is a machine emulator Im developing in my spare time. more>>
GXemul is a machine emulator Im developing in my spare time.
GXemul project emulates processors and surrounding hardware components, in some cases well enough to allow unmodified "guest" operating systems to run inside the emulator as if they were running on a real machine.
MIPS:
- Several machine types are emulated well enough to run guest operating systems. NetBSD, OpenBSD, Linux, and even obscure things such as Ultrix and Sprite can run, to various degrees.
ARM:
- CATS is emulated well enough to run NetBSD and OpenBSD as guest OSes.
PowerPC:
- NetBSD/prep can run (experimental).
The emulator can be used for:
- experimenting with operating systems which you have not tried yet, or operating systems for hardware which you might not have access to,
- running guest operating systems for historical purposes, e.g. Ultrix or Sprite,
developing portable software, when you want yet another target platform to try to compile your software on (you can use GXemul to run a guest OS and compile your software inside that OS),
- development of new firmware or operating system code (but then you need to be aware of some limitations),
- educational purposes...
Enhancements:
- NetBSD/pmppc can now run in the emulator (with root on NFS).
- For ARM emulation (with NetBSD/cats, OpenBSD/cats, NetBSD/evbarm, or NetBSD/netwinder as the guest OS), the emulator does not use 100% of the hosts CPU if the guest OS is idle.
<<lessGXemul project emulates processors and surrounding hardware components, in some cases well enough to allow unmodified "guest" operating systems to run inside the emulator as if they were running on a real machine.
MIPS:
- Several machine types are emulated well enough to run guest operating systems. NetBSD, OpenBSD, Linux, and even obscure things such as Ultrix and Sprite can run, to various degrees.
ARM:
- CATS is emulated well enough to run NetBSD and OpenBSD as guest OSes.
PowerPC:
- NetBSD/prep can run (experimental).
The emulator can be used for:
- experimenting with operating systems which you have not tried yet, or operating systems for hardware which you might not have access to,
- running guest operating systems for historical purposes, e.g. Ultrix or Sprite,
developing portable software, when you want yet another target platform to try to compile your software on (you can use GXemul to run a guest OS and compile your software inside that OS),
- development of new firmware or operating system code (but then you need to be aware of some limitations),
- educational purposes...
Enhancements:
- NetBSD/pmppc can now run in the emulator (with root on NFS).
- For ARM emulation (with NetBSD/cats, OpenBSD/cats, NetBSD/evbarm, or NetBSD/netwinder as the guest OS), the emulator does not use 100% of the hosts CPU if the guest OS is idle.
Download (1.5MB)
Added: 2007-06-17 License: BSD License Price:
862 downloads
OpenVZ kernel 2.6.18-8.1.4.el5 028stab035.1 (RHEL5 2.6.18)
OpenVZ project is an Operating System-level server virtualization solution, built on Linux. more>>
OpenVZ is a modified Linux kernel with additional support for OpenVZ Virtual Private servers (VPS).
VPSs are isolated, secure environments on a single physical server, enabling better server utilization and ensuring that applications do not conflict.
Each VPS performs and executes exactly like a stand-alone server; VPSs can be rebooted independently and have root access, users, IP addresses, memory, processes, files, applications, system libraries, and configuration files. OpenVZ is a subset of Virtuozzo.
Enhancements:
- Re-based on the RHEL5 8.1.4 kernel.
- Mainstream security fixes.
- Many improvements, some optimizations, and many fixes here and there (CFQ, NFS, UBC, CPT, FUSE, ioprio, and fairsched). DRBD has been updated to 8.0.3. Xen/OpenVZ fixes to run RHEL5 in Dom0/U, and fixes for SPARC and PPC.
<<lessVPSs are isolated, secure environments on a single physical server, enabling better server utilization and ensuring that applications do not conflict.
Each VPS performs and executes exactly like a stand-alone server; VPSs can be rebooted independently and have root access, users, IP addresses, memory, processes, files, applications, system libraries, and configuration files. OpenVZ is a subset of Virtuozzo.
Enhancements:
- Re-based on the RHEL5 8.1.4 kernel.
- Mainstream security fixes.
- Many improvements, some optimizations, and many fixes here and there (CFQ, NFS, UBC, CPT, FUSE, ioprio, and fairsched). DRBD has been updated to 8.0.3. Xen/OpenVZ fixes to run RHEL5 in Dom0/U, and fixes for SPARC and PPC.
Download (MB)
Added: 2007-06-15 License: GPL (GNU General Public License) Price:
529 downloads
Solaris::MapDev 0.05a
Solaris::MapDev Perl module contains a map between instance numbers and device names. more>>
Solaris::MapDev Perl module contains a map between instance numbers and device names.
SYNOPSIS
use Solaris::MapDev qw(inst_to_dev dev_to_inst);
my $disk = inst_to_dev("sd0");
my $nfs = inst_to_dev("nfs123");
my $inst = dev_to_inst("c0t0d0s0");
mapdev_data_files(path_to_inst => "/copy/of/a/path_to_inst",
mnttab => "/copy/of/a/mnttab",
dev_ls => { "/dev/rdsk" => "ls-lR/of/dev_dsk",
"/dev/rmt" => "ls-lR/of/dev_rmt" });
my $tape = inst_to_dev("st1");
This module maps both ways between device instance names (e.g. sd0) and /dev entries (e.g. c0t0d0). Vanilla SCSI disks, SSA disks, A1000, A3000, A3500 and A5000 disks are all catered for, as are tape devices and NFS mounts.
FUNCTIONS
inst_to_dev($inst)
Return the device name name given the instance name
dev_to_inst($dev)
Return the instance name given the device name
get_inst_names
Return a sorted list of all the instance names
get_dev_names
Return a sorted list of all the device names
mapdev_data_files
This tells mapdev to use data held in copies of the real datafiles, rather than the current "live" files on the system. This is useful for example when examining explorer output. A list of key-value pairs is expected as the arguments. Valid keys-value pairs are:
path_to_inst => "/copy/of/a/path_to_inst",
A valid path_to_inst file. This is mandatory.
mnttab => "/copy/of/a/mnttab",
A valid /etc/mnttab file. This is optional - if not
specified, no information on NFS devices will be displayed.
dev_ls => { "/dir/path" => "/ls-lR/of/dir/path",
... });
A hash containing path/datafile pairs. The paths should
be one of /dev/rdsk, /dev/osa/rdsk, /dev/osa/dev/rdsk or
/dev/rmt. The datafiles should be the output of a "ls -l"
of the specified directory. A single file containing a
recursive "ls -Rl" of /dev is also acceptable.
mapdev_system_files
This tells mapdev to revert to using the current "live" datafiles on the system - see "mapdev_data_files()"
<<lessSYNOPSIS
use Solaris::MapDev qw(inst_to_dev dev_to_inst);
my $disk = inst_to_dev("sd0");
my $nfs = inst_to_dev("nfs123");
my $inst = dev_to_inst("c0t0d0s0");
mapdev_data_files(path_to_inst => "/copy/of/a/path_to_inst",
mnttab => "/copy/of/a/mnttab",
dev_ls => { "/dev/rdsk" => "ls-lR/of/dev_dsk",
"/dev/rmt" => "ls-lR/of/dev_rmt" });
my $tape = inst_to_dev("st1");
This module maps both ways between device instance names (e.g. sd0) and /dev entries (e.g. c0t0d0). Vanilla SCSI disks, SSA disks, A1000, A3000, A3500 and A5000 disks are all catered for, as are tape devices and NFS mounts.
FUNCTIONS
inst_to_dev($inst)
Return the device name name given the instance name
dev_to_inst($dev)
Return the instance name given the device name
get_inst_names
Return a sorted list of all the instance names
get_dev_names
Return a sorted list of all the device names
mapdev_data_files
This tells mapdev to use data held in copies of the real datafiles, rather than the current "live" files on the system. This is useful for example when examining explorer output. A list of key-value pairs is expected as the arguments. Valid keys-value pairs are:
path_to_inst => "/copy/of/a/path_to_inst",
A valid path_to_inst file. This is mandatory.
mnttab => "/copy/of/a/mnttab",
A valid /etc/mnttab file. This is optional - if not
specified, no information on NFS devices will be displayed.
dev_ls => { "/dir/path" => "/ls-lR/of/dir/path",
... });
A hash containing path/datafile pairs. The paths should
be one of /dev/rdsk, /dev/osa/rdsk, /dev/osa/dev/rdsk or
/dev/rmt. The datafiles should be the output of a "ls -l"
of the specified directory. A single file containing a
recursive "ls -Rl" of /dev is also acceptable.
mapdev_system_files
This tells mapdev to revert to using the current "live" datafiles on the system - see "mapdev_data_files()"
Download (0.024MB)
Added: 2007-06-13 License: GPL (GNU General Public License) Price:
865 downloads
Mondo Rescue 2.2.4
Mondo it backs up your GNU/Linux server or workstation to tape, CD-R, CD-RW, NFS or hard disk partition. more>>
Mondo it backs up your GNU/Linux server or workstation to tape, CD-R, CD-RW, NFS or hard disk partition. In the event of catastrophic data loss, you will be able to restore all of your data [or as much as you want], from bare metal if necessary.
Mondo is in use by Lockheed-Martin, Nortel Networks, Siemens, HP (US and France), IBM, NASAs JPL, the US Dept of Agriculture, dozens of smaller companies, and tens of thousands of users.
Mondo is comprehensive. Mondo supports LVM, RAID, ext2, ext3, JFS, XFS, ReiserFS, VFAT, and can support additional filesystems easily: just e-mail the mailing list with your request. It supports adjustments in disk geometry, including migration from non-RAID to RAID. Mondo runs on all major Linux distributions and is getting better all the time. You may even use it to backup non-Linux partitions, such as NTFS.
Mondo is free! It has been published under the GPL (GNU Public License), partly to expose it to thousands of potential beta-testers but mostly as a contribution to the Linux community. I charge for 1-to-1 technical support to fund Mondos development.
<<lessMondo is in use by Lockheed-Martin, Nortel Networks, Siemens, HP (US and France), IBM, NASAs JPL, the US Dept of Agriculture, dozens of smaller companies, and tens of thousands of users.
Mondo is comprehensive. Mondo supports LVM, RAID, ext2, ext3, JFS, XFS, ReiserFS, VFAT, and can support additional filesystems easily: just e-mail the mailing list with your request. It supports adjustments in disk geometry, including migration from non-RAID to RAID. Mondo runs on all major Linux distributions and is getting better all the time. You may even use it to backup non-Linux partitions, such as NTFS.
Mondo is free! It has been published under the GPL (GNU Public License), partly to expose it to thousands of potential beta-testers but mostly as a contribution to the Linux community. I charge for 1-to-1 technical support to fund Mondos development.
Download (3.0MB)
Added: 2007-06-10 License: GPL (GNU General Public License) Price:
871 downloads
UDPcast 20070602
udpcast is an install software via UDP multicast. more>>
UDPcast project is a file transfer tool that can send data simultaneously to many destinations on a LAN. This can for instance be used to install entire classrooms of PCs at once.
The advantage of UDPcast over using other methods (nfs, ftp, whatever) is that UDPcast uses Ethernets multicast abilities: it wont take longer to install 15 machines than it would to install just 2.
UDPcast is released under the GPL 2.0 license.
UDPcast can be started from the included linuxrc boot disk for OS installations, or from the command line when using it for other purposes.
Enhancements:
- The kernel was upgraded to 2.6.21.3 and busybox was upgraded to 1.5.1.
- The code was adapted to Solaris 10 x86 by adding includes and configure checks.
- A patch was made to fix parallel make and make DESTDIR=/tmp/xxx install.
- gcc4 warnings were addressed.
<<lessThe advantage of UDPcast over using other methods (nfs, ftp, whatever) is that UDPcast uses Ethernets multicast abilities: it wont take longer to install 15 machines than it would to install just 2.
UDPcast is released under the GPL 2.0 license.
UDPcast can be started from the included linuxrc boot disk for OS installations, or from the command line when using it for other purposes.
Enhancements:
- The kernel was upgraded to 2.6.21.3 and busybox was upgraded to 1.5.1.
- The code was adapted to Solaris 10 x86 by adding includes and configure checks.
- A patch was made to fix parallel make and make DESTDIR=/tmp/xxx install.
- gcc4 warnings were addressed.
Download (0.13MB)
Added: 2007-06-04 License: GPL (GNU General Public License) Price:
544 downloads
nfswatch 4.99.9
nfswatch monitors all incoming network traffic on an NFS file server and divides it into several categories. more>>
nfswatch monitors all incoming network traffic to an NFS file server and divides it into several categories.
The number and percentage of packets received in each category is displayed on the screen in a continuously updated display. The screen is updated every ten seconds by default.
Enhancements:
- This release improves file handle decoding on Linux.
- In particular, filesystems exported through a specified filesystem ID (the fsid= export option) should now be properly handled.
- Some more runtime analysis and tweaks were performed, and nfswatch should no longer clutter the display with debug info.
<<lessThe number and percentage of packets received in each category is displayed on the screen in a continuously updated display. The screen is updated every ten seconds by default.
Enhancements:
- This release improves file handle decoding on Linux.
- In particular, filesystems exported through a specified filesystem ID (the fsid= export option) should now be properly handled.
- Some more runtime analysis and tweaks were performed, and nfswatch should no longer clutter the display with debug info.
Download (0.050MB)
Added: 2007-05-30 License: BSD License Price:
879 downloads
Secleted [ 0 ] software to compare
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above nfs search only lists software in full, demo and trial versions for free download. Download links are directly from our mirror sites or publisher sites, torrent files or links from rapidshare.com, yousendit.com or megaupload.com are not allowed