Main > Free Download Search >

Free swap partition software for linux

swap partition

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 347
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
barvinok 0.24

barvinok 0.24


barvinok is a library for counting the number of points in parametrized and non-parametrized polytopes based on polylib. more>>
barvinok library can count the number of integer points in parametrized and non-parametrized polytopes.
For parametrized polytopes an explicit function in the shape of a piece-wise step-polynomial is constructed.
This is a generalization of both Ehrhart quasi-polynomials and vector partition functions. Alternatively, a generalized Ehrhart series can be constructed as well.
Enhancements:
- This release supports exponential substitution for non-parametric problems, primal and stopped decomposition for parametric problems, and a polynomial approximation based on nested sums.
<<less
Download (0.39MB)
Added: 2007-07-02 License: BSD License Price:
846 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
EvilEntity Linux 0.2.5

EvilEntity Linux 0.2.5


EvilEntity paves the road for a new generation of Linuxes to follow. more>>
EvilEntity is different. Very different! Designed with idealistic integrity, EvilEntity paves the road for a new generation of Linuxes to follow. We provide features without bloat.

This means performance, serious performance like no other OS currently offers. EvilEntity Linux is the development branch of a desktop Linux distribution designed specifically for the multimedia poweruser, videogamers, audio/video professionals, and speed freaks.

EvilEntity is a complete replacement for your current inferior OS. With EvilEntity installed you can be up and running, online, ripping MP3s, burning CDs, watching DVDs and TV, editing video and audio, and creating 3D models in minutes.

Installation:

1. Insert the EvilEntity CDROM, Reboot, and Press "Enter" at introduction screen to begin.
2. Wait
3. You will now see the startup screen
4. Select yes to Partition Setup question if your harddrive is not setup for Linux.
5. Partition hard drive with cfdisk
6. Partition your dark drive option - press "Yes"
7. Select the hard drive to be partitioned- type,"/dev/your device {ex. hda} "
8. Setup up a swap partition (128Mb) hda1 Primary Linux swap 128
9. Setup up a root partition- hda2 Boot Primary Linux 20003.89
10. Write changes to disk - select,"write" then type "yes"
11. Quit cfdisk - select "quit"
12. Format Swap - select partition - select yes
13. Format Root - select root partition - select yes
14. Select additional mount points
15. Format Partitions
16. Install
17. Hit enter a few times
18. wait *(DR-0.2.5 takes 3 minutes 47 seconds to install [Athlon1800+, 7200rpm hd, 52xCD])
19. Reboot
20. Remove CD
21. press enter to reboot
22. login root
23. setup Video, network, users with econfigure
24. login as new user
<<less
Download (702MB)
Added: 2005-05-16 License: GPL (GNU General Public License) Price:
1625 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
Qtparted 0.4.5

Qtparted 0.4.5


QTParted is a Partition Magic clone to graphically manipulate partitions. more>>
QTParted is a Partition Magic clone written in C++ using the Qt toolkit.
Some note about REISERFS/NTFS/JFS/EXT3 support in QTParted: Even if libparted does not support these filesystems QTParted can handle it. Of course it do it using external tools. This are the latest support status of this filesystems:
- Ntfs - Needed mkntfs and ntfsresize (linux-ntfs)
- ReiserFS - Needed (progsreiserfs) by libparted. Warning: progsreiserfs is not reisergsprogs!
- JFS - Needed mkfs.jfs (jfsutils)
- Ext2/Ext3 - Needed mkfs.ext3 (e2fsprogs)
- XFS - Needed mkfs.xfs (xfsprogs)
<<less
Download (0.22MB)
Added: 2005-08-12 License: GPL (GNU General Public License) Price:
893 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5