Main > Free Download Search >

Free swap partitions software for linux

swap partitions

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 356
Set::Partition 0.03

Set::Partition 0.03


Set::Partition is a Perl module that can enumerate all arrangements of a set in fixed subsets. more>>
Set::Partition is a Perl module that can enumerate all arrangements of a set in fixed subsets.

SYNOPSIS

use Set::Partition;

my $s = Set::Partition->new(
list => [qw(a b c d e)],
partition => [2, 3],
);
while (my $p = $s->next) {
print join( , map { "(@$_)" } @$p ), $/;
}
# produces
(a b) (c d e)
(a c) (b d e)
(a d) (b c e)
(a e) (b c d)
(b c) (a d e)
(b d) (a c e)
(b e) (a c d)
(c d) (a b e)
(c e) (a b d)
(d e) (a b c)

# or with a hash
my $s = Set::Partition->new(
list => { b => bat, c => cat, d => dog },
partition => [2, 1],
);
while (my $p = $s->next) {
...
}

Set::Partition takes a list or hash of elements and a list numbers that represent the sizes of the partitions into which the list of elements should be arranged.
The resulting object can then be used as an iterator which returns a reference to an array of lists, that represents the original list arranged according to the given partitioning. All possible arrangements are returned, and the object returns undef when the entire combination space has been exhausted.

<<less
Download (0.007MB)
Added: 2007-07-04 License: Perl Artistic License Price:
842 downloads
Partition Logic 0.68

Partition Logic 0.68


Partition Logic is a standalone partitioning tool for PC-compatible computers. more>>
Partition Logic is a free hard disk partitioning and data management tool. It can create, delete, format, and move partitions and modify their attributes. It can copy entire hard disks from one to another.

Partition Logic is free software, based on the Visopsys operating system. It boots from a CD or floppy disk and runs as a standalone system, independent of your regular operating system.

Partition Logic is intended to become a free alternative to such commercial programs as Partition Magic, Drive Image, and Norton Ghost...

<<less
Download (1.2MB)
Added: 2007-05-11 License: GPL (GNU General Public License) Price:
913 downloads
Partition Image 0.6.6

Partition Image 0.6.6


Partition Image is a Linux/UNIX utility which saves partitions in many formats. more>>
Partition Image application is a Linux/UNIX utility which saves partitions in many formats (see below) to an image file.
The image file can be compressed in the GZIP/BZIP2 formats to save disk space, and split into multiple files to be copied on removable floppies (ZIP for example); partitions can be saved across the network since version 0.6.0.
Partition Image will only copy data from the used portions of the partition. For speed and efficiency, free blocks are not written to the image file.
This is unlike the dd command, which also copies empty blocks. Partition Image also works for large, very full partitions. For example, a full 1 GB partition can be compressed with gzip down to 400MB.
This is very useful to save partitions to an image in some cases:
- First you can restore your linux partition if there is a problem (virus, file system errors, manipulation error) . When you have a problem, you just have to restore the partition, and after 10 minutes, you have the original partition. You can write the image to a CD-R if you dont want the image to use hard-disk space.
- This utility can be used to install many identical PCs. For example, if you buy 50 PCs, with the same hardware, and you want to install the same linux systems on all 50 PCs, you will save a lot of time. Indeed, you just have to install on the first PC and create an image from it. For the 49 others, you can use the image file and Partition Images restore function.
<<less
Download (0.52MB)
Added: 2007-08-11 License: GPL (GNU General Public License) Price:
815 downloads
swapd 1.0.1

swapd 1.0.1


swapd is a dynamic swap creation deamon. more>>
swapd is a dynamic swap creation deamon, it monitors the system memory and detect when swap creation will be required. the swap size is determined automatically with respect of sysadmin limits.
Installation:
- Make sure you are logged in as root.
- Run make install.
- Take a look at /usr/local/etc/swapd.conf and change what is necessary.
- Create the swap directory you chose in swapd.conf (it should be accessible only by root).
- Add the following line to /etc/rc.d/rc.local:
/usr/local/sbin/swapd
- If you recompiled the kernel, now would be the time to reboot. If you havent, just rehash and run swapd as root.
<<less
Download (0.040MB)
Added: 2005-10-12 License: GPL (GNU General Public License) Price:
1472 downloads
cryptoswap 0.0.3

