laptop disk drives
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 1789
laptop 1.0
laptop is a small theme designed to show the battery laptop status. more>>
laptop is a small theme designed to show the battery laptop status.
The theme look is based on aSensors theme. The basic idea, the battery icons and some of the code is from the sk_battery applet. Other parts are taken from the superkaramba examples.
After I made the first parts, I realized there is too much space left on the panel, so I put a mixer on the widget and a penguin to kill the useless applets (when on battery, I usually dont have internet connection, so I dont need eg. kopete and kcheckgmail).
Note that the penguin-menu appears only when the widget is locked.
I planned first this penguin to hibernate the computer, but this can be done using KLaptop, so it would b useless. If you want to include this feature, Ive left the icon in the pics directory, you can modify the code, eg. by uncommenting and modifying the last line in laptop.theme.
Dont forget to modify the paths for the icons in laptop.py!
<<lessThe theme look is based on aSensors theme. The basic idea, the battery icons and some of the code is from the sk_battery applet. Other parts are taken from the superkaramba examples.
After I made the first parts, I realized there is too much space left on the panel, so I put a mixer on the widget and a penguin to kill the useless applets (when on battery, I usually dont have internet connection, so I dont need eg. kopete and kcheckgmail).
Note that the penguin-menu appears only when the widget is locked.
I planned first this penguin to hibernate the computer, but this can be done using KLaptop, so it would b useless. If you want to include this feature, Ive left the icon in the pics directory, you can modify the code, eg. by uncommenting and modifying the last line in laptop.theme.
Dont forget to modify the paths for the icons in laptop.py!
Download (0.054MB)
Added: 2006-06-23 License: GPL (GNU General Public License) Price:
1225 downloads
Old Laptop As Firewall 1.2
Old Laptop As Firewall is a single floppy Linux with 16-bit PCMCIA support and PPP for using a Pentium I/II laptop as a firewall more>>
Old Laptop As Firewall is a single, 1440kb floppy Linux with 16-bit PCMCIA support and PPP for using a Pentium I/II laptop to firewall a dial-up connection.
The floppy is msdos-formatted and uses Syslinux to boot into a 4MB ramdisk with a Minix version 2 filesystem. The system was compiled with uClibc 0.9.28.
Main features:
- 2.4.34 non-modular kernel, compressed with lzma
- uClibc 0.9.28
- busybox 1.4.1
- pcmcia-cs 3.2.8
- pppd 2.4.4b1
- iptables 1.3.7
- dnsmasq 2.35
- 100 kb free on the floppy to add more programs!
Version restrictions:
- OLAF has not been tested with more than one computer behind
- the firewall (I only have two boxes to work with.)
- The supplied chat script probably wont work for many people.
- There currently isnt any support for local timezones.
- The Windows and Mac support is lacking; I dont have
- either OS to work with.
Enhancements:
- The file permissions in /etc/* were changed from 0600 to 0644 on all plain text files except gshadow, shadow, and ppp/pap-secrets.
- The file permissions on /bin/busybox were changed from 0700 to 0755.
- The original permissions were too strict for dnsmasq, which runs as user nobody and couldnt access /etc/hosts.
<<lessThe floppy is msdos-formatted and uses Syslinux to boot into a 4MB ramdisk with a Minix version 2 filesystem. The system was compiled with uClibc 0.9.28.
Main features:
- 2.4.34 non-modular kernel, compressed with lzma
- uClibc 0.9.28
- busybox 1.4.1
- pcmcia-cs 3.2.8
- pppd 2.4.4b1
- iptables 1.3.7
- dnsmasq 2.35
- 100 kb free on the floppy to add more programs!
Version restrictions:
- OLAF has not been tested with more than one computer behind
- the firewall (I only have two boxes to work with.)
- The supplied chat script probably wont work for many people.
- There currently isnt any support for local timezones.
- The Windows and Mac support is lacking; I dont have
- either OS to work with.
Enhancements:
- The file permissions in /etc/* were changed from 0600 to 0644 on all plain text files except gshadow, shadow, and ppp/pap-secrets.
- The file permissions on /bin/busybox were changed from 0700 to 0755.
- The original permissions were too strict for dnsmasq, which runs as user nobody and couldnt access /etc/hosts.
Download (1.4MB)
Added: 2007-03-08 License: GPL (GNU General Public License) Price:
961 downloads
AppleII::Disk 0.08
AppleII::Disk is a Perl module for block-level access to Apple II disk image files. more>>
AppleII::Disk is a Perl module for block-level access to Apple II disk image files.
SYNOPSIS
use AppleII::Disk;
my $disk = AppleII::Disk->new(image.dsk);
my $data = $disk->read_block(1); # Read block 1
$disk->write_block(1, $data); # And write it back :-)
AppleII::Disk provides block-level access to the Apple II disk image files used by most Apple II emulators. (For information about Apple II emulators, try the Apple II Emulator Page at http://www.ecnet.net/users/mumbv/pages/apple2.shtml.) For a higher-level interface, use the AppleII::ProDOS module.
AppleII::Disk provides the following methods:
$disk = AppleII::Disk->new($filename, [$mode])
Constructs a new AppleII::Disk object. $filename is the name of the image file. The optional $mode is a string specifying how to open the image. It can consist of the following characters (case sensitive):
r Allow reads (this is actually ignored; you can always read)
w Allow writes
d Disk image is in DOS 3.3 order
p Disk image is in ProDOS order
If you dont specify d or p, then the format is guessed from the filename. .PO and .HDV files are ProDOS order, and anything else is assumed to be DOS 3.3 order.
If you specify w to allow writes, then the image file is created if it doesnt already exist.
$size = $disk->blocks([$newsize])
Gets or sets the size of the disk in blocks. $newsize is the new size of the disk in blocks. If $newsize is omitted, then the size is not changed. Returns the size of the disk image in blocks.
This refers to the logical size of the disk image. Blocks outside the physical size of the disk image read as all zeros. Writing to such a block will expand the image file.
When you create a new image file, you must use blocks to set its size before writing to it.
$contents = $disk->read_block($block)
Reads one block from the disk image. $block is the block number to read.
$contents = $disk->read_blocks(@blocks)
Reads a sequence of blocks from the disk image. @blocks is a reference to an array of block numbers. As a special case, block 0 cannot be read by this method. Instead, it returns a block full of 0 bytes. This is how sparse files are implemented. If you want to read the actual contents of block 0, you must call $disk->read_block(0) directly.
$contents = $disk->read_sector($track, $sector)
Reads one sector from the disk image. $track is the track number, and $sector is the DOS 3.3 logical sector number. This is currently implemented only for DOS 3.3 order images.
$disk->fully_allocate()
Expands the the physical size of the disk image file to match the logical size of the disk image. It will be expanded as a sparse file if the filesystem containing the image file supports sparse files.
$disk->write_block($block, $contents, [$pad])
Writes one block to the disk image. $block is the block number to write. $contents is the data to write. The optional $pad is a character to pad the block with (out to 512 bytes). If $pad is omitted or null, then $contents must be exactly 512 bytes.
$disk->write_blocks(@blocks, $contents, [$pad])
Writes a sequence of blocks to the disk image. @blocks is a reference to an array of block numbers to write. $contents is the data to write. It is broken up into 512 byte chunks and written to the blocks. The optional $pad is a character to pad the data with (out to a multiple of 512 bytes). If $pad is omitted or null, then $contents must be exactly 512 bytes times the number of blocks.
As a special case, block 0 cannot be written by this method. Instead, that block of $contents is just skipped. This is how sparse files are implemented. If you want to write the contents of block 0, you must call $disk->write_block directly.
$disk->write_sector($track, $sector, $contents, [$pad])
Writes one sector to the disk image. $track is the track number, and $sector is the DOS 3.3 logical sector number. $contents is the data to write. The optional $pad is a character to pad the sector with (out to 256 bytes). If $pad is omitted or null, then $contents must be exactly 256 bytes. This is currently implemented only for DOS 3.3 order images.
$padded = AppleII::Disk::pad_block($data, [$pad, [$length]])
Pads $data out to $length bytes with $pad. Returns the padded string; the original is not altered. Dies if $data is longer than $length. The default $pad is " ", and the default $length is 512 bytes.
If $pad is the null string (not undef), just checks to make sure that $data is exactly $length bytes and returns the original string. Dies if $data is not exactly $length bytes.
pad_block is a subroutine, not a method, and is not exported. You probably dont need to call it directly anyway, because the write_XXX methods will call it for you.
<<lessSYNOPSIS
use AppleII::Disk;
my $disk = AppleII::Disk->new(image.dsk);
my $data = $disk->read_block(1); # Read block 1
$disk->write_block(1, $data); # And write it back :-)
AppleII::Disk provides block-level access to the Apple II disk image files used by most Apple II emulators. (For information about Apple II emulators, try the Apple II Emulator Page at http://www.ecnet.net/users/mumbv/pages/apple2.shtml.) For a higher-level interface, use the AppleII::ProDOS module.
AppleII::Disk provides the following methods:
$disk = AppleII::Disk->new($filename, [$mode])
Constructs a new AppleII::Disk object. $filename is the name of the image file. The optional $mode is a string specifying how to open the image. It can consist of the following characters (case sensitive):
r Allow reads (this is actually ignored; you can always read)
w Allow writes
d Disk image is in DOS 3.3 order
p Disk image is in ProDOS order
If you dont specify d or p, then the format is guessed from the filename. .PO and .HDV files are ProDOS order, and anything else is assumed to be DOS 3.3 order.
If you specify w to allow writes, then the image file is created if it doesnt already exist.
$size = $disk->blocks([$newsize])
Gets or sets the size of the disk in blocks. $newsize is the new size of the disk in blocks. If $newsize is omitted, then the size is not changed. Returns the size of the disk image in blocks.
This refers to the logical size of the disk image. Blocks outside the physical size of the disk image read as all zeros. Writing to such a block will expand the image file.
When you create a new image file, you must use blocks to set its size before writing to it.
$contents = $disk->read_block($block)
Reads one block from the disk image. $block is the block number to read.
$contents = $disk->read_blocks(@blocks)
Reads a sequence of blocks from the disk image. @blocks is a reference to an array of block numbers. As a special case, block 0 cannot be read by this method. Instead, it returns a block full of 0 bytes. This is how sparse files are implemented. If you want to read the actual contents of block 0, you must call $disk->read_block(0) directly.
$contents = $disk->read_sector($track, $sector)
Reads one sector from the disk image. $track is the track number, and $sector is the DOS 3.3 logical sector number. This is currently implemented only for DOS 3.3 order images.
$disk->fully_allocate()
Expands the the physical size of the disk image file to match the logical size of the disk image. It will be expanded as a sparse file if the filesystem containing the image file supports sparse files.
$disk->write_block($block, $contents, [$pad])
Writes one block to the disk image. $block is the block number to write. $contents is the data to write. The optional $pad is a character to pad the block with (out to 512 bytes). If $pad is omitted or null, then $contents must be exactly 512 bytes.
$disk->write_blocks(@blocks, $contents, [$pad])
Writes a sequence of blocks to the disk image. @blocks is a reference to an array of block numbers to write. $contents is the data to write. It is broken up into 512 byte chunks and written to the blocks. The optional $pad is a character to pad the data with (out to a multiple of 512 bytes). If $pad is omitted or null, then $contents must be exactly 512 bytes times the number of blocks.
As a special case, block 0 cannot be written by this method. Instead, that block of $contents is just skipped. This is how sparse files are implemented. If you want to write the contents of block 0, you must call $disk->write_block directly.
$disk->write_sector($track, $sector, $contents, [$pad])
Writes one sector to the disk image. $track is the track number, and $sector is the DOS 3.3 logical sector number. $contents is the data to write. The optional $pad is a character to pad the sector with (out to 256 bytes). If $pad is omitted or null, then $contents must be exactly 256 bytes. This is currently implemented only for DOS 3.3 order images.
$padded = AppleII::Disk::pad_block($data, [$pad, [$length]])
Pads $data out to $length bytes with $pad. Returns the padded string; the original is not altered. Dies if $data is longer than $length. The default $pad is " ", and the default $length is 512 bytes.
If $pad is the null string (not undef), just checks to make sure that $data is exactly $length bytes and returns the original string. Dies if $data is not exactly $length bytes.
pad_block is a subroutine, not a method, and is not exported. You probably dont need to call it directly anyway, because the write_XXX methods will call it for you.
Download (0.037MB)
Added: 2007-05-28 License: Perl Artistic License Price:
881 downloads
Apple Disk Transfer ProDOS 1.0.2
Apple Disk Transfer ProDOS transfers diskettes and logical disk images between Apple ][-era computers and the modern world. more>>
Apple Disk Transfer ProDOS (or ADTPro for short) transfers diskettes and logical disk images between Apple ][-era computers and the modern world. If youre familiar with the original ADT, ADTPro extends ADTs reach by working with more logical disk formats, drive types, communications devices, and host operating systems.
Main features:
- Compatibility with any device ProDOS can read
- Compatibility with any Apple ][ (or clone) computer with 64k memory
- Compatibility with many logical disk image formats: .DSK, .PO, .NIB, 2IMG
- Server compatibility with original ADT client program
- Server compatibility with Windows, Mac OSX, Linux, and probably Solaris
- Ability to bootstrap an Apple ][ from bare metal over serial or cassette ports
- Ability to send floppies in "batch" mode without having to name each one
Server
The server program runs on a computer capable of running Java. Depending on how you want to connect to your Apple, you might also need a serial port and cables, an Uthernet card for your apple, or a couple of audio patch cables. The server offers a compact user interface that shows what communications are taking place between the host and the Apple ][.
The servers primary role is to send and receive disk images as requested from the client. But if you have recently acquired an Apple and a disk drive, and you have no software for it - youre in a bit of a tricky situation if you want to move software from the Internet all the way to your shiny new Apple. ADTPros server can help get you get bootstrapped.
Client
The client side runs on the Apple ][. It handles most of the user interaction. When choosing disks/volumes to transfer, anything that ProDOS can see is fair game. Transferring data occurs with a 20k buffer on the Apple, so all transfers are broken up into 20k chunks. A progress indicator shows how far it is into the current chunk, as well as a running count of the total progress.
Enhancements:
- This release has been enhanced with Jean-Marc Boutillon (Deckard)s FASTDSK fast Disk II reading routines.
- This results in a speed boost of 25%-33% for Disk II to host transfers.
- Bootstrapping operations have been reduced, as there is no longer a dependency on ProDOS BASIC.
<<lessMain features:
- Compatibility with any device ProDOS can read
- Compatibility with any Apple ][ (or clone) computer with 64k memory
- Compatibility with many logical disk image formats: .DSK, .PO, .NIB, 2IMG
- Server compatibility with original ADT client program
- Server compatibility with Windows, Mac OSX, Linux, and probably Solaris
- Ability to bootstrap an Apple ][ from bare metal over serial or cassette ports
- Ability to send floppies in "batch" mode without having to name each one
Server
The server program runs on a computer capable of running Java. Depending on how you want to connect to your Apple, you might also need a serial port and cables, an Uthernet card for your apple, or a couple of audio patch cables. The server offers a compact user interface that shows what communications are taking place between the host and the Apple ][.
The servers primary role is to send and receive disk images as requested from the client. But if you have recently acquired an Apple and a disk drive, and you have no software for it - youre in a bit of a tricky situation if you want to move software from the Internet all the way to your shiny new Apple. ADTPros server can help get you get bootstrapped.
Client
The client side runs on the Apple ][. It handles most of the user interaction. When choosing disks/volumes to transfer, anything that ProDOS can see is fair game. Transferring data occurs with a 20k buffer on the Apple, so all transfers are broken up into 20k chunks. A progress indicator shows how far it is into the current chunk, as well as a running count of the total progress.
Enhancements:
- This release has been enhanced with Jean-Marc Boutillon (Deckard)s FASTDSK fast Disk II reading routines.
- This results in a speed boost of 25%-33% for Disk II to host transfers.
- Bootstrapping operations have been reduced, as there is no longer a dependency on ProDOS BASIC.
Download (MB)
Added: 2007-08-13 License: GPL (GNU General Public License) Price:
816 downloads
Laptop-Hotswap 0.3.6
Laptop-Hotswap kernel module enables hot-swapping for disk drives with full DMA support under Linux. more>>
Laptop-Hotswap kernel module enables hot-swapping for disk drives with full DMA support under Linux. It requires kernel 2.6.15+ and ACPI.
I think it ought to work on just about any laptop, although Im not as familiar with ACPI as Id like to be. It works fine on my T22. There could be issues with laptops with two expansion bays -- I shut down the entire ide1 interface and fire it back up, and I do all my watching on the ACPI device for the IDE1/Master. So if you had a slave device, and you ejected the master, your slave will go bye-bye. Thinking about ways around that, but they dont export too much of the ide driver. I think itd be easy to handle, you just have to make sure youre not using either master or slave whenever you eject one of them.
At least on my laptop, dont go pulling things while your laptop is sleeping. Do it when its awake.
The floppy support should work, but my floppy drive isnt with me right now.
Theres one parameter -- auto_eject. If you set it to 1, the driver will automatically shut down and unregister the IDE interface upon getting a request for ejection (On my T22, I pull a little switch and a lever pops out -- the drive is still connected at that point, but it shows as a request for ejection). If your laptop doesnt have a mechanism for that:
echo -n "MSTR eject" > /proc/acpi/lths
Will shut down and software-eject the drive, and you can safely pull it and insert another.
See the scripts in config/ -- theyre made to work with acpid to handle the ejection and umounting and insertion. The mount/umount stuff only matters for a drive caddy, I suppose.
It shouldnt matter what you have in your laptop at boot. This module also fixes that annoying thing on my T22 where if I dont have a ultrabay battery in at boot, I cant ever see its status.
Enhancements:
- Support for the Fujitsu S7020 (and possibly other laptops using a PATA bay with an SATA main disk).
<<lessI think it ought to work on just about any laptop, although Im not as familiar with ACPI as Id like to be. It works fine on my T22. There could be issues with laptops with two expansion bays -- I shut down the entire ide1 interface and fire it back up, and I do all my watching on the ACPI device for the IDE1/Master. So if you had a slave device, and you ejected the master, your slave will go bye-bye. Thinking about ways around that, but they dont export too much of the ide driver. I think itd be easy to handle, you just have to make sure youre not using either master or slave whenever you eject one of them.
At least on my laptop, dont go pulling things while your laptop is sleeping. Do it when its awake.
The floppy support should work, but my floppy drive isnt with me right now.
Theres one parameter -- auto_eject. If you set it to 1, the driver will automatically shut down and unregister the IDE interface upon getting a request for ejection (On my T22, I pull a little switch and a lever pops out -- the drive is still connected at that point, but it shows as a request for ejection). If your laptop doesnt have a mechanism for that:
echo -n "MSTR eject" > /proc/acpi/lths
Will shut down and software-eject the drive, and you can safely pull it and insert another.
See the scripts in config/ -- theyre made to work with acpid to handle the ejection and umounting and insertion. The mount/umount stuff only matters for a drive caddy, I suppose.
It shouldnt matter what you have in your laptop at boot. This module also fixes that annoying thing on my T22 where if I dont have a ultrabay battery in at boot, I cant ever see its status.
Enhancements:
- Support for the Fujitsu S7020 (and possibly other laptops using a PATA bay with an SATA main disk).
Download (0.014MB)
Added: 2006-04-27 License: GPL (GNU General Public License) Price:
1276 downloads
Video Disk Recorder 1.4.4
Video Disk Recorder is a digital satellite receiver program using Linux and DVB technologies. more>>
Video Disk Recorder (VDR) is a digital satellite receiver program using Linux and DVB technologies. Video Disk Recorder can record MPEG2 streams, as well as output the stream to TV. It also supports plugins for DVD, DivX, or MP3 playback and more.
Main features:
- Operation entirely via DVB cards On Screen Display and infrared control (LIRC/RCU) or keyboard
- Support for multiple DVB cards (up to four, at least one full featured card with video out required) and "conditional access" (CICAM)
- Channel groups
- EPG display by channel or by time ("Whats on now/next")
- Timers: Programming via EPG or manually, priority/lifetime model, single-shot or repeating timers which use EPG subtitle info as recordings title additionally
- Recording storage on disk: Automatically splitting of recording into files (<<less
Main features:
- Operation entirely via DVB cards On Screen Display and infrared control (LIRC/RCU) or keyboard
- Support for multiple DVB cards (up to four, at least one full featured card with video out required) and "conditional access" (CICAM)
- Channel groups
- EPG display by channel or by time ("Whats on now/next")
- Timers: Programming via EPG or manually, priority/lifetime model, single-shot or repeating timers which use EPG subtitle info as recordings title additionally
- Recording storage on disk: Automatically splitting of recording into files (<<less
Download (0.47MB)
Added: 2006-11-12 License: GPL (GNU General Public License) Price:
1093 downloads
Knopperdisk 0.4.1
Knopperdisk is a Linux distribution designed for a USB pen drive. more>>
Knopperdisk is a Linux distribution designed for a USB pen drive.
The USB version is more than just a rescue disk. Its based on Gentoo and contains various other programs/utilities such as network related tools (nmap, ettercap).
The floppy version is a so called rescue disk which is a compilation of uclibc and busybox among other utilities. It even has a ssh client provided by dropbear (congrats to the author) and some filesystem tools.
<<lessThe USB version is more than just a rescue disk. Its based on Gentoo and contains various other programs/utilities such as network related tools (nmap, ettercap).
The floppy version is a so called rescue disk which is a compilation of uclibc and busybox among other utilities. It even has a ssh client provided by dropbear (congrats to the author) and some filesystem tools.
Download (62.4MB)
Added: 2007-03-21 License: GPL (GNU General Public License) Price:
947 downloads
Laplock 0.0.5
Laplock project locks your computer or laptop using a media card such as USB memory, SD, MMC, or a Memory Stick. more>>
Laplock project locks your computer or laptop using a media card such as USB memory, SD, MMC, or a Memory Stick. Once you register a unique card, the program starts xlock or xscreensaver when it is removed and stops it once it is plugged in again.
INSTALLATION
you need: udev, the userspace dev tools. This does
not work with devfs.
you can execute everything you want, but a screensaver
would be the best. so install xlock or xscreensaver
1) just type make to compile laplock.
2) type make install to install the binary to /usr/bin
and the sample conf file to /etc/
(you can type make DESTDIR=what/ever/ install to
install it for packages or so.)
3) edit /etc/laplock.conf.example and move it to
/etc/laplock.conf.
and youre done. have fun.
CONFIGURATION
in version 0.0.3 you only need 3 variables to set.
DEVICE
the device to watch. fire up udevmonitor
and plug in a card into your reader. normally
there are 3 lines with add@ and many shit.
(also the device)
UUID
close udevmonitor and go to /dev/disk/by-uuid/
there is a new file with the unique id of your
card.
EXECUTE
this command will be started, when you insert
your mastercard. xlock is very nice and works
good.
Enhancements:
- Debug mode was implemented with laplock -d.
- A lot of code cleaning was done in laplock.c and udev.h.
- An application is started with fork() instead of with system() and bash.
- getopt_long is used for parameters now.
- Nice indent schemes were added to the Makefile.
<<lessINSTALLATION
you need: udev, the userspace dev tools. This does
not work with devfs.
you can execute everything you want, but a screensaver
would be the best. so install xlock or xscreensaver
1) just type make to compile laplock.
2) type make install to install the binary to /usr/bin
and the sample conf file to /etc/
(you can type make DESTDIR=what/ever/ install to
install it for packages or so.)
3) edit /etc/laplock.conf.example and move it to
/etc/laplock.conf.
and youre done. have fun.
CONFIGURATION
in version 0.0.3 you only need 3 variables to set.
DEVICE
the device to watch. fire up udevmonitor
and plug in a card into your reader. normally
there are 3 lines with add@ and many shit.
(also the device)
UUID
close udevmonitor and go to /dev/disk/by-uuid/
there is a new file with the unique id of your
card.
EXECUTE
this command will be started, when you insert
your mastercard. xlock is very nice and works
good.
Enhancements:
- Debug mode was implemented with laplock -d.
- A lot of code cleaning was done in laplock.c and udev.h.
- An application is started with fork() instead of with system() and bash.
- getopt_long is used for parameters now.
- Nice indent schemes were added to the Makefile.
Download (0.011MB)
Added: 2007-02-28 License: GPL (GNU General Public License) Price:
968 downloads
NCurses Disk Usage 1.3
NCurses Disk Usage provides a fast and easy interface to your harddrive. more>>
As the name already suggests, ncdu is an NCurses version of the famous old du unix command.
NCurses Disk Usage provides a fast and easy interface to your harddrive. Where is your disk space going? Why is your home directory that large? ncdu can answer those questions for you in just a matter of seconds!
<<lessNCurses Disk Usage provides a fast and easy interface to your harddrive. Where is your disk space going? Why is your home directory that large? ncdu can answer those questions for you in just a matter of seconds!
Download (0.089MB)
Added: 2007-08-06 License: MIT/X Consortium License Price:
813 downloads
Super Grub Disk 0.9598
Super Grub Disk is a bootable floppy or CDROM that is oriented towards system rescue. 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.
Super Grub Disk project has multi-language support, and allows you to change the keyboard layout of your shell.
<<lessSuper 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.
Super Grub Disk project has multi-language support, and allows you to change the keyboard layout of your shell.
Download (0.39MB)
Added: 2007-08-07 License: GPL (GNU General Public License) Price:
754 downloads
Hard Disk Temperature Monitor
Hard Disk Temperature Monitor is a SuperKaramba theme that monitors the hard drive temperature. more>>
Hard Disk Temperature Monitor is my first superkaramba theme, it uses the package hddtemp, please verify if your system has it installed.
I modify this image(http://www.kde-look.org/content/show.php?content=28748)
And made the Icon, from 2 images from the web.
The entire theme is in spanish, but you can translate to any language.
I really apreciate your comments!
Thank you so much, and greetings from Medellin-Colombia!
<<lessI modify this image(http://www.kde-look.org/content/show.php?content=28748)
And made the Icon, from 2 images from the web.
The entire theme is in spanish, but you can translate to any language.
I really apreciate your comments!
Thank you so much, and greetings from Medellin-Colombia!
Download (0.006MB)
Added: 2006-06-23 License: GPL (GNU General Public License) Price:
1243 downloads
GRUB Disk 0.95+cvs20040624-17
GRUB Disk package contains a GRUB rescue disk. more>>
GRUB Disk package contains a GRUB rescue disk.
It consists of a bootable 1.44 floppy image you can use to grab a rescue disk or be run in an i386 emulator, like Bochs.
GNU GRUB is a Multiboot boot loader. It was derived from GRUB,
GRand Unified Bootloader, which was originally designed and implemented by Erich Stefan Boleyn.
Briefly, boot loader is the first software program that runs when a computer starts. It is responsible for loading and transferring control to the operating system kernel software (such as the Hurd or the Linux). The kernel, in turn, initializes the rest of the operating system (e.g. GNU).
<<lessIt consists of a bootable 1.44 floppy image you can use to grab a rescue disk or be run in an i386 emulator, like Bochs.
GNU GRUB is a Multiboot boot loader. It was derived from GRUB,
GRand Unified Bootloader, which was originally designed and implemented by Erich Stefan Boleyn.
Briefly, boot loader is the first software program that runs when a computer starts. It is responsible for loading and transferring control to the operating system kernel software (such as the Hurd or the Linux). The kernel, in turn, initializes the rest of the operating system (e.g. GNU).
Download (0.34MB)
Added: 2006-08-02 License: GPL (GNU General Public License) Price:
1194 downloads
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.
<<lessSuper 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.
Download (164.1MB)
Added: 2007-08-02 License: GPL (GNU General Public License) Price:
550 downloads
Disk Manager 1.0.1
Disk manager is a simple filesystem configurator. more>>
Disk Manager project is a simple filesystem configurator that allow you to:
- Automaticly detect new partitions at startup.
- Fully manage configuration of filesystem.
- Enable/disable write support for NTFS (need ntfs-3g installed).
<<less- Automaticly detect new partitions at startup.
- Fully manage configuration of filesystem.
- Enable/disable write support for NTFS (need ntfs-3g installed).
Download (0.055MB)
Added: 2007-07-17 License: GPL (GNU General Public License) Price:
520 downloads
X11 Disk Activity Feedback A.01.11.01
X11 Disk Activity Feedback shows disk activity by animating the X11 cursor. more>>
X11 Disk Activity Feedback shows disk activity by animating the X11 cursor.
It provides a visual feedback of local disk activity by changing the default X11 mouse pointer to an animated wheel.
Installation:
Untar and change into the new directory and:
# xmkmf
# make
# make install
<<lessIt provides a visual feedback of local disk activity by changing the default X11 mouse pointer to an animated wheel.
Installation:
Untar and change into the new directory and:
# xmkmf
# make
# make install
Download (0.012MB)
Added: 2006-09-27 License: GPL (GNU General Public License) Price:
1124 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 laptop disk drives 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