parted
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 1853
Parted Magic 1.8
Parted Magic is a ~30mb LiveCD/USB with its only purpose being partitioning hard drives. more>>
Parted Magic is a ~30mb LiveCD/USB with its only purpose being partitioning hard drives. Although GParted and Parted are the main programs, the CD/USB also offers programs like partimage, testdisk, fdisk, sfdisk, dd, etc...
Parted Magic is based on my work from the GParted LiveCD project and falls under the terms of the GPL.
Enhancements:
- We added dd_rhelp, sdparm, mbr, and xfburn for starters. Updated programs: linux-2.6.22, e2fsprogs-1.40.2, ntfs-3g-1.710, dd_rescue-1.13, ddrescue-1.5, leafpad-0.8.11, file-4.21, testdisk-6.7, mdadm-2.6.1, pciutils-2.2.5, syslinux-3.51, isomaster-1.0, hdparm-7.4, xfsprogs_2.8.21-1, busybox-1.5.1, and usbutils-0.72. All menus are bypassed now. After the syslinux menu, it boots to the desktop without any other interruptions. You can now create the LiveUSB from the LiveCD by using our new USB Operations program...
<<lessParted Magic is based on my work from the GParted LiveCD project and falls under the terms of the GPL.
Enhancements:
- We added dd_rhelp, sdparm, mbr, and xfburn for starters. Updated programs: linux-2.6.22, e2fsprogs-1.40.2, ntfs-3g-1.710, dd_rescue-1.13, ddrescue-1.5, leafpad-0.8.11, file-4.21, testdisk-6.7, mdadm-2.6.1, pciutils-2.2.5, syslinux-3.51, isomaster-1.0, hdparm-7.4, xfsprogs_2.8.21-1, busybox-1.5.1, and usbutils-0.72. All menus are bypassed now. After the syslinux menu, it boots to the desktop without any other interruptions. You can now create the LiveUSB from the LiveCD by using our new USB Operations program...
Download (35.6MB)
Added: 2007-07-26 License: GPL (GNU General Public License) Price:
536 downloads
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.
<<lessSupported 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.
Download (1.3MB)
Added: 2007-08-10 License: GPL (GNU General Public License) Price:
510 downloads
List::Part 0.03
List::Part is a Perl module that allows you to partition one array into several. more>>
List::Part is a Perl module that allows you to partition one array into several.
SYNOPSIS
use List::Part;
($good, $bad)=part { !/substring/ } @array; #store arrayrefs into $good and $bad
(*good, *bad)=part { !/substring/ } @array; #store into @good and @bad
ABSTRACT
List::Part implements the part function, allowing one array to be "partitioned" into several based on the results of a code reference.
There are many applications in which the items of a list need to be categorized. For example, lets say you want to categorize lines in a log file:
my($success, $failure)=part { /^ERR/ } ;
Or, suppose you have a list of employees, and you need to determine their fate:
my($lay_off, $give_raise, $keep)=part {
$_->is_talented ? 0
: $_->is_executive ? 1
: 2
} @employees;
Actually, the second one is better suited to parts alternate form, parta:
my($lay_off, $give_raise, $keep)=parta
[ sub { $_->talented }, sub { $_->is_executive }, qr// ] =>
@employees;
Or maybe you just want yet another way to write the traditional Perl signoff:
perl -MList::Part -e"print map{@$_}part{$i++%5}split,JAercunrlkso ettPHr hea,"
List::Part can help you do those sorts of things.
<<lessSYNOPSIS
use List::Part;
($good, $bad)=part { !/substring/ } @array; #store arrayrefs into $good and $bad
(*good, *bad)=part { !/substring/ } @array; #store into @good and @bad
ABSTRACT
List::Part implements the part function, allowing one array to be "partitioned" into several based on the results of a code reference.
There are many applications in which the items of a list need to be categorized. For example, lets say you want to categorize lines in a log file:
my($success, $failure)=part { /^ERR/ } ;
Or, suppose you have a list of employees, and you need to determine their fate:
my($lay_off, $give_raise, $keep)=part {
$_->is_talented ? 0
: $_->is_executive ? 1
: 2
} @employees;
Actually, the second one is better suited to parts alternate form, parta:
my($lay_off, $give_raise, $keep)=parta
[ sub { $_->talented }, sub { $_->is_executive }, qr// ] =>
@employees;
Or maybe you just want yet another way to write the traditional Perl signoff:
perl -MList::Part -e"print map{@$_}part{$i++%5}split,JAercunrlkso ettPHr hea,"
List::Part can help you do those sorts of things.
Download (0.004MB)
Added: 2007-05-18 License: Perl Artistic License Price:
889 downloads
PAUD 2.0.3
PAUD is a Linux utility bootdisk. more>>
PAUD (Parted And Utilities Disk) is a Linux utility boot disk distribution. It fits on a single 1.44 floppy disk. It contains mc, parted, and other utilities such as filesystem utilities for ext2, ext3, and Reiserfs. It is great for partition maintenance and for rescue purposes.
The latest version of PAUD (1.0.4) has glibc-2.2.5, kernel 2.4.20, support for up to 4 virtual consoles. Kernel has DMA support (click here for more info on DMA) , SCSI support is not available out-of-the-box but it can be easily implemented.
The kernel has filesystem support for FAT/VFAT, EXT2, EXT3, ReiserFS 3.5, and ReiserFS 3.6 filesystems. Parted supports creating, resizing, copying, and destroying of these filesystem types (please read notes for reiserfs and ext3).
This is a list of all the commands, some of these commands are internal commands of busybox:
busybox commands:
[, ash, basename, busybox, cat, chgrp, chmod, chown, chroot, chvt, clear, cp, cut, date, dd, df, dirname, dmesg, du, echo, env, false, find, free, grep, gunzip, gzip, halt, head, id, init, kill, killall, klogd, linuxrc, ln, logger, ls, lsmod, mkdir, mknod, mkswap, modprobe, more, mount, mv, pidof, poweroff, ps, pwd, reboot, reset, rm, rmdir, sed, sh, sleep, sort, swapoff, swapon, sync, syslogd, tail, tar, test, touch, true, tty, umount, uname, uniq, uptime, wc, which, whoami, xargs, yes, zcat
Other commands:
e2fsck, hdparm, mc, mkreiserfs-3.5, parted, reiserfsck, tune2fs
Notes:
SCSI: SCSI support is not enabled in the kernel, if you wish to use scsi devices with PAUD, you can make a custom kernel and put it on the disk with the rootdisk. The docs section on the PAUD project page will show you how.
ntfs: Many people have asked about NTFS support, specifically the ntfsresize program. I cant fit this on the floppy, but an optional expansion floppy solution will be available shortly.
ReiserFS: mkreiserfs-3.5 can only make reiserfs filesystems version 3.5, if you want to make reiserfs version 3.6, use parted. All other reiserfs functions in parted, including resize, work for both versions. Run reiserfsck --fix-fixable after modifying any paritions from parted, to fix any potential problems.
Ext3: parted cannot create ext3 filesystems, although there is a simple way to do it in PAUD. First create an ext2 partition from parted, then create a journal to convert it to ext3 with tune2fs -j.
hdparm/DMA: DMA isnt enabled by default, hdparm fixes this problem by allowing you to enable DMA using the -d1 option. Using the hdparm disk speed test, i saw an increase in speed from 4.6 mb/sec (default) to 25.2 mb/sec (dma enabled).
mc: mc is a great way of transferring files between filesystems (for Windows/DOS users) or for editing files if you need to. It can also be useful if you ever need to use PAUD for rescue purposes.
mounting: If you get an error when mounting that a filesystem cannot be found on the device, a different filesystem may have been found. Type mount to see if it was actually mounted or not.
Enhancements:
- The kernel was updated to 2.4.20 to support hard drives that are greater than 137GB.
<<lessThe latest version of PAUD (1.0.4) has glibc-2.2.5, kernel 2.4.20, support for up to 4 virtual consoles. Kernel has DMA support (click here for more info on DMA) , SCSI support is not available out-of-the-box but it can be easily implemented.
The kernel has filesystem support for FAT/VFAT, EXT2, EXT3, ReiserFS 3.5, and ReiserFS 3.6 filesystems. Parted supports creating, resizing, copying, and destroying of these filesystem types (please read notes for reiserfs and ext3).
This is a list of all the commands, some of these commands are internal commands of busybox:
busybox commands:
[, ash, basename, busybox, cat, chgrp, chmod, chown, chroot, chvt, clear, cp, cut, date, dd, df, dirname, dmesg, du, echo, env, false, find, free, grep, gunzip, gzip, halt, head, id, init, kill, killall, klogd, linuxrc, ln, logger, ls, lsmod, mkdir, mknod, mkswap, modprobe, more, mount, mv, pidof, poweroff, ps, pwd, reboot, reset, rm, rmdir, sed, sh, sleep, sort, swapoff, swapon, sync, syslogd, tail, tar, test, touch, true, tty, umount, uname, uniq, uptime, wc, which, whoami, xargs, yes, zcat
Other commands:
e2fsck, hdparm, mc, mkreiserfs-3.5, parted, reiserfsck, tune2fs
Notes:
SCSI: SCSI support is not enabled in the kernel, if you wish to use scsi devices with PAUD, you can make a custom kernel and put it on the disk with the rootdisk. The docs section on the PAUD project page will show you how.
ntfs: Many people have asked about NTFS support, specifically the ntfsresize program. I cant fit this on the floppy, but an optional expansion floppy solution will be available shortly.
ReiserFS: mkreiserfs-3.5 can only make reiserfs filesystems version 3.5, if you want to make reiserfs version 3.6, use parted. All other reiserfs functions in parted, including resize, work for both versions. Run reiserfsck --fix-fixable after modifying any paritions from parted, to fix any potential problems.
Ext3: parted cannot create ext3 filesystems, although there is a simple way to do it in PAUD. First create an ext2 partition from parted, then create a journal to convert it to ext3 with tune2fs -j.
hdparm/DMA: DMA isnt enabled by default, hdparm fixes this problem by allowing you to enable DMA using the -d1 option. Using the hdparm disk speed test, i saw an increase in speed from 4.6 mb/sec (default) to 25.2 mb/sec (dma enabled).
mc: mc is a great way of transferring files between filesystems (for Windows/DOS users) or for editing files if you need to. It can also be useful if you ever need to use PAUD for rescue purposes.
mounting: If you get an error when mounting that a filesystem cannot be found on the device, a different filesystem may have been found. Type mount to see if it was actually mounted or not.
Enhancements:
- The kernel was updated to 2.4.20 to support hard drives that are greater than 137GB.
Download (1.4MB)
Added: 2005-12-25 License: GPL (GNU General Public License) Price:
1407 downloads
Card 304 0.6
Card 304 project is a software version of the 304 card game. more>>
Card 304 project is a software version of the 304 card game.
304 is a very popular card game in Northern parts of Sri Lanka. I am building a software version of it, so people can play it online!
<<less304 is a very popular card game in Northern parts of Sri Lanka. I am building a software version of it, so people can play it online!
Download (MB)
Added: 2006-11-22 License: GPL (GNU General Public License) Price:
1077 downloads
phpWebEd 2.1
phpWebEd provides a simple Content Management System for PHP enabled websites. more>>
phpWebEd provides a simple Content Management System for PHP enabled websites.
With phpWebEd you can edit predefined parts of your webpages on every place in the world with your favourite browser and without special HTML knowledge.
All what you need is Internet access and a webbrowser!
<<lessWith phpWebEd you can edit predefined parts of your webpages on every place in the world with your favourite browser and without special HTML knowledge.
All what you need is Internet access and a webbrowser!
Download (0.039MB)
Added: 2007-04-18 License: LGPL (GNU Lesser General Public License) Price:
919 downloads
Pantomime 1.2.0pre3
Pantomime project provides a set of Objective-C classes that model a mail system. more>>
Pantomime project provides a set of Objective-C classes that model a mail system. It is fully written in Objective-C (some very small parts in C where performance is critical), and is part of GNUMail.app.
Software that uses the Pantomime framework :
- Kodak EasyShare
- Dejal Simon
- GNUMail.app
- Mail Watch
- PriorityMail
- LuserNET
- SMARTReporter
- Balzac
- Phlink
- iSightWeb
- PhoneValet
- PhoneHerald
- Eggplant
- DEVONthink
<<lessSoftware that uses the Pantomime framework :
- Kodak EasyShare
- Dejal Simon
- GNUMail.app
- Mail Watch
- PriorityMail
- LuserNET
- SMARTReporter
- Balzac
- Phlink
- iSightWeb
- PhoneValet
- PhoneHerald
- Eggplant
- DEVONthink
Download (0.44MB)
Added: 2007-02-06 License: LGPL (GNU Lesser General Public License) Price:
992 downloads
Manencode 1.0
Manencode prepares video to be DVD-compliant. more>>
Manencode prepares video to be DVD-compliant.
Another module of the next MANDVD. This module will be use to transcode any video and edit them (cut part of film, add subtitle, adjust light / contrast / saturation).
<<lessAnother module of the next MANDVD. This module will be use to transcode any video and edit them (cut part of film, add subtitle, adjust light / contrast / saturation).
Download (0.51MB)
Added: 2007-07-08 License: GPL (GNU General Public License) Price:
857 downloads
Kpackage 3.5.2
Kpackage is a KDE tool for installing, viewing and uninstalling packages. more>>
Kpackage project is a KDE tool for installing, viewing and uninstalling packages.
The formats supported include RPM, Debian, Slackware and BSD package manager.
KPackage is part of the KDE project.
KPackage can be found in the kdeadmin package.
<<lessThe formats supported include RPM, Debian, Slackware and BSD package manager.
KPackage is part of the KDE project.
KPackage can be found in the kdeadmin package.
Download (2.0MB)
Added: 2006-05-17 License: GPL (GNU General Public License) Price:
1271 downloads
TransWhite 2.0
TransWhite is a simple system status theme. more>>
TransWhite is a simple system status theme.
Also included svg source file with all parts of interface.
Backgrounds for other than 2 filesystems sections also included (to use them You must edit theme file in section karamba, background and mountpoint definitions).
<<lessAlso included svg source file with all parts of interface.
Backgrounds for other than 2 filesystems sections also included (to use them You must edit theme file in section karamba, background and mountpoint definitions).
Download (0.055MB)
Added: 2006-07-06 License: GPL (GNU General Public License) Price:
1205 downloads
Kexi Report Part 0.0.4
Kexi Report Part is a reporting component for Kexi 1.6 based on OpenRPT 1.2. more>>
Kexi Report Part is a reporting component for Kexi 1.6 based on OpenRPT 1.2.
Main features:
- A report viewer for Kexi
- An external report designer (KexiReportWriter) based on the OpenRPT writer program
Known Working Features
- Page Header
- Page Footer
- Report Header
- Report Footer
- Detail section
- Labels
- Lines
- Fields
- Page Browser
How To Create Report
1. Install the component following the instructions in INSTALL
2. Run KexiReportWriter to start designing a report
3. Select Database->Connect to DB
4. Browse to an existing Kexi Database and open it
5. Create a new report (File->New)
6. Assign a data source to the report (Document->Properties)
7. Create the report using labels/fields/lines
8. Assign columns to the field objects (Double click for properties)
9. Save the report. (Database->Save to DB)
10. Load the database in Kexi and double click the report to view it
Enhancements:
- Removed requirement to have kexi source available to install the plugin.Done this by including the needed kexi headers in the package. Only downside is that kexi 1.1.3 (from koffice 1.6.3) is required.
<<lessMain features:
- A report viewer for Kexi
- An external report designer (KexiReportWriter) based on the OpenRPT writer program
Known Working Features
- Page Header
- Page Footer
- Report Header
- Report Footer
- Detail section
- Labels
- Lines
- Fields
- Page Browser
How To Create Report
1. Install the component following the instructions in INSTALL
2. Run KexiReportWriter to start designing a report
3. Select Database->Connect to DB
4. Browse to an existing Kexi Database and open it
5. Create a new report (File->New)
6. Assign a data source to the report (Document->Properties)
7. Create the report using labels/fields/lines
8. Assign columns to the field objects (Double click for properties)
9. Save the report. (Database->Save to DB)
10. Load the database in Kexi and double click the report to view it
Enhancements:
- Removed requirement to have kexi source available to install the plugin.Done this by including the needed kexi headers in the package. Only downside is that kexi 1.1.3 (from koffice 1.6.3) is required.
Download (1.7MB)
Added: 2007-06-17 License: GPL (GNU General Public License) Price:
525 downloads
fatresize 1.0.2
fatresize is a command line tool for non-destructive resizing of FAT16/FAT32 file systems. more>>
fatresize is a command line tool for non-destructive resizing of FAT16/FAT32 file systems. It is based on the GNU Parted library.
The main target of the project is to be used with the EVMS FAT plugin.
Enhancements:
- This version works properly with EVMS-partitions, and compiles with LFS support.
- The resize code was synchronized with the new version of the command-line parted utility.
<<lessThe main target of the project is to be used with the EVMS FAT plugin.
Enhancements:
- This version works properly with EVMS-partitions, and compiles with LFS support.
- The resize code was synchronized with the new version of the command-line parted utility.
Download (0.087MB)
Added: 2005-11-08 License: GPL (GNU General Public License) Price:
1449 downloads
LPlay 0.2.0 RC1
LPlay is part of Project Open Channel. more>>
LPlay is part of Project Open Channel. The LPlay plroject is a player for displaying different media on display(s). This can mean, for example, running a program loop on TVs.
<<less Download (0.65MB)
Added: 2006-11-10 License: GPL (GNU General Public License) Price:
1078 downloads
Mupper 1.0
Mupper is a Rescue-cd project for the pegasos computers. more>>
Mupper is a Rescue-cd project for the pegasos computers. Mupper rescue CD is based on Gentoo/Linux.
Mupper contains various tools like parted, midnight-commander and support for various filesystems (not SFS), but support for FAT,VFAT, ReiserFS,XFS and EXT3. Some network tools is also included like snort and tcpdump.
Enhancements:
- Now a full gcc is included with X and fluxbox.
- Also firefox is added.
- QT and GTK2+ toolkits is added.
- This released is a totaly makeover for mupper.
<<lessMupper contains various tools like parted, midnight-commander and support for various filesystems (not SFS), but support for FAT,VFAT, ReiserFS,XFS and EXT3. Some network tools is also included like snort and tcpdump.
Enhancements:
- Now a full gcc is included with X and fluxbox.
- Also firefox is added.
- QT and GTK2+ toolkits is added.
- This released is a totaly makeover for mupper.
Download (324MB)
Added: 2006-01-17 License: GPL (GNU General Public License) Price:
1377 downloads
Search Into Directory 0.1
Search Into Directory starts a kfind window (part of kdebase) ready to search into the selected directory. more>>
With this service menu you will be able to search into directory by right-clicking on it. Search Into Directory starts a kfind window (part of kdebase) ready to search into the selected directory.
Note : This servicemenu is in fact duplicated of an existing one on kde-apps. So Ive removed mine and I wont maintain it. Youll find another one named Find in Folder
<<lessNote : This servicemenu is in fact duplicated of an existing one on kde-apps. So Ive removed mine and I wont maintain it. Youll find another one named Find in Folder
Download (0.083MB)
Added: 2006-07-26 License: GPL (GNU General Public License) Price:
1185 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 parted 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