cryptoswap 0.0.3


The cryptoswap package supports building an encrypted swap partition when a system boots. more>>
The cryptoswap package supports building an encrypted swap partition when a system boots. This must be necessary on systems that use encrypted filesystems because plaintext secrets may be written to disk when memory is swapped to disk.
Cryptoswap.sh should be installed in /etc/init.d. During system boot, cryptoswap.sh should execute right before checkroot.sh. When shutting down, cryptoswap should execute after sysklogd.
This package also includes an initialization script for building loopback encrypted /tmp. This may be necessary if a system contains encrypted filesystems but / is not encrypted. A link from directories like /var/tmp to /tmp may be appropriate. There are a few other alternatives for systems such as these:
1. Tmpfs is a Linux kernel feature that allows /tmp to exist in memory. This is a good solution for systems with a lot of memory and/or (encrypted) swap.
2. If you have a system that uses encrypted home directories, per-user temporary directories inside $HOME could be used. This would ensure that users data is protected but would require that all applications use $HOME/tmp instead of /tmp.
Finally, the project may be used to create an encrypted root filesystem. Doing so requires two special partitions. First, create a small partition to hold your kernel and initrd image, /dev/hdaX. Second create a large partition to contain the root of your filesystem, /dev/hdaY.
Next configure and install an initrd-based boot system:
1. Ensure romfs is compiled in your kernel (not a module).
2. Create a kernel-supported filesystem on /dev/hdaX and copy your kernel to /vmlinux.
3. Download busybox and extract it as initrd/busybox.
4. Update initrd/src/etc/modules.initrd to include any modules needed to boot.
5. Build cryptoswaps initrd image (cd initrd && make initrd) and copy it to the filesystem on /dev/hdaX at /initrd.img.gz.
6. Make sure you use literal = "root=/dev/ram0 init=/linuxrc rw" or LILO equivalent.
Finally, create a proper encrypted filesystem on /dev/hdaY:
1. Randomize the partition: dd if=/dev/urandom of=/dev/hdaY.
2. Set up a loopback device: openssl enc -d -aes-256-ecb -in initrd/src/etc/efsk | losetup -p0 -e aes /dev/loop0 /dev/hdaY.
3. Create the root filesystem: mkfs.ext2 /dev/loop0.
4. Mount your new root filesystem: mount /dev/loop0 .
5. Populate your new root filesystem.
Enhancements:
- Added initrd build environment.
- Documentation update.
<<less
Download (0.20MB)
Added: 2006-07-10 License: GPL (GNU General Public License) Price:
1203 downloads
Gpart 0.1h

Gpart 0.1h


Gpart is a tool which tries to guess the primary partition table of a PC-type hard disk in case of a damaged patition table. more>>
Gpart is a tool which tries to guess the primary partition table of a PC-type hard disk in case the primary partition table in sector 0 is damaged, incorrect or deleted. The guessed table can be written to a file or device. Supported (guessable) filesystem or partition types by Gpart are:
- DOS/Windows FAT (FAT 12/16/32)
- Linux ext2
- Linux swap partitions versions 0 and 1 (Linux >= v2.2.X)
- OS/2 HPFS
- Windows NT/2000 FS
- *BSD disklabels
- Solaris/x86 disklabels
- Minix FS
- Reiser FS
- Linux LVM physical volume module (LVM by Heinz Mauelshagen)
- SGI XFS on Linux
- BeOS filesystem
- QNX 4.x filesystem
Enhancements:
- New support for the following filesystems: BeOS, QNX 4.x & SGI XFS.
- Updated Reiser filesystem support (Francis Devereux).
- Updated LVM support.
- Several small fixes from contributors.
<<less
Download (0.26MB)
Added: 2006-05-10 License: GPL (GNU General Public License) Price:
1285 downloads
GNU Parted 1.8.8

GNU Parted 1.8.8


