nlite sata
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 24
srcat Alpha-0
srcat project can retrieve data from disks once used in a Coraid SR (SATA+RAID) appliance. more>>
srcat project can retrieve data from disks once used in a Coraid SR (SATA+RAID) appliance.
Enhancements:
- This initial alpha release retrieves data from disks that previously composed a clean RAID 5 in a Coraid SR.
- The retrieval takes place on a POSIX platform, independently of the SR unit.
- Support for RAID arrays missing disks and for levels besides RAID 5 has yet to be added.
<<lessEnhancements:
- This initial alpha release retrieves data from disks that previously composed a clean RAID 5 in a Coraid SR.
- The retrieval takes place on a POSIX platform, independently of the SR unit.
- Support for RAID arrays missing disks and for levels besides RAID 5 has yet to be added.
Download (0.007MB)
Added: 2006-07-03 License: GPL (GNU General Public License) Price:
1214 downloads
Mounttero 0.4
Mounttero is a tool for automatically mounting drives using autofs. more>>
Mounttero automatically mounts most storage devices such as USB drives and cameras, DVDs, CDROMs, hard disks, and floppies.
Devices are mounted when users opens their directory, such as /mnt/auto/cdrom, and are unmounted when the directory remains unused for four seconds.
Usage
For example, when user opens directory /mnt/auto/usb/, digital camera is automatically mounted and all the pictures shown in the directory. After four seconds of inactivity, device is unmounted and can be detached.
Manual Configuration
The rest of this document describes manual configuration of mounttero. If you installed the rpm, it did all this configuration automatically and you dont need manual configuration. The scripts below contain some latest and greatest version 0.5 improvements that have not made it to rpm yet, namely more usb partitions.
Create the directories used by the automounter. The directory is the one mentioned in /etc/auto.master:
# mkdir -p /mnt/auto/autofs
Create auto.master to tell autofs daemon that /mnt/auto/autofs directory is handled according to auto.tero
# /etc/auto.master
# mountpoint map options # see also: man 8 autofs
/mnt/auto/autofs /etc/auto.tero --timeout=4
List the actual mountpoints and devices in the automounter map
# /etc/auto.tero
# http://iki.fi/karvinen/linux/doc/automatic-mounting-autofs.html
# mountpoint_key options location_device # man 5 autofs
cdrom -fstype=auto,ro,nosuid,nodev,user :/dev/cdrom
cdrom1 -fstype=auto,ro,nosuid,nodev,user :/dev/cdrom1
usb -fstype=auto,nosuid,nodev,noexec,user,gid=100,umask=000 :/dev/sda1
# second and third partitions in usb device:
usb2 -fstype=auto,nosuid,nodev,noexec,user,gid=100,umask=000 :dev/sda2
usb3 -fstype=auto,nosuid,nodev,noexec,user,gid=100,umask=000 :dev/sda3
floppy -fstype=auto,nosuid,nodev,noexec,user,gid=100,umask=000 :/dev/fd0
hda1 -fstype=auto,nosuid,nodev,user :/dev/hda1
hda2 -fstype=auto,nosuid,nodev,user :/dev/hda2
hda3 -fstype=auto,nosuid,nodev,user :/dev/hda3
hda4 -fstype=auto,nosuid,nodev,user :/dev/hda4
hdb1 -fstype=auto,nosuid,nodev,user :/dev/hdb1
hdb2 -fstype=auto,nosuid,nodev,user :/dev/hdb2
hdb3 -fstype=auto,nosuid,nodev,user :/dev/hdb3
hdb4 -fstype=auto,nosuid,nodev,user :/dev/hdb4
hdc1 -fstype=auto,nosuid,nodev,user :/dev/hdc1
hdc2 -fstype=auto,nosuid,nodev,user :/dev/hdc2
hdc3 -fstype=auto,nosuid,nodev,user :/dev/hdc3
hdc4 -fstype=auto,nosuid,nodev,user :/dev/hdc4
hdd1 -fstype=auto,nosuid,nodev,user :/dev/hdd1
hdd2 -fstype=auto,nosuid,nodev,user :/dev/hdd2
hdd3 -fstype=auto,nosuid,nodev,user :/dev/hdd3
hdd4 -fstype=auto,nosuid,nodev,user :/dev/hdd4
# Serial ATA (SATA) disks are IDE emulated in Linux 2.6
hde1 -fstype=auto,nosuid,nodev,user :/dev/hde1
hde2 -fstype=auto,nosuid,nodev,user :/dev/hde2
hde3 -fstype=auto,nosuid,nodev,user :/dev/hde3
hde4 -fstype=auto,nosuid,nodev,user :/dev/hde4
# (c) 2003, 2004-05-29, 2004-09-19 Tero.Karvinen atta iki.fi
# /etc/init.d/autofs restart
Now drives are automatically mounted when you try to access them. You can test it by inserting a cdrom, and cd /mnt/auto/autofs/cdrom. The CDROM is automatically mounted, and ls should show you contents of the cd. When you cd to another directory, such as home directory (cd), CDROM is umounted in four seconds and the eject button in the drive starts working.
To see which drives are mountable (have discs in drive), you can create symlinks (similar to shortcuts) to the mountpoints. You can create the symlinks manually for each drive, for example
# cd /mnt/auto/
# ln -s autofs/cdrom cdrom
<<lessDevices are mounted when users opens their directory, such as /mnt/auto/cdrom, and are unmounted when the directory remains unused for four seconds.
Usage
For example, when user opens directory /mnt/auto/usb/, digital camera is automatically mounted and all the pictures shown in the directory. After four seconds of inactivity, device is unmounted and can be detached.
Manual Configuration
The rest of this document describes manual configuration of mounttero. If you installed the rpm, it did all this configuration automatically and you dont need manual configuration. The scripts below contain some latest and greatest version 0.5 improvements that have not made it to rpm yet, namely more usb partitions.
Create the directories used by the automounter. The directory is the one mentioned in /etc/auto.master:
# mkdir -p /mnt/auto/autofs
Create auto.master to tell autofs daemon that /mnt/auto/autofs directory is handled according to auto.tero
# /etc/auto.master
# mountpoint map options # see also: man 8 autofs
/mnt/auto/autofs /etc/auto.tero --timeout=4
List the actual mountpoints and devices in the automounter map
# /etc/auto.tero
# http://iki.fi/karvinen/linux/doc/automatic-mounting-autofs.html
# mountpoint_key options location_device # man 5 autofs
cdrom -fstype=auto,ro,nosuid,nodev,user :/dev/cdrom
cdrom1 -fstype=auto,ro,nosuid,nodev,user :/dev/cdrom1
usb -fstype=auto,nosuid,nodev,noexec,user,gid=100,umask=000 :/dev/sda1
# second and third partitions in usb device:
usb2 -fstype=auto,nosuid,nodev,noexec,user,gid=100,umask=000 :dev/sda2
usb3 -fstype=auto,nosuid,nodev,noexec,user,gid=100,umask=000 :dev/sda3
floppy -fstype=auto,nosuid,nodev,noexec,user,gid=100,umask=000 :/dev/fd0
hda1 -fstype=auto,nosuid,nodev,user :/dev/hda1
hda2 -fstype=auto,nosuid,nodev,user :/dev/hda2
hda3 -fstype=auto,nosuid,nodev,user :/dev/hda3
hda4 -fstype=auto,nosuid,nodev,user :/dev/hda4
hdb1 -fstype=auto,nosuid,nodev,user :/dev/hdb1
hdb2 -fstype=auto,nosuid,nodev,user :/dev/hdb2
hdb3 -fstype=auto,nosuid,nodev,user :/dev/hdb3
hdb4 -fstype=auto,nosuid,nodev,user :/dev/hdb4
hdc1 -fstype=auto,nosuid,nodev,user :/dev/hdc1
hdc2 -fstype=auto,nosuid,nodev,user :/dev/hdc2
hdc3 -fstype=auto,nosuid,nodev,user :/dev/hdc3
hdc4 -fstype=auto,nosuid,nodev,user :/dev/hdc4
hdd1 -fstype=auto,nosuid,nodev,user :/dev/hdd1
hdd2 -fstype=auto,nosuid,nodev,user :/dev/hdd2
hdd3 -fstype=auto,nosuid,nodev,user :/dev/hdd3
hdd4 -fstype=auto,nosuid,nodev,user :/dev/hdd4
# Serial ATA (SATA) disks are IDE emulated in Linux 2.6
hde1 -fstype=auto,nosuid,nodev,user :/dev/hde1
hde2 -fstype=auto,nosuid,nodev,user :/dev/hde2
hde3 -fstype=auto,nosuid,nodev,user :/dev/hde3
hde4 -fstype=auto,nosuid,nodev,user :/dev/hde4
# (c) 2003, 2004-05-29, 2004-09-19 Tero.Karvinen atta iki.fi
# /etc/init.d/autofs restart
Now drives are automatically mounted when you try to access them. You can test it by inserting a cdrom, and cd /mnt/auto/autofs/cdrom. The CDROM is automatically mounted, and ls should show you contents of the cd. When you cd to another directory, such as home directory (cd), CDROM is umounted in four seconds and the eject button in the drive starts working.
To see which drives are mountable (have discs in drive), you can create symlinks (similar to shortcuts) to the mountpoints. You can create the symlinks manually for each drive, for example
# cd /mnt/auto/
# ln -s autofs/cdrom cdrom
Download (0.008MB)
Added: 2005-04-08 License: GPL (GNU General Public License) Price:
1659 downloads
Bluewhite64 Linux 12.0
Bluewhite64 Linux is an unofficial port of Slackware Linux to the AMD64 architecture. more>>
Bluewhite64 Linux is an unofficial port of Slackware Linux to the AMD64 architecture. This means that it runs on AMD64 based servers and computers.
Bluewhite64 Linuxs goal of this port is to mimic the user experience of the Intel x86 distribution at its best. I will try to include the same software, configuration scripts and so on. If you notice any differences between Bluewhite64 and the original Slackware, dont hesitate to email me.
Enhancements:
- This version includes the Linux 2.6.21.5 kernel with the IA32-emulation enabled, the testing Linux 2.6.22 kernel in the testing/ directory with support for IDE, SATA, SCSI, and RAID controllers, Ext2, Ext3, ReiserFS, XFS, and IBMs SGI filesystems, SCSI and ATA RAID volume, software RAID, LVM2, KVM (Kernel-based Virtual Machine), and encrypted file systems. It also includes the GCC 4.1.2 compiler and Glibc 2.5 with NPTL, the latest KDE 3.5.7 and XFce 4.4.1, the Mozilla Firefox browser and Mozilla Thunderbird 2.0.0.4, SeaMonkey 1.1.2, Apache 2.2.4, PHP 5.2.3, and MySQL 5.0.37.
<<lessBluewhite64 Linuxs goal of this port is to mimic the user experience of the Intel x86 distribution at its best. I will try to include the same software, configuration scripts and so on. If you notice any differences between Bluewhite64 and the original Slackware, dont hesitate to email me.
Enhancements:
- This version includes the Linux 2.6.21.5 kernel with the IA32-emulation enabled, the testing Linux 2.6.22 kernel in the testing/ directory with support for IDE, SATA, SCSI, and RAID controllers, Ext2, Ext3, ReiserFS, XFS, and IBMs SGI filesystems, SCSI and ATA RAID volume, software RAID, LVM2, KVM (Kernel-based Virtual Machine), and encrypted file systems. It also includes the GCC 4.1.2 compiler and Glibc 2.5 with NPTL, the latest KDE 3.5.7 and XFce 4.4.1, the Mozilla Firefox browser and Mozilla Thunderbird 2.0.0.4, SeaMonkey 1.1.2, Apache 2.2.4, PHP 5.2.3, and MySQL 5.0.37.
Download (3800MB)
Added: 2007-07-11 License: GPL (GNU General Public License) Price:
835 downloads
linHDD 0.4
linHDD is a hard drive utility. more>>
linHDD is a hard drive utility. Frontend to several functions of basic Linux drive utilities: hdparm, cfdisk, df, and mkfs.
Nice to add a second drive from the GUI. Or use it to display free space, extended drive information and test read-speed. A convenience app, it can save a user time, avoid problems from typos and presents a friendly interface to newcomers and those who would rather not memorize console-based commands.
The initial release only deals with ide hard drives, no scsi/sata -- only because I dont have the board/drive(s) to test them with. Should be a simple matter of adding cat /proc/scsi/scsi stuff. But if I cant test it then I cannot, in good conscious, write it.
linHDD acts as a fontend for some basic Linux tools, which should all be on your machine already. hdparm gives the detailed drive information shown in the large textbox. Also enables testing the HDD read speed in MB/s. df, (which lists mounted devices), mkfs and its relatives for formatting (supporting ext2, ext3, reiserfs, xfs, jfs -- if they are supported on your machine.) And cfdisk pops up if you choose to partition a drive.
For safety and sanity I designed linHDD so that it will not allow any partitioning on a mounted Hard Drive. Nor will it allow formatting on a mounted partition. And lastly, ANY partitioning or formatting must be done as root. Below is a shot of the response when trying to partition a drive when one of its partitions was already mounted.
You can run linHDD as user (as opposed to root) and check out your drive space, all the detailed drive information in the textbox and even run the speed tests. You simply wont be able to format or partition.
<<lessNice to add a second drive from the GUI. Or use it to display free space, extended drive information and test read-speed. A convenience app, it can save a user time, avoid problems from typos and presents a friendly interface to newcomers and those who would rather not memorize console-based commands.
The initial release only deals with ide hard drives, no scsi/sata -- only because I dont have the board/drive(s) to test them with. Should be a simple matter of adding cat /proc/scsi/scsi stuff. But if I cant test it then I cannot, in good conscious, write it.
linHDD acts as a fontend for some basic Linux tools, which should all be on your machine already. hdparm gives the detailed drive information shown in the large textbox. Also enables testing the HDD read speed in MB/s. df, (which lists mounted devices), mkfs and its relatives for formatting (supporting ext2, ext3, reiserfs, xfs, jfs -- if they are supported on your machine.) And cfdisk pops up if you choose to partition a drive.
For safety and sanity I designed linHDD so that it will not allow any partitioning on a mounted Hard Drive. Nor will it allow formatting on a mounted partition. And lastly, ANY partitioning or formatting must be done as root. Below is a shot of the response when trying to partition a drive when one of its partitions was already mounted.
You can run linHDD as user (as opposed to root) and check out your drive space, all the detailed drive information in the textbox and even run the speed tests. You simply wont be able to format or partition.
Download (0.013MB)
Added: 2007-08-12 License: GPL (GNU General Public License) Price:
806 downloads
mkinitramfs 0.9.9
mkinitramfs is intended to create the ultimate initramfs image. more>>
mkinitramfs is intended to create the ultimate initramfs image.
mkinitramfs is designed to boot from any media (SATA, PATA, SCSI, USB, CD-ROM, etc.) without any changes being made to your disk.
However, it is very simple (about 400 lines of code).
<<lessmkinitramfs is designed to boot from any media (SATA, PATA, SCSI, USB, CD-ROM, etc.) without any changes being made to your disk.
However, it is very simple (about 400 lines of code).
Download (0.064MB)
Added: 2006-06-14 License: GPL (GNU General Public License) Price:
1235 downloads
Trinity Rescue Kit 3.2 build 279
Trinity Rescue Kit is a Linux distribution based on Mandrake 9.1 binaries. more>>
Trinity Rescue Kit or TRK is a 100% free CD bootable Linux distribution aimed specifically at offline operations for Windows and Linux systems such as rescue, repair, password resets and cloning, with the ability to update itself.
It has custom tools to easily recover data such as deleted files, clone Windows installations over the network, perform antivirus sweeps with 2 different antivirus products, reset windows passwords, read AND write on NTFS partitions, edit
partition layout and much much more.
Trinity Rescue Kit 3.1 is the evolved version of 3.0 and a complete rewrite of version 1.1 and the unfinished 2.0. It s mostly based on Mandrake 10.2 (Mandriva 2005) binaries and heavily adapted startup scripts.
What s new since 3.0?
- self update capability: TRK now has a script that will download/search all non-GPL
licensed software, like the Microsoft ntfs
drivers or F-prot. It will also update antivirus definitions for F-prot and Clamav.
Afterwards, it will recreate itself as a new iso
file which you can burn again to CD
- new version of captive-ntfs, using the latest XP SP2 drivers and LUFS
- clamav 0.88-1
- mkisofs, cdrecord, pico, cfdisk
- eject CD (was bug in build 204) and powerdown on halt
What s new since 1.1 (and 2.0):
- more hardware support:
kernel 2.6.14.3 with most default options left on, so all important hardware like
disc controllers and network cards are supported, even SATA disks, USB storage and gigabit ethernet. Also patched with lufs (for ntfs support) and bootsplash (background graphics)
- better network capability: besides all common network client tools, you can also run a secure shell server for remote access or TRK to TRK file copies
- run completely from memory: provided you have at least 192Mb of ram, you can run TRK from memory and eject the CD once it has booted, giving you the ability to mount other CDs
- vesa framebuffer support: TRK now has limited graphical support thanks to kernel
builtin framebuffer support.
- qtparted: the famous PQMagic clone. Partition editing never been this easy thanks to the graphical interface this tool uses (via framebuffer)
- configure your LAN to be "TRK 3 compliant": you can change the way a TRK behaves by adding an otherwise unused parameter to your DHCP server to point to a webserver where you keep specific configuration data for your TRK such as proxy settings or complete scripts with which you can do anything you want
- run scripts from a local computer by searching for /.trk/trklocal.conf
- full NTFS write support thanks to the captive ntfs project by Jan Kratochvil.
- more NTFS write support with the NTFS Fuse driver.
- Secure Shell server: let a user boot from TRK, enter a new password for root and
connect to TRK remotely
Featuring home brewed scripts, new and improved:
- updatetrk (since 3.1): updates TRK with ntfs drivers, F-prot + definitions and
Clamav definitions. When the script is run without arguments, it looks for a Windows pagefile.sys, creates a loopback filesystem on it and creates TRK from there. Afterwards it copies the new isofile to C: emp, from where you can burn it to CD again
- clonexp: script that uses ntfsclone to perform copies of ntfs filesystems between
two computers each running their copy of Trinity Rescue Kit 3.1. One PC copies his Windows installation over the network to another PC running a TRK 3.1 with a secure shell server enabled. An easy way to clone Windows installations or recover as much as you can from a dying disk. Run it either interactively or from a single commandline
- winpass: does the same thing as in TRK 1.1, searches for all local Windows
installations, runs chntpw on your SAM file and resets the password. It now also handles Windows on FAT32 correctly and uses the safe ntfs driver from the Linux kernel, so it works even without captive support
- regedit: is actually the same as winpass, but starts chntpw in interactive mode and allows you to edit a Windows registry
- virusscan: completely rewritten,this script now has two different engines: the default is to run with the GNU Clamav antivirus which is free for everyone. This is a very good scanner, but the drawback is that it can only detect virus infected files, not clean them. So the only option is to delete them, where most of the time the file is the complete virus. But just to be sure we don t delete anything valuable, a quarantined backup is being made first. The other part of the script uses the free-for-home-users F-prot. F-prot itself is not included in TRK but it gets downloaded from their site. F-prot DOES have the ability to disinfect files if necessary.
- ntfsundeleteall: also completely rewritten, ntfsundeleteall, a wrapper for
ntfsundelete now recovers deleted files from an NTFS volume but it gives you the ability to add a recoverability percentage to the commandline. Since it only recovers files and not directories, sometimes you would have double filenames. This has been countered by adding the inode of the file at the beginning of the filename, so recoverability is 100% within the possibilities of ntfsundelete
More utils:
- links: simple webbrowser which runs in framebuffer graphical mode. Handy to go and read some reference docs on the Internet
- ftp and lftp
- ssh and scp
- ms-sys: This program is used to create Microsoft compatible boot records. It is able to do the same as Microsoft "fdisk /mbr" to a hard disk. It is also able to do the same as Microsoft "sys d:" to a floppy or FAT partition except that it does not copy any system files, only the boot record is written.
- Reiserfs tools
- ext2/ext3 tools
- ntfsprogs
- dosfs tools
- tcpdump, nmap and netcat
- mdadm for offline raid configuration
- burn, a utility that stresses your CPU
- samba client: mount windows shares over the network
- shred: erase a harddisk until its unrecoverable even by magnetic resonance recovery
- fatback: undelete files from fat filesystems
- TestDisk: Tool to check and undelete partition, works with most common partitions
- PhotoRec: File and pictures recovery. PhotoRec has been created to recover pictures from digital camera memory and it has been extended to recover lost files from harddisk (List of known files). PhotoRec is safe to use, it will never attempt to write to the drive or memory support you are about to recover from. Recovered files are instead written in the directory from where you are running the PhotoRec program.
- pico text editor
- mkisofs and cdrecord
- perl 5
Enhancements:
- Very extensive and complete documentation.
- 2 more virus scan engines: Grisoft AVG and BitDefender.
- ntfs-3g has full and fast read/write support for NTFS drives.
- Bootable from a USB stick and over PXE.
- An integrated Samba file server.
- LVM support.
- Kernel 2.6.19.2 and hwdata 0.191-1.
- Menu-based graphical startup.
- Tools to migrate TRK from CD to USB and back to an ISO file if desired.
- Bridging capabilities.
- Full proxy server support: a script called "setproxy" can prompt you for your networks proxy parameters, allowing you to access the internet and update your TRK.
<<lessIt has custom tools to easily recover data such as deleted files, clone Windows installations over the network, perform antivirus sweeps with 2 different antivirus products, reset windows passwords, read AND write on NTFS partitions, edit
partition layout and much much more.
Trinity Rescue Kit 3.1 is the evolved version of 3.0 and a complete rewrite of version 1.1 and the unfinished 2.0. It s mostly based on Mandrake 10.2 (Mandriva 2005) binaries and heavily adapted startup scripts.
What s new since 3.0?
- self update capability: TRK now has a script that will download/search all non-GPL
licensed software, like the Microsoft ntfs
drivers or F-prot. It will also update antivirus definitions for F-prot and Clamav.
Afterwards, it will recreate itself as a new iso
file which you can burn again to CD
- new version of captive-ntfs, using the latest XP SP2 drivers and LUFS
- clamav 0.88-1
- mkisofs, cdrecord, pico, cfdisk
- eject CD (was bug in build 204) and powerdown on halt
What s new since 1.1 (and 2.0):
- more hardware support:
kernel 2.6.14.3 with most default options left on, so all important hardware like
disc controllers and network cards are supported, even SATA disks, USB storage and gigabit ethernet. Also patched with lufs (for ntfs support) and bootsplash (background graphics)
- better network capability: besides all common network client tools, you can also run a secure shell server for remote access or TRK to TRK file copies
- run completely from memory: provided you have at least 192Mb of ram, you can run TRK from memory and eject the CD once it has booted, giving you the ability to mount other CDs
- vesa framebuffer support: TRK now has limited graphical support thanks to kernel
builtin framebuffer support.
- qtparted: the famous PQMagic clone. Partition editing never been this easy thanks to the graphical interface this tool uses (via framebuffer)
- configure your LAN to be "TRK 3 compliant": you can change the way a TRK behaves by adding an otherwise unused parameter to your DHCP server to point to a webserver where you keep specific configuration data for your TRK such as proxy settings or complete scripts with which you can do anything you want
- run scripts from a local computer by searching for /.trk/trklocal.conf
- full NTFS write support thanks to the captive ntfs project by Jan Kratochvil.
- more NTFS write support with the NTFS Fuse driver.
- Secure Shell server: let a user boot from TRK, enter a new password for root and
connect to TRK remotely
Featuring home brewed scripts, new and improved:
- updatetrk (since 3.1): updates TRK with ntfs drivers, F-prot + definitions and
Clamav definitions. When the script is run without arguments, it looks for a Windows pagefile.sys, creates a loopback filesystem on it and creates TRK from there. Afterwards it copies the new isofile to C: emp, from where you can burn it to CD again
- clonexp: script that uses ntfsclone to perform copies of ntfs filesystems between
two computers each running their copy of Trinity Rescue Kit 3.1. One PC copies his Windows installation over the network to another PC running a TRK 3.1 with a secure shell server enabled. An easy way to clone Windows installations or recover as much as you can from a dying disk. Run it either interactively or from a single commandline
- winpass: does the same thing as in TRK 1.1, searches for all local Windows
installations, runs chntpw on your SAM file and resets the password. It now also handles Windows on FAT32 correctly and uses the safe ntfs driver from the Linux kernel, so it works even without captive support
- regedit: is actually the same as winpass, but starts chntpw in interactive mode and allows you to edit a Windows registry
- virusscan: completely rewritten,this script now has two different engines: the default is to run with the GNU Clamav antivirus which is free for everyone. This is a very good scanner, but the drawback is that it can only detect virus infected files, not clean them. So the only option is to delete them, where most of the time the file is the complete virus. But just to be sure we don t delete anything valuable, a quarantined backup is being made first. The other part of the script uses the free-for-home-users F-prot. F-prot itself is not included in TRK but it gets downloaded from their site. F-prot DOES have the ability to disinfect files if necessary.
- ntfsundeleteall: also completely rewritten, ntfsundeleteall, a wrapper for
ntfsundelete now recovers deleted files from an NTFS volume but it gives you the ability to add a recoverability percentage to the commandline. Since it only recovers files and not directories, sometimes you would have double filenames. This has been countered by adding the inode of the file at the beginning of the filename, so recoverability is 100% within the possibilities of ntfsundelete
More utils:
- links: simple webbrowser which runs in framebuffer graphical mode. Handy to go and read some reference docs on the Internet
- ftp and lftp
- ssh and scp
- ms-sys: This program is used to create Microsoft compatible boot records. It is able to do the same as Microsoft "fdisk /mbr" to a hard disk. It is also able to do the same as Microsoft "sys d:" to a floppy or FAT partition except that it does not copy any system files, only the boot record is written.
- Reiserfs tools
- ext2/ext3 tools
- ntfsprogs
- dosfs tools
- tcpdump, nmap and netcat
- mdadm for offline raid configuration
- burn, a utility that stresses your CPU
- samba client: mount windows shares over the network
- shred: erase a harddisk until its unrecoverable even by magnetic resonance recovery
- fatback: undelete files from fat filesystems
- TestDisk: Tool to check and undelete partition, works with most common partitions
- PhotoRec: File and pictures recovery. PhotoRec has been created to recover pictures from digital camera memory and it has been extended to recover lost files from harddisk (List of known files). PhotoRec is safe to use, it will never attempt to write to the drive or memory support you are about to recover from. Recovered files are instead written in the directory from where you are running the PhotoRec program.
- pico text editor
- mkisofs and cdrecord
- perl 5
Enhancements:
- Very extensive and complete documentation.
- 2 more virus scan engines: Grisoft AVG and BitDefender.
- ntfs-3g has full and fast read/write support for NTFS drives.
- Bootable from a USB stick and over PXE.
- An integrated Samba file server.
- LVM support.
- Kernel 2.6.19.2 and hwdata 0.191-1.
- Menu-based graphical startup.
- Tools to migrate TRK from CD to USB and back to an ISO file if desired.
- Bridging capabilities.
- Full proxy server support: a script called "setproxy" can prompt you for your networks proxy parameters, allowing you to access the internet and update your TRK.
Download (104.5MB)
Added: 2007-02-10 License: GPL (GNU General Public License) Price:
692 downloads
Mandriva Linux 10.2 Limited Edition 2005
Mandriva Linux is the operating system of choice for users keen on all things advanced. more>>
Mandriva Linux is the operating system of choice for users keen on all things advanced.
Linux power users will welcome the advanced Web experience, enhanced hardware compatibility and expanded development options brought by Limited Edition 2005, along with significant performance gains. Firefox 1.0.2 offers the most advanced Web browsing experience, with multi-tabbed navigation, pop-up blocking, increased speed, and unmatched security.
Limited Edition also offers the RSS reader Akregator. RSS is a format used to simplify the aggregation and syndication of Web content. RSS feeds contain news and updates from websites and blogs, providing personalized access to information.
Limited Edition 2005 is built to optimize and increase performance. It has been developed with x86-64 technology in mind, which allows for the use of more powerful applications. Support for dual-core technology adds to potential performance, allowing the use of advanced new processors.
Developers and power users running demanding multimedia configurations will appreciate the additional power those features provide. Some special optimizations enhance the overall speed delivered by the system. For instance, KDE 3.3 is 10% faster, thanks to special tuning by Mandriva.
Addressing both the x86 and x86-64 architectures, Limited Edition 2005 is the only Linux system to allow the seamless installation and running of 32-bit applications on 64-bit platforms. This will allow users to benefit from all the power and performance of 64-bit technology while continuing to use vital 32-bit applications.
Developers will welcome the ability to develop 32-bit and 64-bit versions of the same application on the same machine, without the need to use chroot. Finally, Limited Edition allows you to copy the contents of the DVD to the hard disk during installation, removing the need to use the DVD for subsequent software installation, and so saving even more time.
Limited Edition 2005 provides better support for removable devices such as digital cameras, CD-ROM drives and USB keys through immediate detection of devices as they are plugged in, and by allowing you to boot the installation from a USB key.
Also available is DKMS which allows kernel modules to be dynamically built for each kernel on your system in a simplified and organized fashion.
A special feature that will certainly appeal to gamers and enthusiasts is that the new release from Mandriva has support for the Xbox console, empowering users to bridge the divide between gaming and other computer activities.
Additional hardware enhancements include full support for Adaptec Host RAID controllers (RAID, SCSI, SATA) and extended recognition for the most recent flat screen monitors, including widescreen resolutions.
Main features:
The latest versions of key Linux applications
- Linux kernel 2.6.11.6
- KDE 3.3.2 (with some backports from version 3.4, including Kpdf)
- GNOME 2.8.3
- Firefox 1.0.2
- GCC 3.4.3
- The GIMP 2.2
- cdrecord 2.01.01a21 (with DVD+R dual-layer support)
- OpenOffice.org 1.1.4
- MySQL 4.1.11
Enhanced Hardware support
- Unequalled x86-64 support, including seamless installation of a 32-bit environment on the 64-bit platform, allowing developers to build 32-bit and 64-bit applications on the same system
- Full support for Adaptec Host RAID controllers (RAID, SCSI, SATA)
- Improved recognition of removable devices, such as digital cameras, CD-ROM drives and USB keys
- Improved support for the most recent flat screen monitors, including widescreen resolutions
- Simplified handling of drivers thanks to the integration of Dynamic Kernel Module Support (DKMS), enabling the changing of drivers without the need to reinstall the Kernel, and the ability to use the same driver on multiple different kernel revisions
- Support for multimedia keyboards
Faster
- Up to 10% greater KDE performance thanks to compilation with the fvisibility option
- The option to copy all software packages onto the hard disk during the installation, making it unnecessary to use the DVD for subsequent software installation
Advanced Web experience
- Firefox 1.0.2 offers the most advanced Web browsing experience, with multi-tabbed navigation, pop-up blocking, increased speed, and unmatched security.
- RSS reader Akregator to get personalized access to the content of websites from all around the globe.
Enhanced mutimedia capabilities
- ndiswrapper allows for easier wireless networking configuration, thanks to the utilization of installed Windows drivers
- Mandrivas new ALSA (Advanced Linux Sound Architecture) version includes multiplexing, allowing you to listen to sound from several applications at once, even if your sound card does not perform multiplexing in hardware.
<<lessLinux power users will welcome the advanced Web experience, enhanced hardware compatibility and expanded development options brought by Limited Edition 2005, along with significant performance gains. Firefox 1.0.2 offers the most advanced Web browsing experience, with multi-tabbed navigation, pop-up blocking, increased speed, and unmatched security.
Limited Edition also offers the RSS reader Akregator. RSS is a format used to simplify the aggregation and syndication of Web content. RSS feeds contain news and updates from websites and blogs, providing personalized access to information.
Limited Edition 2005 is built to optimize and increase performance. It has been developed with x86-64 technology in mind, which allows for the use of more powerful applications. Support for dual-core technology adds to potential performance, allowing the use of advanced new processors.
Developers and power users running demanding multimedia configurations will appreciate the additional power those features provide. Some special optimizations enhance the overall speed delivered by the system. For instance, KDE 3.3 is 10% faster, thanks to special tuning by Mandriva.
Addressing both the x86 and x86-64 architectures, Limited Edition 2005 is the only Linux system to allow the seamless installation and running of 32-bit applications on 64-bit platforms. This will allow users to benefit from all the power and performance of 64-bit technology while continuing to use vital 32-bit applications.
Developers will welcome the ability to develop 32-bit and 64-bit versions of the same application on the same machine, without the need to use chroot. Finally, Limited Edition allows you to copy the contents of the DVD to the hard disk during installation, removing the need to use the DVD for subsequent software installation, and so saving even more time.
Limited Edition 2005 provides better support for removable devices such as digital cameras, CD-ROM drives and USB keys through immediate detection of devices as they are plugged in, and by allowing you to boot the installation from a USB key.
Also available is DKMS which allows kernel modules to be dynamically built for each kernel on your system in a simplified and organized fashion.
A special feature that will certainly appeal to gamers and enthusiasts is that the new release from Mandriva has support for the Xbox console, empowering users to bridge the divide between gaming and other computer activities.
Additional hardware enhancements include full support for Adaptec Host RAID controllers (RAID, SCSI, SATA) and extended recognition for the most recent flat screen monitors, including widescreen resolutions.
Main features:
The latest versions of key Linux applications
- Linux kernel 2.6.11.6
- KDE 3.3.2 (with some backports from version 3.4, including Kpdf)
- GNOME 2.8.3
- Firefox 1.0.2
- GCC 3.4.3
- The GIMP 2.2
- cdrecord 2.01.01a21 (with DVD+R dual-layer support)
- OpenOffice.org 1.1.4
- MySQL 4.1.11
Enhanced Hardware support
- Unequalled x86-64 support, including seamless installation of a 32-bit environment on the 64-bit platform, allowing developers to build 32-bit and 64-bit applications on the same system
- Full support for Adaptec Host RAID controllers (RAID, SCSI, SATA)
- Improved recognition of removable devices, such as digital cameras, CD-ROM drives and USB keys
- Improved support for the most recent flat screen monitors, including widescreen resolutions
- Simplified handling of drivers thanks to the integration of Dynamic Kernel Module Support (DKMS), enabling the changing of drivers without the need to reinstall the Kernel, and the ability to use the same driver on multiple different kernel revisions
- Support for multimedia keyboards
Faster
- Up to 10% greater KDE performance thanks to compilation with the fvisibility option
- The option to copy all software packages onto the hard disk during the installation, making it unnecessary to use the DVD for subsequent software installation
Advanced Web experience
- Firefox 1.0.2 offers the most advanced Web browsing experience, with multi-tabbed navigation, pop-up blocking, increased speed, and unmatched security.
- RSS reader Akregator to get personalized access to the content of websites from all around the globe.
Enhanced mutimedia capabilities
- ndiswrapper allows for easier wireless networking configuration, thanks to the utilization of installed Windows drivers
- Mandrivas new ALSA (Advanced Linux Sound Architecture) version includes multiplexing, allowing you to listen to sound from several applications at once, even if your sound card does not perform multiplexing in hardware.
Download (716MB)
Added: 2005-08-07 License: GPL (GNU General Public License) Price:
1554 downloads
Linux Multimedia Player 2.5
Linux Multimedia Player, is an yet another tiny Linux based OS. more>>
LiMP is a a tiny LIVE CD based linux distro, that loads into memory and works only in the memory. This is the easiest, simpler yet powerful distro that works in all computers (PIII onwards).
Linux Multimedia Player supports most of the known formats, let it be mpeg-I, or mpeg-II, or divx, or wmv,qt-mov,real video for video and for audio mp3,wav,wma, ogg, real audio. It has the auto detection of partitions (ide or sata or scsi), sound cards,video cards, network cards and supports all the the cards as of kernel 2.6.13. It identifies the Partitions and mounts in the folder START.
It has the network support, which can be configured inside the GUI. It also mounts the Windows Shares, Linux Smb shares in the folder START.
It is complete tiny OS, with menu driven option and requires no knowledge of linux. All in a embedded image file of size 35 MB that gives you the entertainment. It can be easily integrated into WINDOWS XP/2000/98/95 or in linux boot loader or boot from cdrom.
LiMP distro runs only from memory and so CDROM/DVD is free to use. LiMP is completely safe to use as it mounts the partitions (NTFS, EXT2, EXT3, REISERFS) and windows / linux shares in READONLY mode.
Computer Shutdown schedule for bed time listeners. It supports viewing encrypted DVDs (Zone set DVDs). User has to option to load his favorite language font, for viewing subtitle User can set his favorite skin for xmms as default so that it loads on startup.
It runs a vnc server and can be accessed remotely from any vnc client.
Enhancements:
- The kernel was updated to 2.6.21.1.
- ALSA was updated to 1.0.14rc3.
- Idesk, a desktop program, was added.
- Mplayer, conky, and openbox were updated.
- Xdialog was added, providing an even easier interface.
- LiMP includes compressed cache to give better performance (http://linuxcompressed.sourceforge.net/).
<<lessLinux Multimedia Player supports most of the known formats, let it be mpeg-I, or mpeg-II, or divx, or wmv,qt-mov,real video for video and for audio mp3,wav,wma, ogg, real audio. It has the auto detection of partitions (ide or sata or scsi), sound cards,video cards, network cards and supports all the the cards as of kernel 2.6.13. It identifies the Partitions and mounts in the folder START.
It has the network support, which can be configured inside the GUI. It also mounts the Windows Shares, Linux Smb shares in the folder START.
It is complete tiny OS, with menu driven option and requires no knowledge of linux. All in a embedded image file of size 35 MB that gives you the entertainment. It can be easily integrated into WINDOWS XP/2000/98/95 or in linux boot loader or boot from cdrom.
LiMP distro runs only from memory and so CDROM/DVD is free to use. LiMP is completely safe to use as it mounts the partitions (NTFS, EXT2, EXT3, REISERFS) and windows / linux shares in READONLY mode.
Computer Shutdown schedule for bed time listeners. It supports viewing encrypted DVDs (Zone set DVDs). User has to option to load his favorite language font, for viewing subtitle User can set his favorite skin for xmms as default so that it loads on startup.
It runs a vnc server and can be accessed remotely from any vnc client.
Enhancements:
- The kernel was updated to 2.6.21.1.
- ALSA was updated to 1.0.14rc3.
- Idesk, a desktop program, was added.
- Mplayer, conky, and openbox were updated.
- Xdialog was added, providing an even easier interface.
- LiMP includes compressed cache to give better performance (http://linuxcompressed.sourceforge.net/).
Download (74MB)
Added: 2007-05-10 License: GPL (GNU General Public License) Price:
613 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
Damn Small Linux Not 0.1 RC4
Damn Small Linux Not provides a reliable, and compact array of applications based mostly on the GTK2 libraries. more>>
Damn Small Linux Not is built on Damn Small Linux technology. Damn Small Linux Not is also small, bigger than DSL but smaller than most. Damn Small Linux Not provides a reliable, and compact array of applications based mostly on the GTK2 libraries.
DSL-N is not an evolution of DSL, it is not intended as progress over the philosophy of DSL, but is intended for a different user, or the same user under different circumstances.
Main features:
- it is small
- it has software which is feature full
- it takes advantage of redundant lib dependencies and suits to pack features into a tight distribution
- DSL-N has a modern kernel and does not squeeze out critical modules that would limit compatibility
Like DSL, DSL-n can:
- Boot from from a CD as a live Linux distribution (LiveCD)
- Boot from a USB pen drive
- Boot from within a host operating system (thats right, it can run *inside* Windows)
- Run very nicely from an IDE Compact Flash drive via a method we call "frugal install"
- Transform into a Debian OS with a traditional hard drive install
- Run fully in RAM
- Modularly grow -- DSL-N is highly extendable without the need to customize
- The applications in DSL-N were chosen because they are functional, usable, and relatively compact. Unlike DSL, DSL-N has GTK2 applications, that means DSL-N will need more ram and CPU cycles than DSL. To have a pleasant experience, we recommend at least 64MBs and 300MHz.
DSL-N, unlike DSL, does not have a hard size cap, but it is being developed by the DSL team, and we hate bloat! So, dont expect DSL-N to get too big.
Why are you making this offshoot of DSL when DSL is so successful? Because a 50MB, GTK2 based distribution, with a 2.6.x kernel and excellent hardware detection/support is a contradiction in terms. DSL-N represents our best effort to stay compact while providing for the needs of those who want the Bling Bling such as SATA support, Gnumeric, Abiword, gMplayer.
Enhancements:
- Added "noprompt noeject" to default boot options for frugal installs.
- Fixed madwifi wireless.
- Fixed chpasswd vs passwd. "secure" boot option now works correctly.
- Added gnu-utils into the base iso.
- Fixed USB2 not loading bug
- Improved mydsl=hdxy when specified to not also search this makes it consistent with restore boot option.
- Enhanced exitcheck to prompt warning if no backup device is selected when requested to save special settings.
- Fixed multi user hard drive install bug.
- Added murgaLua Lua/Fltk development toolkit.
<<lessDSL-N is not an evolution of DSL, it is not intended as progress over the philosophy of DSL, but is intended for a different user, or the same user under different circumstances.
Main features:
- it is small
- it has software which is feature full
- it takes advantage of redundant lib dependencies and suits to pack features into a tight distribution
- DSL-N has a modern kernel and does not squeeze out critical modules that would limit compatibility
Like DSL, DSL-n can:
- Boot from from a CD as a live Linux distribution (LiveCD)
- Boot from a USB pen drive
- Boot from within a host operating system (thats right, it can run *inside* Windows)
- Run very nicely from an IDE Compact Flash drive via a method we call "frugal install"
- Transform into a Debian OS with a traditional hard drive install
- Run fully in RAM
- Modularly grow -- DSL-N is highly extendable without the need to customize
- The applications in DSL-N were chosen because they are functional, usable, and relatively compact. Unlike DSL, DSL-N has GTK2 applications, that means DSL-N will need more ram and CPU cycles than DSL. To have a pleasant experience, we recommend at least 64MBs and 300MHz.
DSL-N, unlike DSL, does not have a hard size cap, but it is being developed by the DSL team, and we hate bloat! So, dont expect DSL-N to get too big.
Why are you making this offshoot of DSL when DSL is so successful? Because a 50MB, GTK2 based distribution, with a 2.6.x kernel and excellent hardware detection/support is a contradiction in terms. DSL-N represents our best effort to stay compact while providing for the needs of those who want the Bling Bling such as SATA support, Gnumeric, Abiword, gMplayer.
Enhancements:
- Added "noprompt noeject" to default boot options for frugal installs.
- Fixed madwifi wireless.
- Fixed chpasswd vs passwd. "secure" boot option now works correctly.
- Added gnu-utils into the base iso.
- Fixed USB2 not loading bug
- Improved mydsl=hdxy when specified to not also search this makes it consistent with restore boot option.
- Enhanced exitcheck to prompt warning if no backup device is selected when requested to save special settings.
- Fixed multi user hard drive install bug.
- Added murgaLua Lua/Fltk development toolkit.
Download (95.3MB)
Added: 2006-08-25 License: GPL (GNU General Public License) Price:
1164 downloads
Minimax 20060326 Beta
Minimax is a Linux distribution which completely fit to an initrd image, because of this it can boot in every situation. more>>
Minimax is a Linux distribution which completely fit to an initrd image, because of this it can boot in every situation, which you can imagine.
It is ultra small (32 MB), but very power full. Minimax distribution contains 2.6 kernel with ALL modules and balanced set of console utils, no X server.
Main features:
- Very small, only 32 MB
- Very good hardware support, see kernel config.
- Fits to initrd, can boot on strange SCSI/SATA/USB disks
- Can be added to /boot partition very easy
- System runs from ramdisk
- Contains only console utils, no x server, see packages
- Modern architecture: kernel 2.6, udev with autosymlinks, module autoloading, based on Arch linux
- Based on uclibc and busybox
Some key software:
- Full 2.6.15 kernel with modules, with autodetection and udev. Takes about 60% of livecd size.
- Installer for Arch linux
- wifi drivers and utils: hostap,wlan-ng, madwifi, ndiswrapper...
- Grub as main bootloader
- Midnight Commander
- Links2 - text and graphic web browser
- FBI - an image viewer
- IRSSI - an irc client
- CenterICQ - an excelent client for icq,msn,jabber...
- Music on console - player with mp3,ogg and online streaming support
- Bash burn - an cd record console frontend
- Partimage - disk mirroring tool
Minimum requirements:
- 64 MB RAM (system needs 32 MB big ramdisk).
- An i386 or better processor.
- Hardware compatible with 2.6.15 kernel, for very old computers (486) is Damm small linux or Puppy linux better choice, becouse of 2.4 kernel
How was it made?
I take uclibc and busybox (software for embedded linux) and compile base system from scratch. I add initscripts from Arch linux, they are very easy to understand and modify. With some other software and modular kernel 2.6 I got system with about 70 MB. After compression with squashfs I got 30 MB big initrd image. Now it was easy to create an CD image.
Packages
minimax , bash, busybox, dhcpcd, e2fsprogs, filesystem, gpm, initscripts, kdm, kernel, libz, module-init-tools, ncurses, net-utils, sysvinit, uclibc, udev, utils, archsetup, snarf, rsync, vsftpd, dd_rescue, dd_rhelp, dosfstools, ext2resize, grub, jetcat, jfsutils, lilo, ntfsprogs, parted, partimage, reiserfsprogs, squashfs-tools, xfsprogs, bastet, enigma, fbi, libexif, libgif, libjpeg, libpng, links, libbz2, libc++, libcom_err, libexpat, libnet, libpcap, libpcre, libtool, *, alsa-lib, alsa-utils, bashburn, cdrdao, cdrtools, dvd+rw-tools, libao, libid3tag, libmad, libogg, libvorbis, moc, shfs, biew, centericq, glib, htop, irssi, mc, nano, ncurses, nstats, screen, dnstracer, iplog, iptables, libpcap, netcat, ngrep, nmap, openssh, openssl, tcpdump, autossh, bc, curl, file, hdparm, pciutils, ppp, pv, raidtools, tcptraceroute, wget, x86info, atmel-firmware, drivers_in_kernel, hostap-utils, ipw2100-firmware, ipw2200-firmware, linux-wlan-ng, linux-wlan-ng-firmware, linux-wlan-ng-utils, madwifi-tools, ndiswrapper, prism54-firmware, wireless-tools, zd1201-firmware, zd1211
<<lessIt is ultra small (32 MB), but very power full. Minimax distribution contains 2.6 kernel with ALL modules and balanced set of console utils, no X server.
Main features:
- Very small, only 32 MB
- Very good hardware support, see kernel config.
- Fits to initrd, can boot on strange SCSI/SATA/USB disks
- Can be added to /boot partition very easy
- System runs from ramdisk
- Contains only console utils, no x server, see packages
- Modern architecture: kernel 2.6, udev with autosymlinks, module autoloading, based on Arch linux
- Based on uclibc and busybox
Some key software:
- Full 2.6.15 kernel with modules, with autodetection and udev. Takes about 60% of livecd size.
- Installer for Arch linux
- wifi drivers and utils: hostap,wlan-ng, madwifi, ndiswrapper...
- Grub as main bootloader
- Midnight Commander
- Links2 - text and graphic web browser
- FBI - an image viewer
- IRSSI - an irc client
- CenterICQ - an excelent client for icq,msn,jabber...
- Music on console - player with mp3,ogg and online streaming support
- Bash burn - an cd record console frontend
- Partimage - disk mirroring tool
Minimum requirements:
- 64 MB RAM (system needs 32 MB big ramdisk).
- An i386 or better processor.
- Hardware compatible with 2.6.15 kernel, for very old computers (486) is Damm small linux or Puppy linux better choice, becouse of 2.4 kernel
How was it made?
I take uclibc and busybox (software for embedded linux) and compile base system from scratch. I add initscripts from Arch linux, they are very easy to understand and modify. With some other software and modular kernel 2.6 I got system with about 70 MB. After compression with squashfs I got 30 MB big initrd image. Now it was easy to create an CD image.
Packages
minimax , bash, busybox, dhcpcd, e2fsprogs, filesystem, gpm, initscripts, kdm, kernel, libz, module-init-tools, ncurses, net-utils, sysvinit, uclibc, udev, utils, archsetup, snarf, rsync, vsftpd, dd_rescue, dd_rhelp, dosfstools, ext2resize, grub, jetcat, jfsutils, lilo, ntfsprogs, parted, partimage, reiserfsprogs, squashfs-tools, xfsprogs, bastet, enigma, fbi, libexif, libgif, libjpeg, libpng, links, libbz2, libc++, libcom_err, libexpat, libnet, libpcap, libpcre, libtool, *, alsa-lib, alsa-utils, bashburn, cdrdao, cdrtools, dvd+rw-tools, libao, libid3tag, libmad, libogg, libvorbis, moc, shfs, biew, centericq, glib, htop, irssi, mc, nano, ncurses, nstats, screen, dnstracer, iplog, iptables, libpcap, netcat, ngrep, nmap, openssh, openssl, tcpdump, autossh, bc, curl, file, hdparm, pciutils, ppp, pv, raidtools, tcptraceroute, wget, x86info, atmel-firmware, drivers_in_kernel, hostap-utils, ipw2100-firmware, ipw2200-firmware, linux-wlan-ng, linux-wlan-ng-firmware, linux-wlan-ng-utils, madwifi-tools, ndiswrapper, prism54-firmware, wireless-tools, zd1201-firmware, zd1211
Download (32.3MB)
Added: 2006-05-05 License: GPL (GNU General Public License) Price:
745 downloads
Linux Inventory Aggregator 2.1
Linux Inventory Aggregator is designed to be a simple script for gathering hardware information. more>>
Linux Inventory Aggregator is designed to be a simple, self-contained (as much as possible) script for gathering hardware information.
Sample Output
In the first example, a stock Mandrake system is shown with a single processor, 386MB of memory, an attached SCSI disk array, and several internal IDE drives.
[rtwomey@gamma inventory]$ ./get_inventory.pl
Statistics of machine gamma
* 1 CPU: Pentium III (Coppermine) @ 863.955MHz
* Kernel: 2.6.11-6mdk #1 Tue Mar 22 16:04:32 CET 2005
* Memory total: 385668kB
* Hostname: gamma @ 192.168.1.3
* Network Interfaces:
lo: 127.0.0.1
eth0: 192.168.1.3
* Graphics card: nVidia Corporation NV15 [GeForce2 GTS/Pro] (rev a3)
* Network controller: 3Com Corporation 3c905C-TX/TX-M [Tornado] (rev 78)
* Network controller: Linksys NC100 Network Everywhere Fast Ethernet 10/100 (rev 11)
* Sound card: Creative Labs SB Live! EMU10k1 (rev 07)
* SCSI card: QLogic Corp. ISP12160 Dual Channel Ultra3 SCSI Processor (rev 06)
Attached IDE disks:
* Disk hdg: size: 81964302336 bytes (81GB), model: Maxtor 4R080L0
* Disk hdf: size: 30900215808 bytes (30GB), model: Maxtor 93073U4
* Disk hde: size: 164696555520 bytes (164GB), model: HDS722516VLAT80
* Disk hdc: size: 123522416640 bytes (123GB), model: IC35L120AVV207-0
* Disk hdb: size: 120034123776 bytes (120GB), model: WDC WD1200JB-75CRA0
* Disk hda: size: 45191946240 bytes (45GB), model: IBM-DTLA-307045
Attached SCSI disks:
* Disk sda: SEAGATE ST318452LC (Channel: 00 ID: 08 Lun: 00)
* Disk sdb: SEAGATE ST318453LC (Channel: 00 ID: 09 Lun: 00)
* Disk sdc: SEAGATE ST336607LC (Channel: 01 ID: 08 Lun: 00)
* Disk sdd: SEAGATE ST336607LC (Channel: 01 ID: 09 Lun: 00)
* Disk sde: SEAGATE ST336607LC (Channel: 01 ID: 11 Lun: 00)
* Disk sdf: SEAGATE ST336607LC (Channel: 01 ID: 12 Lun: 00)
* Disk sdg: SEAGATE ST318453LC (Channel: 01 ID: 13 Lun: 00)
* Disk sdh: SEAGATE ST318452LC (Channel: 01 ID: 14 Lun: 00)
The second example illustrates a dual-processor Xeon system (note that HyperThreading causes the 2 processors to appear as 4):
[rtwomey@babbage inventory]# ./get_inventory.pl
Statistics of machine babbage
* 4 CPUs: CPU1 = Intel(R) Xeon(TM) CPU 2.80GHz @ 2791.744MHz; CPU2 = Intel(R) Xeon(TM) CPU 2.80GHz @ 2791.744MHz; CPU3 = Intel(R) Xeon(TM) CPU 2.80GHz @ 2791.744MHz; CPU4 = Intel(R) Xeon(TM) CPU 2.80GHz @ 2791.744MHz
* Kernel: 2.6.9-11.ELsmp #1 SMP Fri May 20 18:26:27 EDT 2005
* Memory total: 514484kB
* Hostname: babbage @ XXX.XXX.XXX.XXX
* Network Interfaces:
lo: 127.0.0.1
eth0: XXX.XXX.XXX.XXX
* Network controller: Intel Corporation 82544GC Gigabit Ethernet Controller (LOM) (rev 02)
* SCSI card: LSI Logic / Symbios Logic 53c1030 PCI-X Fusion-MPT Dual Ultra320 SCSI (rev 07)
* SCSI card: LSI Logic / Symbios Logic 53c1030 PCI-X Fusion-MPT Dual Ultra320 SCSI (rev 07)
* Graphics card: ATI Technologies Inc Rage XL (rev 27)
Attached SCSI disks:
* Disk sda: SEAGATE ST373307LC (Channel: 00 ID: 00 Lun: 00)
* Disk sdb: SEAGATE ST39103LC (Channel: 00 ID: 01 Lun: 00)
* Disk sdc: SEAGATE ST39204LC (Channel: 00 ID: 03 Lun: 00)
* Disk sdd: SEAGATE ST39204LC (Channel: 00 ID: 04 Lun: 00)
The third example illustrates an IDE CD-RW, as well as a SATA disk that is handled via the Linux sg driver:
[rtwomey@younger inventory]# ./get_inventory.pl
Statistics of machine younger
* 2 CPUs: CPU1 = Intel(R) Pentium(R) 4 CPU 3.00GHz @ 2992.825MHz; CPU2 = Intel(R) Pentium(R) 4 CPU 3.00GHz @ 2992.825MHz
* Kernel: 2.6.9-16.ELsmp #1 SMP Mon Aug 15 20:06:02 EDT 2005
* Memory total: 1033192kB
* Hostname: younger @ XXX.XXX.XXX.XXX
* Network Interfaces:
lo: 127.0.0.1
eth0: XXX.XXX.XXX.XXX
* Sound card: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6 Family) AC97 Audio Controller (rev 03)
* Graphics card: ATI Technologies Inc RV370 5B60 [Radeon X300 (PCIE)]
* Network controller: Broadcom Corporation NetXtreme BCM5751 Gigabit Ethernet PCI Express (rev 01)
Attached IDE disks:
* CD-RW drive: HL-DT-ST CD-RW/DVD-ROM GCC-4482B
Attached SCSI disks:
* ATA ST340014AS (Channel: 00 ID: 00 Lun: 00)
<<lessSample Output
In the first example, a stock Mandrake system is shown with a single processor, 386MB of memory, an attached SCSI disk array, and several internal IDE drives.
[rtwomey@gamma inventory]$ ./get_inventory.pl
Statistics of machine gamma
* 1 CPU: Pentium III (Coppermine) @ 863.955MHz
* Kernel: 2.6.11-6mdk #1 Tue Mar 22 16:04:32 CET 2005
* Memory total: 385668kB
* Hostname: gamma @ 192.168.1.3
* Network Interfaces:
lo: 127.0.0.1
eth0: 192.168.1.3
* Graphics card: nVidia Corporation NV15 [GeForce2 GTS/Pro] (rev a3)
* Network controller: 3Com Corporation 3c905C-TX/TX-M [Tornado] (rev 78)
* Network controller: Linksys NC100 Network Everywhere Fast Ethernet 10/100 (rev 11)
* Sound card: Creative Labs SB Live! EMU10k1 (rev 07)
* SCSI card: QLogic Corp. ISP12160 Dual Channel Ultra3 SCSI Processor (rev 06)
Attached IDE disks:
* Disk hdg: size: 81964302336 bytes (81GB), model: Maxtor 4R080L0
* Disk hdf: size: 30900215808 bytes (30GB), model: Maxtor 93073U4
* Disk hde: size: 164696555520 bytes (164GB), model: HDS722516VLAT80
* Disk hdc: size: 123522416640 bytes (123GB), model: IC35L120AVV207-0
* Disk hdb: size: 120034123776 bytes (120GB), model: WDC WD1200JB-75CRA0
* Disk hda: size: 45191946240 bytes (45GB), model: IBM-DTLA-307045
Attached SCSI disks:
* Disk sda: SEAGATE ST318452LC (Channel: 00 ID: 08 Lun: 00)
* Disk sdb: SEAGATE ST318453LC (Channel: 00 ID: 09 Lun: 00)
* Disk sdc: SEAGATE ST336607LC (Channel: 01 ID: 08 Lun: 00)
* Disk sdd: SEAGATE ST336607LC (Channel: 01 ID: 09 Lun: 00)
* Disk sde: SEAGATE ST336607LC (Channel: 01 ID: 11 Lun: 00)
* Disk sdf: SEAGATE ST336607LC (Channel: 01 ID: 12 Lun: 00)
* Disk sdg: SEAGATE ST318453LC (Channel: 01 ID: 13 Lun: 00)
* Disk sdh: SEAGATE ST318452LC (Channel: 01 ID: 14 Lun: 00)
The second example illustrates a dual-processor Xeon system (note that HyperThreading causes the 2 processors to appear as 4):
[rtwomey@babbage inventory]# ./get_inventory.pl
Statistics of machine babbage
* 4 CPUs: CPU1 = Intel(R) Xeon(TM) CPU 2.80GHz @ 2791.744MHz; CPU2 = Intel(R) Xeon(TM) CPU 2.80GHz @ 2791.744MHz; CPU3 = Intel(R) Xeon(TM) CPU 2.80GHz @ 2791.744MHz; CPU4 = Intel(R) Xeon(TM) CPU 2.80GHz @ 2791.744MHz
* Kernel: 2.6.9-11.ELsmp #1 SMP Fri May 20 18:26:27 EDT 2005
* Memory total: 514484kB
* Hostname: babbage @ XXX.XXX.XXX.XXX
* Network Interfaces:
lo: 127.0.0.1
eth0: XXX.XXX.XXX.XXX
* Network controller: Intel Corporation 82544GC Gigabit Ethernet Controller (LOM) (rev 02)
* SCSI card: LSI Logic / Symbios Logic 53c1030 PCI-X Fusion-MPT Dual Ultra320 SCSI (rev 07)
* SCSI card: LSI Logic / Symbios Logic 53c1030 PCI-X Fusion-MPT Dual Ultra320 SCSI (rev 07)
* Graphics card: ATI Technologies Inc Rage XL (rev 27)
Attached SCSI disks:
* Disk sda: SEAGATE ST373307LC (Channel: 00 ID: 00 Lun: 00)
* Disk sdb: SEAGATE ST39103LC (Channel: 00 ID: 01 Lun: 00)
* Disk sdc: SEAGATE ST39204LC (Channel: 00 ID: 03 Lun: 00)
* Disk sdd: SEAGATE ST39204LC (Channel: 00 ID: 04 Lun: 00)
The third example illustrates an IDE CD-RW, as well as a SATA disk that is handled via the Linux sg driver:
[rtwomey@younger inventory]# ./get_inventory.pl
Statistics of machine younger
* 2 CPUs: CPU1 = Intel(R) Pentium(R) 4 CPU 3.00GHz @ 2992.825MHz; CPU2 = Intel(R) Pentium(R) 4 CPU 3.00GHz @ 2992.825MHz
* Kernel: 2.6.9-16.ELsmp #1 SMP Mon Aug 15 20:06:02 EDT 2005
* Memory total: 1033192kB
* Hostname: younger @ XXX.XXX.XXX.XXX
* Network Interfaces:
lo: 127.0.0.1
eth0: XXX.XXX.XXX.XXX
* Sound card: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6 Family) AC97 Audio Controller (rev 03)
* Graphics card: ATI Technologies Inc RV370 5B60 [Radeon X300 (PCIE)]
* Network controller: Broadcom Corporation NetXtreme BCM5751 Gigabit Ethernet PCI Express (rev 01)
Attached IDE disks:
* CD-RW drive: HL-DT-ST CD-RW/DVD-ROM GCC-4482B
Attached SCSI disks:
* ATA ST340014AS (Channel: 00 ID: 00 Lun: 00)
Download (0.020MB)
Added: 2006-12-15 License: The Apache License 2.0 Price:
1055 downloads
glucopy-glurestore 1.0
glucopy-glurestore is a set of scripts for copying and restoring a fully functional GNU/Linux (or other Unix-like) system. more>>
glucopy-glurestore is a set of scripts for copying and restoring a fully functional GNU/Linux (or other Unix-like) system.
The glucopy script will back up all system content (system and user files), while the glurestore script will partition and format an identical system, restore the system and user files, and make the system bootable.
glucopy-glurestore scripts are included in the HTML documentation.
The back-up should (ideally) be made while the system is not running, which usually means that you need to boot with a rescue system disk. A number of suitable floppy or CD-based system images can be downloaded from the net or, better, included in your distributions boot options. Make sure that this rescue system supports the type of disks in your target system (SATA/SCSI or IDE).
The following script will get partition information in a form that can be used to restore the system on new disks and will then collect the working system files in one (or more) compressed tar balls.
The sfdisk program is used for getting partition information (-d option). Take a look at sys_partitions.txt after the glucopy.sh script has finished.
In this application it is considered that all Master Boot Record (MBR) information will be overwritten by the partitioning and boot loader programs. If you need a copy of all or parts of the MBR, however, dd is your friend.
System directories that contain transient information (e.g. /proc, /sys) are not copied. Directories or individual files containing unwanted information can be excluded using tars –exclude=/directory/file option.
#!/bin/sh
###########################
# glucopy.sh
#
# Creates the /glucopy directory
# Copies partition information in sys_partitions.txt
# Optionally makes a copy of the MBR in mbr.bin
# Copies working GNU/Linux system to .tgz files
#
# USAGE:
# Boot system with a rescue CD or any bootable CD
# that supports your type of disks (SATA/SCSI or IDE).
# run the back-up script: ./glucopy.sh
#
# In this example the system is on /dev/sda
# /dev/sda1 is a small partition with HW manufacturer utilities
# /dev/sda2 has system root (/) -> mounted to /mnt
# /dev/sda3 is a spare (blank) partition
# /dev/sda4 has home (/home) and space to hold
# the information to be copied -> mounted to /mnt2
#
# 061116 jp/dm
###########################
# Change the following to reflect the place where your system root (/)
# and the home directories (/home/*) are mounted
mkdir /tmp/mnt1
mkdir /tmp/mnt2
mount /dev/sda2 /tmp/mnt1
mount /dev/sda4 /tmp/mnt2
# The directory to hold the system copy is placed on the larger partition
mkdir /tmp/mnt2/glucopy
# Change to the working directory
cd /tmp/mnt2/glucopy
# Optionally copy MBR information
#dd if=/dev/sda of=mbr.bin bs=512 count=1
# Copy partition information
/sbin/sfdisk -d /dev/sda > sys_partitions.txt
# Make tarballs
tar -C /tmp/mnt1 -cvzf syscopy.tgz boot bin etc lib media opt root sbin usr var dev
# Move up a level
cd ..
# here we are under the /home directory level
# notice that --exclude will exclude anything that matches a _pattern_
# the glucopy directory will still be created in the tarball
tar -cvzf ./glucopy/homecopy.tgz * --exclude=glucopy/*
# Copy the backup/restore scripts (here under root /), and the sfdisk program, as well
cp /glucopy.sh ./glucopy
cp /glurestore.sh ./glucopy
cp /sbin/sfdisk ./glucopy
# Notify user
echo -e “glucopy: finished a”
<<lessThe glucopy script will back up all system content (system and user files), while the glurestore script will partition and format an identical system, restore the system and user files, and make the system bootable.
glucopy-glurestore scripts are included in the HTML documentation.
The back-up should (ideally) be made while the system is not running, which usually means that you need to boot with a rescue system disk. A number of suitable floppy or CD-based system images can be downloaded from the net or, better, included in your distributions boot options. Make sure that this rescue system supports the type of disks in your target system (SATA/SCSI or IDE).
The following script will get partition information in a form that can be used to restore the system on new disks and will then collect the working system files in one (or more) compressed tar balls.
The sfdisk program is used for getting partition information (-d option). Take a look at sys_partitions.txt after the glucopy.sh script has finished.
In this application it is considered that all Master Boot Record (MBR) information will be overwritten by the partitioning and boot loader programs. If you need a copy of all or parts of the MBR, however, dd is your friend.
System directories that contain transient information (e.g. /proc, /sys) are not copied. Directories or individual files containing unwanted information can be excluded using tars –exclude=/directory/file option.
#!/bin/sh
###########################
# glucopy.sh
#
# Creates the /glucopy directory
# Copies partition information in sys_partitions.txt
# Optionally makes a copy of the MBR in mbr.bin
# Copies working GNU/Linux system to .tgz files
#
# USAGE:
# Boot system with a rescue CD or any bootable CD
# that supports your type of disks (SATA/SCSI or IDE).
# run the back-up script: ./glucopy.sh
#
# In this example the system is on /dev/sda
# /dev/sda1 is a small partition with HW manufacturer utilities
# /dev/sda2 has system root (/) -> mounted to /mnt
# /dev/sda3 is a spare (blank) partition
# /dev/sda4 has home (/home) and space to hold
# the information to be copied -> mounted to /mnt2
#
# 061116 jp/dm
###########################
# Change the following to reflect the place where your system root (/)
# and the home directories (/home/*) are mounted
mkdir /tmp/mnt1
mkdir /tmp/mnt2
mount /dev/sda2 /tmp/mnt1
mount /dev/sda4 /tmp/mnt2
# The directory to hold the system copy is placed on the larger partition
mkdir /tmp/mnt2/glucopy
# Change to the working directory
cd /tmp/mnt2/glucopy
# Optionally copy MBR information
#dd if=/dev/sda of=mbr.bin bs=512 count=1
# Copy partition information
/sbin/sfdisk -d /dev/sda > sys_partitions.txt
# Make tarballs
tar -C /tmp/mnt1 -cvzf syscopy.tgz boot bin etc lib media opt root sbin usr var dev
# Move up a level
cd ..
# here we are under the /home directory level
# notice that --exclude will exclude anything that matches a _pattern_
# the glucopy directory will still be created in the tarball
tar -cvzf ./glucopy/homecopy.tgz * --exclude=glucopy/*
# Copy the backup/restore scripts (here under root /), and the sfdisk program, as well
cp /glucopy.sh ./glucopy
cp /glurestore.sh ./glucopy
cp /sbin/sfdisk ./glucopy
# Notify user
echo -e “glucopy: finished a”
Download (0.14MB)
Added: 2006-12-07 License: (FDL) GNU Free Documentation License Price:
1051 downloads
Linux LiveCD VoIP Server 2.0.23
Linux LiveCD VoIP Server can be used to provide a Vonage type service. more>>
Linux LiveCD VoIP Server can be used to provide a Vonage type service, or to create a voip pbx for a campus or business with up to thousands of SIP phones.
It is based on the Open Standard SIP Express Router (SER) and Asterisk. It can serve as a SIP Proxy, VoIP PBX, VoIP gateway or Class 5 Softswitch.
Main features:
- Easy Web user administration and real-time accounting.
- All in one solution to VoIP and SIP enable your business.
- Allows you to make your own SIP numbering plan. Centrex service.
- Can be connected to multiple A-Z wholesale termination providers and to your own PSTN termination gateway/router.
- Can do Least Cost Routing
- Includes nat traversal, stun server, media server for conference call bridge, voicemail to email, incomming virtual numbers (DIDs), follow me forwarding.
- Commercial pre-paid, post-paid and flat rate account support. No calling card (no b2bua in base system).
- Requires no software installation - it is a liveCD.
- Supports any SIP soft or hardware phones, such as popular XTen, Cisco ATA 186, Grandstream, Sipura, Bugetone, Linksys PAP2 and more.
- Supports SIP for Video Conferencing (Xten / CounterPath EyeBeam)
- Supports Ecrypted SIP with Xten / Counterpath Secure Xten Pro
- Requires a PC with fixed ip connection to the internet. 256 MBytes of RAM, CDRom reader, ide or sata hard disk to store call and user database and web site.
- Remote ssh configuration and administration help
Enhancements:
- Kernel 2.4.34.1 and minor bugfixes.
<<lessIt is based on the Open Standard SIP Express Router (SER) and Asterisk. It can serve as a SIP Proxy, VoIP PBX, VoIP gateway or Class 5 Softswitch.
Main features:
- Easy Web user administration and real-time accounting.
- All in one solution to VoIP and SIP enable your business.
- Allows you to make your own SIP numbering plan. Centrex service.
- Can be connected to multiple A-Z wholesale termination providers and to your own PSTN termination gateway/router.
- Can do Least Cost Routing
- Includes nat traversal, stun server, media server for conference call bridge, voicemail to email, incomming virtual numbers (DIDs), follow me forwarding.
- Commercial pre-paid, post-paid and flat rate account support. No calling card (no b2bua in base system).
- Requires no software installation - it is a liveCD.
- Supports any SIP soft or hardware phones, such as popular XTen, Cisco ATA 186, Grandstream, Sipura, Bugetone, Linksys PAP2 and more.
- Supports SIP for Video Conferencing (Xten / CounterPath EyeBeam)
- Supports Ecrypted SIP with Xten / Counterpath Secure Xten Pro
- Requires a PC with fixed ip connection to the internet. 256 MBytes of RAM, CDRom reader, ide or sata hard disk to store call and user database and web site.
- Remote ssh configuration and administration help
Enhancements:
- Kernel 2.4.34.1 and minor bugfixes.
Download (MB)
Added: 2007-03-25 License: Free To Use But Restricted Price: $399
636 downloads
Linuxo Live! 0.4
Linuxo Live! is a new and modern Linux distribution. more>>
Linuxo Live! is a new and modern Linux distribution.
Enhancements:
- added better support for SATA disks, now no problems with hdd installation on SATA
- added Koffice 1.3.5 with full serbian translation
- fixed KDE keyboard change (on taskbar), SR, SP and US keyboard selection activated
- removed NVIDIA 3D driver as default driver for graphic cards, boot problem, still in testing
- added better hardware detection for monitors (TFT) and printers
- added KDE 3.4 (final version)
- removed kernel source from CD version due to low disk space.
- added OpenOffice.org 2.0b on DVD version, OpenOffice 1.1.4 still there on CD and DVD versions
- added Acrobat Reader 7 for Linux on DVD version
- added Extras CD with addition software and kernel soruces (mainly for CD version)
- added serbian translation for livecd-install script
- added english-serbian dictionary (nkrecnik)
- added several serbian translations for KDE applications
- removed MS ttf fonts for Live version, trasnfered on Extras CD as package with EULA (can be installed on Linuxo HD installation)
- added new linuxo style components: new graphical themes for Linuxo Control Center.
- added new linuxo icons for applications and desktop.
- added 6 new plugins for xmms (on DVD version)
- added kernel source for hdd install (on DVD version). Same kernel source is present on Extras CD as well (for CD version)
- added new 2.6.11 kernel and 2.6.11 kernel source on Extras CD (for CD and DVD version in case of HD install)
- added 3 new desktop linuxo wallpapers
<<lessEnhancements:
- added better support for SATA disks, now no problems with hdd installation on SATA
- added Koffice 1.3.5 with full serbian translation
- fixed KDE keyboard change (on taskbar), SR, SP and US keyboard selection activated
- removed NVIDIA 3D driver as default driver for graphic cards, boot problem, still in testing
- added better hardware detection for monitors (TFT) and printers
- added KDE 3.4 (final version)
- removed kernel source from CD version due to low disk space.
- added OpenOffice.org 2.0b on DVD version, OpenOffice 1.1.4 still there on CD and DVD versions
- added Acrobat Reader 7 for Linux on DVD version
- added Extras CD with addition software and kernel soruces (mainly for CD version)
- added serbian translation for livecd-install script
- added english-serbian dictionary (nkrecnik)
- added several serbian translations for KDE applications
- removed MS ttf fonts for Live version, trasnfered on Extras CD as package with EULA (can be installed on Linuxo HD installation)
- added new linuxo style components: new graphical themes for Linuxo Control Center.
- added new linuxo icons for applications and desktop.
- added 6 new plugins for xmms (on DVD version)
- added kernel source for hdd install (on DVD version). Same kernel source is present on Extras CD as well (for CD version)
- added new 2.6.11 kernel and 2.6.11 kernel source on Extras CD (for CD and DVD version in case of HD install)
- added 3 new desktop linuxo wallpapers
Download (695MB)
Added: 2005-10-13 License: GPL (GNU General Public License) Price:
1477 downloads
Secleted [ 0 ] software to compare
- Page: 1 of 2
- 1
- 2
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above nlite sata 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