tools
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 4253
More Tools Menu 1.2.1
An extension which moves new items to More Tools menu more>>
More Tools Menu 1.2.1 provides you with an excellent and powerful extension which can move new items to "More Tools" menu. Unclutter the "Tools" menu by moving new items to a "More Tools" menu.
Enhancements: Rewrite tools moving logic again, this time taking compatibility with toolbar customization into account. (#290)
Requirements: Mozilla Firefox
Added: 2009-07-06 License: MPL Price: FREE
13 downloads
Other version of More Tools Menu
Price: FREE
License:MPL
License:MPL

Gamer Tools 0.4.0
Gamer Tools offers you a powerful and easy-to-use Mozilla Firefox extension with many tools, which is designed for video game addicts. more>> Gamer Tools 0.4.0 offers you a powerful and easy-to-use Mozilla Firefox extension with many tools, which is designed for video game addicts. Includes a game server browser, PunkBuster screenshot browser and status information viewer for All-Seeing-Eye, GameSpy, Half-Life, Quake, and Source servers.<<less
Added: 2007-12-10 License: Other/Proprietary Li... Price: FREE
1 downloads
HA-Tools 2.00
HA-Tools provide some programs to improve shell scripting in a High Availability environment. more>>
HA-Tools provide some programs to improve shell scripting in a High Availability environment.
The halockrun program provides a simple and reliable way to implement a locking in shell scripts. A typical usage for halockrun is to prevent cronjobs to run simultanously. halockrun uses a lock on a file via fcntl(2) which ensures the release of the lock even if the process gets killed via SIGKILL.
The hatimerun program provides a time-out mechanism which can be used from shell scripts.
Enhancements:
- This release features some extensions and clarifications about the exit codes returned by halockrun and hatimerun.
<<lessThe halockrun program provides a simple and reliable way to implement a locking in shell scripts. A typical usage for halockrun is to prevent cronjobs to run simultanously. halockrun uses a lock on a file via fcntl(2) which ensures the release of the lock even if the process gets killed via SIGKILL.
The hatimerun program provides a time-out mechanism which can be used from shell scripts.
Enhancements:
- This release features some extensions and clarifications about the exit codes returned by halockrun and hatimerun.
Download (0.15MB)
Added: 2007-08-19 License: GPL (GNU General Public License) Price:
801 downloads
Bio::Tools::CodonTable 1.4
Bio::Tools::CodonTable is a bioperl codon table object. more>>
Bio::Tools::CodonTable is a bioperl codon table object.
SYNOPSIS
# This is a read-only class for all known codon tables. The IDs are
# the ones used by nucleotide sequence databases. All common IUPAC
# ambiguity codes for DNA, RNA and animo acids are recognized.
# to use
use Bio::Tools::CodonTable;
# defaults to ID 1 "Standard"
$myCodonTable = Bio::Tools::CodonTable->new();
$myCodonTable2 = Bio::Tools::CodonTable -> new ( -id => 3 );
# change codon table
$myCodonTable->id(5);
# examine codon table
print join ( , "The name of the codon table no.", $myCodonTable->id(4),
"is:", $myCodonTable->name(), "n");
# translate a codon
$aa = $myCodonTable->translate(ACU);
$aa = $myCodonTable->translate(act);
$aa = $myCodonTable->translate(ytr);
# reverse translate an amino acid
@codons = $myCodonTable->revtranslate(A);
@codons = $myCodonTable->revtranslate(Ser);
@codons = $myCodonTable->revtranslate(Glx);
@codons = $myCodonTable->revtranslate(cYS, rna);
#boolean tests
print "Is a startn" if $myCodonTable->is_start_codon(ATG);
print "Is a termianatorn" if $myCodonTable->is_ter_codon(tar);
print "Is a unknownn" if $myCodonTable->is_unknown_codon(JTG);
Codon tables are also called translation tables or genetics codes since that is what they try to represent. A bit more complete picture of the full complexity of codon usage in various taxonomic groups presented at the NCBI Genetic Codes Home page.
CodonTable is a BioPerl class that knows all current translation tables that are used by primary nucleotide sequence databases (GenBank, EMBL and DDBJ). It provides methods to output information about tables and relationships between codons and amino acids.
This class and its methods recognized all common IUPAC ambiguity codes for DNA, RNA and animo acids. The translation method follows the conventions in EMBL and TREMBL databases.
It is a nuisance to separate RNA and cDNA representations of nucleic acid transcripts. The CodonTable object accepts codons of both type as input and allows the user to set the mode for output when reverse translating. Its default for output is DNA.
Note: This class deals primarily with individual codons and amino acids. However in the interest of speed you can translate longer sequence, too. The full complexity of protein translation is tackled by Bio::PrimarySeqI::translate.
<<lessSYNOPSIS
# This is a read-only class for all known codon tables. The IDs are
# the ones used by nucleotide sequence databases. All common IUPAC
# ambiguity codes for DNA, RNA and animo acids are recognized.
# to use
use Bio::Tools::CodonTable;
# defaults to ID 1 "Standard"
$myCodonTable = Bio::Tools::CodonTable->new();
$myCodonTable2 = Bio::Tools::CodonTable -> new ( -id => 3 );
# change codon table
$myCodonTable->id(5);
# examine codon table
print join ( , "The name of the codon table no.", $myCodonTable->id(4),
"is:", $myCodonTable->name(), "n");
# translate a codon
$aa = $myCodonTable->translate(ACU);
$aa = $myCodonTable->translate(act);
$aa = $myCodonTable->translate(ytr);
# reverse translate an amino acid
@codons = $myCodonTable->revtranslate(A);
@codons = $myCodonTable->revtranslate(Ser);
@codons = $myCodonTable->revtranslate(Glx);
@codons = $myCodonTable->revtranslate(cYS, rna);
#boolean tests
print "Is a startn" if $myCodonTable->is_start_codon(ATG);
print "Is a termianatorn" if $myCodonTable->is_ter_codon(tar);
print "Is a unknownn" if $myCodonTable->is_unknown_codon(JTG);
Codon tables are also called translation tables or genetics codes since that is what they try to represent. A bit more complete picture of the full complexity of codon usage in various taxonomic groups presented at the NCBI Genetic Codes Home page.
CodonTable is a BioPerl class that knows all current translation tables that are used by primary nucleotide sequence databases (GenBank, EMBL and DDBJ). It provides methods to output information about tables and relationships between codons and amino acids.
This class and its methods recognized all common IUPAC ambiguity codes for DNA, RNA and animo acids. The translation method follows the conventions in EMBL and TREMBL databases.
It is a nuisance to separate RNA and cDNA representations of nucleic acid transcripts. The CodonTable object accepts codons of both type as input and allows the user to set the mode for output when reverse translating. Its default for output is DNA.
Note: This class deals primarily with individual codons and amino acids. However in the interest of speed you can translate longer sequence, too. The full complexity of protein translation is tackled by Bio::PrimarySeqI::translate.
Download (4.7MB)
Added: 2007-08-15 License: Perl Artistic License Price:
801 downloads
KDVD-RAM Tools 0.4 RC1
KDVD-RAM Tools are a combination with service menu, shell script and kdialog. more>>
All I wanted is a simple way to format DVD-RAM, create UDF filesystems, set or remove the write protection and informations about the DVD-RAM.
KDVD-RAM Tools are a combination with service menu, shell script and kdialog.
<<lessKDVD-RAM Tools are a combination with service menu, shell script and kdialog.
Download (1.9MB)
Added: 2007-08-12 License: GPL (GNU General Public License) Price:
495 downloads
Template::Tools::ttree 2.19
Template::Tools::ttree module can process entire directory trees of templates. more>>
Template::Tools::ttree module can process entire directory trees of templates.
SYNOPSIS
ttree [options] [files]
The ttree script is used to process entire directory trees containing template files. The resulting output from processing each file is then written to a corresponding file in a destination directory. The script compares the modification times of source and destination files (where they already exist) and processes only those files that have been modified. In other words, it is the equivalent of make for the Template Toolkit.
It supports a number of options which can be used to configure behaviour, define locations and set Template Toolkit options. The script first reads the .ttreerc configuration file in the HOME directory, or an alternative file specified in the TTREERC environment variable. Then, it processes any command line arguments, including any additional configuration files specified via the -f (file) option.
The .ttreerc Configuration File
When you run ttree for the first time it will ask you if you want it to create a .ttreerc file for you. This will be created in your home directory.
$ ttree
Do you want me to create a sample .ttreerc file for you?
(file: /home/abw/.ttreerc) [y/n]: y
/home/abw/.ttreerc created. Please edit accordingly and re-run ttree
The purpose of this file is to set any global configuration options that you want applied every time ttree is run. For example, you can use the ignore and copy option to provide regular expressions that specify which files should be ignored and which should be copied rather than being processed as templates. You may also want to set flags like verbose and recurse according to your preference.
A minimal .ttreerc:
# ignore these files
ignore = b(CVS|RCS)b
ignore = ^#
ignore = ~$
# copy these files
copy = .(gif|png|jpg|pdf)$
# recurse into directories
recurse
# provide info about whats going on
verbose
In most cases, youll want to create a different ttree configuration file for each project youre working on. The cfg option allows you to specify a directory where ttree can find further configuration files.
cfg = /home/abw/.ttree
The -f command line option can be used to specify which configuration file should be used. You can specify a filename using an absolute or relative path:
$ ttree -f /home/abw/web/example/etc/ttree.cfg
$ ttree -f ./etc/ttree.cfg
$ ttree -f ../etc/ttree.cfg
If the configuration file does not begin with / or . or something that looks like a MS-DOS absolute path (e.g. C:etcttree.cfg) then ttree will look for it in the directory specified by the cfg option.
$ ttree -f test1 # /home/abw/.ttree/test1
The cfg option can only be used in the .ttreerc file. All the other options can be used in the .ttreerc or any other ttree configuration file. They can all also be specified as command line options.
Remember that .ttreerc is always processed before any configuration file specified with the -f option. Certain options like lib can be used any number of times and accumulate their values.
For example, consider the following configuration files:
/home/abw/.ttreerc:
cfg = /home/abw/.ttree
lib = /usr/local/tt2/templates
/home/abw/.ttree/myconfig:
lib = /home/abw/web/example/templates/lib
When ttree is invoked as follows:
$ ttree -f myconfig
the lib option will be set to the following directories:
/usr/local/tt2/templates
/home/abw/web/example/templates/lib
Any templates located under /usr/local/tt2/templates will be used in preference to those located under /home/abw/web/example/templates/lib. This may be what you want, but then again, it might not. For this reason, it is good practice to keep the .ttreerc as simple as possible and use different configuration files for each ttree project.
<<lessSYNOPSIS
ttree [options] [files]
The ttree script is used to process entire directory trees containing template files. The resulting output from processing each file is then written to a corresponding file in a destination directory. The script compares the modification times of source and destination files (where they already exist) and processes only those files that have been modified. In other words, it is the equivalent of make for the Template Toolkit.
It supports a number of options which can be used to configure behaviour, define locations and set Template Toolkit options. The script first reads the .ttreerc configuration file in the HOME directory, or an alternative file specified in the TTREERC environment variable. Then, it processes any command line arguments, including any additional configuration files specified via the -f (file) option.
The .ttreerc Configuration File
When you run ttree for the first time it will ask you if you want it to create a .ttreerc file for you. This will be created in your home directory.
$ ttree
Do you want me to create a sample .ttreerc file for you?
(file: /home/abw/.ttreerc) [y/n]: y
/home/abw/.ttreerc created. Please edit accordingly and re-run ttree
The purpose of this file is to set any global configuration options that you want applied every time ttree is run. For example, you can use the ignore and copy option to provide regular expressions that specify which files should be ignored and which should be copied rather than being processed as templates. You may also want to set flags like verbose and recurse according to your preference.
A minimal .ttreerc:
# ignore these files
ignore = b(CVS|RCS)b
ignore = ^#
ignore = ~$
# copy these files
copy = .(gif|png|jpg|pdf)$
# recurse into directories
recurse
# provide info about whats going on
verbose
In most cases, youll want to create a different ttree configuration file for each project youre working on. The cfg option allows you to specify a directory where ttree can find further configuration files.
cfg = /home/abw/.ttree
The -f command line option can be used to specify which configuration file should be used. You can specify a filename using an absolute or relative path:
$ ttree -f /home/abw/web/example/etc/ttree.cfg
$ ttree -f ./etc/ttree.cfg
$ ttree -f ../etc/ttree.cfg
If the configuration file does not begin with / or . or something that looks like a MS-DOS absolute path (e.g. C:etcttree.cfg) then ttree will look for it in the directory specified by the cfg option.
$ ttree -f test1 # /home/abw/.ttree/test1
The cfg option can only be used in the .ttreerc file. All the other options can be used in the .ttreerc or any other ttree configuration file. They can all also be specified as command line options.
Remember that .ttreerc is always processed before any configuration file specified with the -f option. Certain options like lib can be used any number of times and accumulate their values.
For example, consider the following configuration files:
/home/abw/.ttreerc:
cfg = /home/abw/.ttree
lib = /usr/local/tt2/templates
/home/abw/.ttree/myconfig:
lib = /home/abw/web/example/templates/lib
When ttree is invoked as follows:
$ ttree -f myconfig
the lib option will be set to the following directories:
/usr/local/tt2/templates
/home/abw/web/example/templates/lib
Any templates located under /usr/local/tt2/templates will be used in preference to those located under /home/abw/web/example/templates/lib. This may be what you want, but then again, it might not. For this reason, it is good practice to keep the .ttreerc as simple as possible and use different configuration files for each ttree project.
Download (0.75MB)
Added: 2007-08-06 License: Perl Artistic License Price:
809 downloads
xen-tools 3.7
xen-tools is a collection of scripts which allow you to manipulate virtual images for the Xen virtualization software. more>>
xen-tools project is a collection of scripts which allow you to manipulate virtual images for the Xen virtualization software.
With the tools installed, you may create new instances of Debian, complete with networking, OpenSSH, and user accounts, with one simple command. Images may also be easily updated, listed, or deleted.
Main features:
- Create new Xen instances of Debian Sarge, in minutes. (xen-create-image)
- Duplicate an existing image, whilst updating the networking information. (xen-duplicate-image)
- List all existing images with their networking details (xen-list-images)
- Delete previously created instances. (xen-delete-image)
- Update the images youve created with apt-get, without booting them. (xen-update-image)
Creating A New Image:
The script will contains a full manual written using the perl documentation system, perldoc, which you can read by executing:
xen-create-image --manual
This manual describes the operation of the script, and the supported options. (Each of the available options may be setup in a configuration file for ease of use.)
As a very simple example the following command willcreate an image using DHCP to obtain its networking information. The primary disk will 2Gb with 128Mb memory and swap:
xen-create-image --hostname=vm01 --dir=/home/xen
--size=2Gb --swap=128Mb --memory=128Mb --dhcp
If you wish to give the instance a static IP address then provide the information with the following flags:
--ip
The IP address to give the instance.
--gateway
The IP address of the gateway machine.
--broadcast
The broadcast address to use.
--network
The network the image is upon.
--netmask
The netmask to use.
Enhancements:
- This release supports the installation of RPM-based distributions via the external rinse tool, which is more reliable than the rpmstrap utility.
- New guests will now have a random MAC address generated by default, to avoid issues with udev, and several other minor bugfixes were applied.
<<lessWith the tools installed, you may create new instances of Debian, complete with networking, OpenSSH, and user accounts, with one simple command. Images may also be easily updated, listed, or deleted.
Main features:
- Create new Xen instances of Debian Sarge, in minutes. (xen-create-image)
- Duplicate an existing image, whilst updating the networking information. (xen-duplicate-image)
- List all existing images with their networking details (xen-list-images)
- Delete previously created instances. (xen-delete-image)
- Update the images youve created with apt-get, without booting them. (xen-update-image)
Creating A New Image:
The script will contains a full manual written using the perl documentation system, perldoc, which you can read by executing:
xen-create-image --manual
This manual describes the operation of the script, and the supported options. (Each of the available options may be setup in a configuration file for ease of use.)
As a very simple example the following command willcreate an image using DHCP to obtain its networking information. The primary disk will 2Gb with 128Mb memory and swap:
xen-create-image --hostname=vm01 --dir=/home/xen
--size=2Gb --swap=128Mb --memory=128Mb --dhcp
If you wish to give the instance a static IP address then provide the information with the following flags:
--ip
The IP address to give the instance.
--gateway
The IP address of the gateway machine.
--broadcast
The broadcast address to use.
--network
The network the image is upon.
--netmask
The netmask to use.
Enhancements:
- This release supports the installation of RPM-based distributions via the external rinse tool, which is more reliable than the rpmstrap utility.
- New guests will now have a random MAC address generated by default, to avoid issues with udev, and several other minor bugfixes were applied.
Download (0.10MB)
Added: 2007-08-03 License: GPL (GNU General Public License) Price:
817 downloads
Burr Tools 0.3.1
Burr Tools will help you solve a certain kind of puzzle. more>>
Burr Tools will help you solve a certain kind of puzzle.
Namely puzzles that are made out of square or dice shaped units and whose solution also contains only rectangular aligned pieces.
Main features:
- Does nearly all that PuzzleSolver 3D which is
- You can enter all puzzles that are assembled out of dice shaped units
- Find assemblies for you puzzle
- Disassemble the found assembly them
- Show everything in a 3 dimensional image
- Animate how the puzzle has to be assembled
- Toggle the visibility of pieces in the solution to have a look at the inner workings of a puzzle. This is especially helpful for box packing puzzles
- Runs on Windows and Linux and probably is also compilable on MacOS
- You can specify which cubes to fill and which can be empty or full. PuzzleSolver 3D has only 2 modes. Either all cubes may be left empty in the solution, or the cubes that have an empty neighbor must be filled. BurrTools are more flexible here.
- More than one problem in one file (e.g. have several Soma Cube problems in the same file)
- Constraints to piece placements (like checkerboard)
- Group pieces together to tell the disassembler that they dont need to be taken apart this is necessary for puzzles like "Cube In Cage" where the cage can not be taken apart but has 3 movable pieces
- No limits to sizes and number of shapes. As long as your computer has the memory and you the patience the program will do it for you, even if it takes eons.
- Free as in beer. It doesnt cost you anything
- Free as in speech. The source is available, so you can do your own programming or help me improve continue improving the program in case I have to stop working on it.
- Save puzzles with solutions in compressed XML-files. This allows you to create puzzles with other means (like your own burrgrower, ...)
- A library is provided that helps you to write your own software for puzzle design and analysis
Enhancements:
- Many bugs have been fixed.
- There are improvements to the build system.
- The manual has been edited.
- Performance has increased in some (rare) situations.
- There are editing possibilities in 3D view.
<<lessNamely puzzles that are made out of square or dice shaped units and whose solution also contains only rectangular aligned pieces.
Main features:
- Does nearly all that PuzzleSolver 3D which is
- You can enter all puzzles that are assembled out of dice shaped units
- Find assemblies for you puzzle
- Disassemble the found assembly them
- Show everything in a 3 dimensional image
- Animate how the puzzle has to be assembled
- Toggle the visibility of pieces in the solution to have a look at the inner workings of a puzzle. This is especially helpful for box packing puzzles
- Runs on Windows and Linux and probably is also compilable on MacOS
- You can specify which cubes to fill and which can be empty or full. PuzzleSolver 3D has only 2 modes. Either all cubes may be left empty in the solution, or the cubes that have an empty neighbor must be filled. BurrTools are more flexible here.
- More than one problem in one file (e.g. have several Soma Cube problems in the same file)
- Constraints to piece placements (like checkerboard)
- Group pieces together to tell the disassembler that they dont need to be taken apart this is necessary for puzzles like "Cube In Cage" where the cage can not be taken apart but has 3 movable pieces
- No limits to sizes and number of shapes. As long as your computer has the memory and you the patience the program will do it for you, even if it takes eons.
- Free as in beer. It doesnt cost you anything
- Free as in speech. The source is available, so you can do your own programming or help me improve continue improving the program in case I have to stop working on it.
- Save puzzles with solutions in compressed XML-files. This allows you to create puzzles with other means (like your own burrgrower, ...)
- A library is provided that helps you to write your own software for puzzle design and analysis
Enhancements:
- Many bugs have been fixed.
- There are improvements to the build system.
- The manual has been edited.
- Performance has increased in some (rare) situations.
- There are editing possibilities in 3D view.
Download (1.3MB)
Added: 2007-07-30 License: GPL (GNU General Public License) Price:
816 downloads
anyfs-tools 0.84.12
anyfs-tools is a unix-way toolset for recovering and converting filesystems. more>>
anyfs-tools is a unix-way toolset for recovering and converting filesystems.
SYNOPSIS
build_it [-qvV] directory inode_table
anysurrect [-b blocksize] [-i input_inode_table] [-p path_prefix] [-u file_umask] [-U dir_umask] [-qvV] device inode_table
reblock [-nqvV] inode_table device blocksize
build_e2fs [ -c|-l filename ] [-b blocksize] [-f fragment-size] [-g blocks-per-group] [-i bytes-per-inode] [-j] [-J journal-options] [-N number-of-inodes] [-n] [-m reserved-blocks-percentage] [-o creator-os] [-O feature[,...]] [-q] [-r fs-revision-level] [-R raid-options] [-v] [-F] [-L volume-label] [-M last-mounted-directory] [-S] [-T filesystem-type] [-V] inode_table device [blocks-count]
mount -t any -o inodetable=file.it[,other_mount_options] device dir
build_it reads from directory recursively information about all filesystem inodes using filesystem driver (read-only maybe) for Linux OS and saves it to external inode table.
anysurrect search on device files proceeds from knowing different file types structure. Information about founded files also saves to external inode table.
reblock change filesystem block size. reblock using information from inode table change each files fragments placing so, that it was align by blocks bounds with new size.
build_e2fs proceeds from external inode table information for building ext2fs filesystems on device.
anyfs filesystem driver for Linux allows to mount device using inode table information. At mounted filesystem will be allow so file operations as deleting, moving files; making symbolic and hard links, special files; changing file access permissions. All this changes saves on unmounting to the same external inode table file and doesnt affect the device.
Usage:
Convert filesystems
anyfs-tools allows to convert filesystems. The only one requirement for source filesystem exist: there is must be FIBMAP system call ioctl(2) support in the filesystem driver (maybe read-only) for Linux OS.
Destination filesystem at that moment maybe only ext2fs. But its quite possible, that in future there are will other filesystem building support. At the first it must be interest for filesystem maintainers so as existing of convenient tool for converting of other filesystems to their one, not requesting much free space for saving of all user data, certainty will increase of the filesystem users.
In general, an applying anyfs-tools order for filesystem converting must be next:
1) build_it for reading all informaton about files placing and access permissions and saving it to external inode table file.;
2) anyfs driver for checking existence of all needed files and maybe searching of files requiring of separately saving (e.g, files eith size less than 4 Kb for ReiserFS);
3) maybe reblock for changing filesystem blocksize in occurence when destination filesystem dont support the same blocksize for this device, that source one;
4) at last ext2fs filesystem builds by build_e2fs.
Recovering damaged filesystem
For recovering files from filesystem at first intended anysurrect. After it using possible applying of anyfs filesystem drive for founded files viewing and maybe reading and saving it to another filesystem. Driver also may allow to sort files into directories so as user need in it, rename files as it necessary. At last also possible to build new filesystem with help of build_e2fs.
Recovering files from not damaged filesystem
For file recovering an aplying anyfs-tools tools order is the same that for recovering damaged filesystem excepting that at the begining you must execute build_it for reading about present filesystem file placing.
Enhancements:
- Fix anyfs building with kernel version >=2.6.19
- Some other building fix
- Fix new (from v0.84.10) i/o buffer bug in anysurrect.
- Extremally optimize anysurrect.
- Add -s option to build_it.
- Add support of converting from ntfs-3g by anyconvertfs.
<<lessSYNOPSIS
build_it [-qvV] directory inode_table
anysurrect [-b blocksize] [-i input_inode_table] [-p path_prefix] [-u file_umask] [-U dir_umask] [-qvV] device inode_table
reblock [-nqvV] inode_table device blocksize
build_e2fs [ -c|-l filename ] [-b blocksize] [-f fragment-size] [-g blocks-per-group] [-i bytes-per-inode] [-j] [-J journal-options] [-N number-of-inodes] [-n] [-m reserved-blocks-percentage] [-o creator-os] [-O feature[,...]] [-q] [-r fs-revision-level] [-R raid-options] [-v] [-F] [-L volume-label] [-M last-mounted-directory] [-S] [-T filesystem-type] [-V] inode_table device [blocks-count]
mount -t any -o inodetable=file.it[,other_mount_options] device dir
build_it reads from directory recursively information about all filesystem inodes using filesystem driver (read-only maybe) for Linux OS and saves it to external inode table.
anysurrect search on device files proceeds from knowing different file types structure. Information about founded files also saves to external inode table.
reblock change filesystem block size. reblock using information from inode table change each files fragments placing so, that it was align by blocks bounds with new size.
build_e2fs proceeds from external inode table information for building ext2fs filesystems on device.
anyfs filesystem driver for Linux allows to mount device using inode table information. At mounted filesystem will be allow so file operations as deleting, moving files; making symbolic and hard links, special files; changing file access permissions. All this changes saves on unmounting to the same external inode table file and doesnt affect the device.
Usage:
Convert filesystems
anyfs-tools allows to convert filesystems. The only one requirement for source filesystem exist: there is must be FIBMAP system call ioctl(2) support in the filesystem driver (maybe read-only) for Linux OS.
Destination filesystem at that moment maybe only ext2fs. But its quite possible, that in future there are will other filesystem building support. At the first it must be interest for filesystem maintainers so as existing of convenient tool for converting of other filesystems to their one, not requesting much free space for saving of all user data, certainty will increase of the filesystem users.
In general, an applying anyfs-tools order for filesystem converting must be next:
1) build_it for reading all informaton about files placing and access permissions and saving it to external inode table file.;
2) anyfs driver for checking existence of all needed files and maybe searching of files requiring of separately saving (e.g, files eith size less than 4 Kb for ReiserFS);
3) maybe reblock for changing filesystem blocksize in occurence when destination filesystem dont support the same blocksize for this device, that source one;
4) at last ext2fs filesystem builds by build_e2fs.
Recovering damaged filesystem
For recovering files from filesystem at first intended anysurrect. After it using possible applying of anyfs filesystem drive for founded files viewing and maybe reading and saving it to another filesystem. Driver also may allow to sort files into directories so as user need in it, rename files as it necessary. At last also possible to build new filesystem with help of build_e2fs.
Recovering files from not damaged filesystem
For file recovering an aplying anyfs-tools tools order is the same that for recovering damaged filesystem excepting that at the begining you must execute build_it for reading about present filesystem file placing.
Enhancements:
- Fix anyfs building with kernel version >=2.6.19
- Some other building fix
- Fix new (from v0.84.10) i/o buffer bug in anysurrect.
- Extremally optimize anysurrect.
- Add -s option to build_it.
- Add support of converting from ntfs-3g by anyconvertfs.
Download (0.24MB)
Added: 2007-07-29 License: GPL (GNU General Public License) Price:
826 downloads
GNOME System Tools 2.19.1
GNOME System Tools are a set of tools aimed to make easy the system administration tasks. more>>
Formerly known as the Ximian Setup Tools, GNOME System Tools are a fully integrated set of tools aimed to make easy the job that means the computer administration on an UNIX or Linux system.
Theyre thought to help from the new Linux or UNIX user to the system administrators. The GNOME System Tools are free software, licensed under the terms of the GNU General Public License.
Main features:
Its main advantages are:
- Full integration with the new GNOME Control Center.
- An user-friendly interface to carry out the main administration tasks.
- The use of a common user interface in every system.
- A common structure that makes easy the development of new system tools.
Nowadays there are tools for managing:
- Users and groups
- Date and time
- Network configuration
- Bootloaders
- Runlevels
<<lessTheyre thought to help from the new Linux or UNIX user to the system administrators. The GNOME System Tools are free software, licensed under the terms of the GNU General Public License.
Main features:
Its main advantages are:
- Full integration with the new GNOME Control Center.
- An user-friendly interface to carry out the main administration tasks.
- The use of a common user interface in every system.
- A common structure that makes easy the development of new system tools.
Nowadays there are tools for managing:
- Users and groups
- Date and time
- Network configuration
- Bootloaders
- Runlevels
Download (3.5MB)
Added: 2007-07-29 License: GPL (GNU General Public License) Price:
820 downloads
Other version of GNOME System Tools
License:GPL (GNU General Public License)
License:GPL (GNU General Public License)
Wyrm Tools 0.13.0
Wyrm Tools is a suite of tools for any RPG system. more>>
Wyrm Tools is a suite of tools to make your gaming more productive regardless of which rules system you use. More importantly, Wyrm Tools is an RPG tool platform.
While this project anticipates to offer the standard RPG tool fare (such as a character generator and editor), it gives users the flexibility to add their own tools, even to the point of defining their own game systems.
The foundation of Wyrm Tools is the Eclipse Rich Client Platform. Wyrm Tools is to be to RPGs what Eclipse is to, well, everything else.
The overall project has progressed to a pre-alpha release. The core platform functionality (i.e. the game system agnostic bits) are mature. Currently, the d20 3.5 game system is being implemented along with a d20 character editor.
<<lessWhile this project anticipates to offer the standard RPG tool fare (such as a character generator and editor), it gives users the flexibility to add their own tools, even to the point of defining their own game systems.
The foundation of Wyrm Tools is the Eclipse Rich Client Platform. Wyrm Tools is to be to RPGs what Eclipse is to, well, everything else.
The overall project has progressed to a pre-alpha release. The core platform functionality (i.e. the game system agnostic bits) are mature. Currently, the d20 3.5 game system is being implemented along with a d20 character editor.
Download (23.9MB)
Added: 2007-07-27 License: GPL (GNU General Public License) Price:
820 downloads
Smbldap-tools 0.9.3
Smbldap-tools is a set of Perl scripts designed to manage user and group accounts stored in an LDAP directory. more>>
Smbldap-tools is a set of Perl scripts designed to manage user and group accounts stored in an LDAP directory. They can be used both by users and administrators of Linux systems:
*. administrators can perform users and groups management operations, in a way similar to the standard useradd or groupmod commands
users can change their LDAP password from the command line and get/change personnal informations.
This was first contributed by IDEALX.
Enhancements:
- Bugfixes and enhancements were made in many scripts.
- New scripts (smbldap-userinfo and smbldap-userlist) can help administrators and users to read and modify entries.
<<less*. administrators can perform users and groups management operations, in a way similar to the standard useradd or groupmod commands
users can change their LDAP password from the command line and get/change personnal informations.
This was first contributed by IDEALX.
Enhancements:
- Bugfixes and enhancements were made in many scripts.
- New scripts (smbldap-userinfo and smbldap-userlist) can help administrators and users to read and modify entries.
Download (0.30MB)
Added: 2007-07-25 License: GPL (GNU General Public License) Price:
824 downloads
Site Tools 1.0
Site Tools is a collection of Modules for perl that allow easy template integration, SQL forms creation and many others. more>>
Site Tools is a collection of Modules for perl that allow easy template integration, SQL forms creation, tables, sessions, and various other things that make web development a little easier to manage. Requires the SQLObject and PObject classes available on my project page. I have stopped developing these classes in favor of the Template Toolkit, it is a lot more robust and mod_perl aware, please use that instead.
To install everyhthing, follow the next instructions:
perl Makefile.PL
make
make test
make install
Basic documentation can be found through perldoc Site. It has pointers to other modules to look at.
<<lessTo install everyhthing, follow the next instructions:
perl Makefile.PL
make
make test
make install
Basic documentation can be found through perldoc Site. It has pointers to other modules to look at.
Download (0.053MB)
Added: 2007-07-19 License: GPL (GNU General Public License) Price:
828 downloads
system-tools-backends 2.3.0
system-tools-backends is a package for GNOME. more>>
system-tools-backends is a package for GNOME.
to extract the configuracion
backend --get
to restore the configuration from XML
backend --set < file.xml
<<lessto extract the configuracion
backend --get
to restore the configuration from XML
backend --set < file.xml
Download (0.51MB)
Added: 2007-07-11 License: LGPL (GNU Lesser General Public License) Price:
835 downloads
Java Tools 0.30
Java Tools is a lightweight integrated development environment for creating, compiling, and executing Java applications. more>>
Java Tools is a lightweight integrated development environment for creating, compiling, and executing Java applications and applets.
Java Tools includes point and click access to the Java files, commands, and documents. It also includes a built-in text editor and user interface for the Java debugger.
It is intended for the new Java user who needs help getting started. Its also for the more experienced Java user who wants easy access to the Java commands and a text editor.
Main features:
- GUI with built-in help and small footprint.
- Point and click access to all files (Java, manifest, HTML, image and sound) and directories (package).
- Point and click access to all commands for compiling (javac), archiving (jar), documenting (javadoc), executing (java), debugging (jdb) and disassembling (javap).
- Point and click access to all documents (Java API Specification, Java Tools and Utilities, Java Features and Java Tutorial).
- Point and click creation of all files (Java, manifest and HTML) and directories (package).
- Point and click installation of distribution archive files (Java document, Java source code, Java Tutorial and Sun Tools).
- Automatic determination of class file dependencies for archiving (jar) and documenting (javadoc) Java files.
- Checking for unused, redundant and missing imports.
- Logging of all commands invoked by GUI.
- Code metrics for Java files.
- Built-in text editor (see Edit for details).
- Built-in user interface for the Java debugger with command-line editing and history.
- Self-installing executable (Java archive file).
- Comprehensive installation and user documentation for Java and Java Tools.
<<lessJava Tools includes point and click access to the Java files, commands, and documents. It also includes a built-in text editor and user interface for the Java debugger.
It is intended for the new Java user who needs help getting started. Its also for the more experienced Java user who wants easy access to the Java commands and a text editor.
Main features:
- GUI with built-in help and small footprint.
- Point and click access to all files (Java, manifest, HTML, image and sound) and directories (package).
- Point and click access to all commands for compiling (javac), archiving (jar), documenting (javadoc), executing (java), debugging (jdb) and disassembling (javap).
- Point and click access to all documents (Java API Specification, Java Tools and Utilities, Java Features and Java Tutorial).
- Point and click creation of all files (Java, manifest and HTML) and directories (package).
- Point and click installation of distribution archive files (Java document, Java source code, Java Tutorial and Sun Tools).
- Automatic determination of class file dependencies for archiving (jar) and documenting (javadoc) Java files.
- Checking for unused, redundant and missing imports.
- Logging of all commands invoked by GUI.
- Code metrics for Java files.
- Built-in text editor (see Edit for details).
- Built-in user interface for the Java debugger with command-line editing and history.
- Self-installing executable (Java archive file).
- Comprehensive installation and user documentation for Java and Java Tools.
Download (0.15MB)
Added: 2007-07-09 License: Freeware Price:
838 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 tools 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