GNU Parted is a partition editor, for creating, destroying, resizing and copying partitions. more>>
GNU Parted is a program for creating, resizing, destroying, checking and copying partitions, and the file systems on them. This is useful for creating space for new operating systems, reorganising disk usage, copying data between hard disks and disk imaging.
Supported disk labels: raw access (useful for RAID and LVM), MS-DOS partition tables, Intel GPT partition tables, MIPS partition tables, PC98 partition tables, Sun and BSD disk labels and Macintosh partition maps.
Notes:
- For ext2, ext3 and reiserfs: the start of the partition must stay fixed.
- For ext2, ext3: the partition you copy to must be bigger or exactly the same size as the partition you copy from.
- For ext2 and ext3: the checking is limited to ensuring the resize and copy commands will be ok.
- For fat: the size of the new partition after resizing or copying is restricted by the cluster size. Parted can shrink the cluster size, so you can always shrink your partition. However, if you cant use FAT32 for some reason, you may not be able to grow your partition.
- Parted supports both FAT16 and FAT32. Parted can convert file systems between FAT16 and FAT32, if necessary.
- Reiserfs support is enabled if you install libreiserfs.
<<less
Download (1.3MB)
Added: 2007-08-10 License: GPL (GNU General Public License) Price:
510 downloads
wmsupermon 1.2.1

wmsupermon 1.2.1


wmsupermon project is a universal monitoring dockapp. more>>
wmsupermon project is a universal monitoring dockapp.
It can be used to monitor CPU usage, disk I/O, memory usage, swap, filesystems, space utilization, network traffic, wireless link quality, CPU frequency, CPU temperature, fan speed, voltages (without requiring lm_sensors), battery status (with actual, not "reported", discharge rate), traffic from your router, or anything else.
It can open and maintain many dockapp windows with one dockapp process.
"wmsupermon" can be used to monitor:
- CPU usage
- disk i/o
- memory
- swap
- filesystems - space utilization
- network traffic
- wireless link quality
- cpu frequency
- CPU temperature, fan speed, voltages (no lm_sensors required!)
- battery status (with actual - not guessed - discharge rate!)
Enhancements:
- "-" was added to the font (to print negative numbers).
- Pane rotation was fixed so that it is no longer confused by laptop sleeps.
- WindowMaker mode was fixed.
- Support was added for >,<<less
Download (0.027MB)
Added: 2007-04-11 License: GPL (GNU General Public License) Price:
552 downloads
wmSMPmon 3.1

wmSMPmon 3.1


wmSMPmon is a Window Maker applet for monitoring the CPUs, memory, and swap of SMP systems. more>>
wmSMPmon is a Window Maker Dock Application that displays the following information about the system:
- Current CPU utilization of up to two CPUs
- On dual CPU systems, three different styles for the utilization graph are available.
- Up to two minutes history of CPU utilization
- Current memory usage
- Current swap usage
- Currently supports Linux kernel 2.2, 2.4 and 2.6
Enhancements:
- Fixed bug where wmSMPmon would crash if no swap is enabled/present on the system (thanks to John Schmerge for finding this!)
- Added INSTALL file (thanks to Paul Johnson for reminding me)
<<less
Download (0.024MB)
Added: 2005-11-08 License: GPL (GNU General Public License) Price:
1447 downloads
Paragon NTFS for Linux 2.0

Paragon NTFS for Linux 2.0


Gain full access to NTFS partitions under Linux more>> Paragon NTFS for Linux gives transparent access to any NTFS partition under Linux operating system. So you and any application can browse these drives, read and change files, copy and create new files and folders. Everything absolutely transparently ?just like with ?ative?Ext2FS, Ext3FS or ReiserFS file system.
This download package is FREE and contains full functional Paragon NTFS for Linux drivers for the most popular Linux distributions with their default kernels only: Red Hat Enterprise 4 (SW), Fedora Core 4, Mandriva 10.2, SUSE 9.3. If you have any other Linux distribution or have already changed the default kernel, you will not probably be able to use this driver. If you are interested in buying or evaluating Paragon NTFS for Linux driver for any Linux distribution you should go to http://www.ntfs-linux.com/index.htm.
Note: This package contains Paragon NTFS for Linux demo version as well. The demo version mounts NTFS partitions in read-only mode only but you can install it to any Linux distribution.
<<less
Download (2447K)
Added: 2009-04-14 License: Freeware Price: $FREE
192 downloads
Super Grub Disk Gparted System Rescue 001

Super Grub Disk Gparted System Rescue 001


Super Grub Disk is a bootable CDROM that is oriented towards system rescue, specifically for repairing the booting process. more>>
Super Grub Disk is a bootable floppy or CDROM that is oriented towards system rescue, specifically for repairing the booting process.

Super Grub Disk is simply a Grub Disk with a lot of useful menus. It can activate partitions, boot partitions, boot MBRs, boot your former OS (Linux or another one) by loading menu.lst from your hard disk, automatically restore Grub on your MBR, swap hard disks in the BIOS, and boot from any available disk device.

The ISO has multi-language support, and allows you to change the keyboard layout of your shell.

This version has Gpareted included.
<<less
Download (164.1MB)
Added: 2007-08-02 License: GPL (GNU General Public License) Price:
550 downloads
sarPplot 1.0.3

sarPplot 1.0.3


sarPplot is a simple application which takes output of atsar application and put it into Gnuplot config files. more>>
sarPplot project is a simple application which takes output of atsar application and put it into Gnuplot config files, kind of useful on server boxes for performance analyze, which is availabel on:
- cpu
- processload
- disk
- disk-partition
- memory&swap
- paging&swapping
- interrupts
- kernel-resources
- ttyactivity
- net-interf(general)
- net-interf(errors)
- ipv4(general)
- ipv4(errors)
- tcpv4(general)
- tcpv4(errors)
- udpv4
- icmpv4(general)
- icmpv4(pertype)
- nfs(general)
- nfs(errors)
- nfs(server)
- nfs-rpc(calls)
Enhancements:
- A grid feature was added along with httprequests and httpdpid targets.
- A bug in the interr function was fixed.
<<less
Download (0.011MB)
Added: 2006-09-03 License: GPL (GNU General Public License) Price:
1148 downloads
Planetoids 1.0

Planetoids 1.0


Planetoids is a game similar to bejeweled. more>>
Planetoids is a game similar to bejeweled. The player must swap jewels to create combinations, including power and hyper jewels.

It includes a top score board to keep track of high player scores. Planetoids game also includes a hint feature, various jewel types, custom board sizes, and more.

<<less
Download (0.22MB)
Added: 2006-02-08 License: Freeware Price:
1353 downloads
KompctMon 1R3B

KompctMon 1R3B


KompctMon is SuperKaramba theme shows following informations with simple and compact. more>>
KompctMon is SuperKaramba theme shows following informations with simple and compact.
- CPU Usage (0~100%:sector graph)
- CPU Frequency (0.00~9.99 GHz:digit)
- CPU Temperature (0c~75c:horizontal bar graph)
- MEMORY Usage (0~100%:sector graph)
- SWAP I/O per sec (0~999/sec:digit)
- SWAP Usage (0~100%:horizontal bar graph)
- Network Load;Receive (KB/S:digit & horizontal bar graph with common log scale)
- Network Load;Send (KB/S:digit & horizontal bar graph with common log scale)
- Disk free Space # 1 (GB:digit)
- Disk Usage # 1 (0~100%:horizontal bar graph)
- Disk free Space # 2 (GB:digit)
- Disk Usage # 2 (0~100%:horizontal bar graph)
<<less
Download (0.030MB)
Added: 2006-07-06 License: GPL (GNU General Public License) Price:
1207 downloads
wmsm.app 0.2.1

wmsm.app 0.2.1


wmsm.app is a WindowMaker System Monitor. more>>
wmsm.app is a WindowMaker System Monitor.
Main features:
- Processor load
- Memory load
- Swap load
- Disk I/O (read/write)
- Uptime
- Two different scale types
Installation:
cd wmsm
make
make install (root)
Enhancements:
- added -d < dev > option to select the device that should observe, e.g. hda or sda (thanks to Carles Garrigues and krakov)
- added small point befor IOR and IOW only if the change of IOR or IOW was to small to display with the scale. Result: .IOR or .IOW
<<less
Download (0.018MB)
Added: 2006-11-07 License: GPL (GNU General Public License) Price:
1081 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5