Main > Free Download Search >

Free iso software for linux

iso

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 348
poweriso 1.1

poweriso 1.1


poweriso is the free, Linux CLI version of PowerISO. more>>
poweriso is the free, Linux CLI version of PowerISO.

This is a free utility for linux which can extract, list, and convert image files (including ISO, BIN, DAA, and other formats).

Usage: poweriso [parameters] [-switches]

Commands

list

List files and directories in image file.

Example: List all files and directories in root direcory of /home/sam/test.iso .
Command: poweriso list /home/sam/test.iso / -r

extract

Extract files/directories from image file.

Example: Extract all files and directories in root direcory of /home/sam/test.iso to /home/sam/test recursively.
Command: poweriso extract /home/sam/test.iso / -od /home/sam/test

convert

Convert image file to other format.

Example: Convert /home/sam/test.daa to standard iso file
Command: poweriso convert /home/sam/test.daa -o /home/sam/test.iso -ot iso

Switches

-r List or extract recursively.
-o Specify output image file name.
-od Specify output folder.
-ot Specify output image file type. If not specified,
the image type will be determined by file name suffix.
-volsize Split output image file to multiple volumes, and set volume
size to . Example: -volsize 100M
-setpassword Set password for output image file.
Example: -setpassword 12345678

<<less
Download (0.28MB)
Added: 2007-04-14 License: Freeware Price:
688835 downloads
ISO - DAX - CSO Converter 1.08

ISO - DAX - CSO Converter 1.08


ISO - DAX - CSO Converter is simple Kommander script for converting PSP UMD backups between three file formats ISO DAX and CSO. more>>
ISO - DAX - CSO Converter is simple Kommander script for converting PSP UMD backups between three file formats ISO DAX and CSO.
Script depends on:
Kommander
ciso v1.01
daxcr v0.3
kommander is part of kdewebdev3 packet
To compile ciso and daxcr gcc and zlib-devel packet must be installed.
Source for ciso is part of devhook SDK 0.46.0000 file is called dh046_SDK.rar and it can be found on various PSP forums and sites.
To compile ciso:
Extract source to some folder
in Konsole type:
gcc -o ciso ciso.c -lz
ciso will be created warnings are OK if there is no errors
to make ciso executable type:
chmod a+x ciso
copy ciso to path eg. "/usr/local/bin"
Source for daxcr is part of DAX ZISO loader and it can be found at http://dax.psp-tuts.net/DAXZISO_062.zip
To compile daxcr:
Extract source to some folder
in Konsole type:
make
daxcr will be created warnings are OK if there is no errors to make daxcr executable type:
chmod a+x daxcr
copy daxcr to path eg. "/usr/local/bin"
Enhancements:
- modification to POPStation part of GUI to support
- new Copstation v.2.21
- Rename POPstation to Copstation
- support for ISO extraction from EBOOT.PBP
<<less
Download (0.047MB)
Added: 2007-02-04 License: GPL (GNU General Public License) Price:
17852 downloads
Qgonki 0.1.1

Qgonki 0.1.1


Qgonki is a converter for Polish letters. more>>
Qgonki is a small tool for converting Polish letters between severals standards, like ISO-8859-2, Windows-1250, and others.

Its useful for Polish webmasters who want to go with the world standards, but whose contributors are stuck in Windows.
<<less
Download (0.029MB)
Added: 2005-04-13 License: GPL (GNU General Public License) Price:
1654 downloads
Spinix 0.9

Spinix 0.9


Spinix is a new, complete GNU/Linux distribution geared toward ease of use. more>>
Spinix is a new, complete GNU/Linux distribution geared toward ease of use. Currently, Spinix is still in the beta stage. There has been no official release.
Spinix 0.9 comes with an all new installer. If your computer can not boot the ISO you will need to make a bootdisk and a root filesystem disk.
Main features:
- Kernel Version: 2.4.20
- XServer: XFree86 4.3.0
- Bash Version: 2.05b
- GCC Version: 3.3
- Gnome Version: 2.2
<<less
Download (632MB)
Added: 2005-05-09 License: LGPL (GNU Lesser General Public License) Price:
1629 downloads
KnoppiXMAME 1.3 beta 19

KnoppiXMAME 1.3 beta 19


KnoppiXMAME is a bootable CD/DVD image with hardware automatic probing and configuration for playing MAME games. more>>
KnoppiXMAME is a bootable CD/DVD image with hardware automatic probing and configuration for playing MAME games.

No games are included, but they can be added to the ISO image, as well as new versions of X-MAME, gxmame, and the Linux kernel.
<<less
Download (116MB)
Added: 2005-05-19 License: GPL (GNU General Public License) Price:
1621 downloads
CDfs 2.6.12

CDfs 2.6.12


CDfs is a filesystem that exports all tracks on a CD as normal files. more>>
CDfs is a file system for Linux systems that `exports all tracks and boot images on a CD as normal files. These files can then be mounted (e.g. for ISO and boot images), copied, played (audio and VideoCD tracks)...
The primary goal for developing this file system was to `unlock information in old ISO images. For instance, if you have a multisession CD with two ISO images that both contain the file a, you only see the file a in the second session if you use the iso9660 file system:
[root@k6 /root]# mount -t iso9660 -o ro /dev/cdrom /mnt/cdrom
[root@k6 /root]# ls -l /mnt/cdrom
total 2
-r-xr-xr-x 1 root root 2 Aug 8 19:16 a
-r-xr-xr-x 1 root root 2 Aug 8 19:19 b
If you mount the CD with the cdfs file system, you get the two sessions as files:
[root@k6 /root]# mount -t cdfs -o ro /dev/cdrom /mnt/cdfs
[root@k6 /root]# ls -l /mnt/cdfs
total 33389
-r--r--r-- 1 ronsse ronsse 33503232 Aug 8 19:36 sessions_1-1.iso
-r--r--r-- 1 ronsse ronsse 34121728 Aug 8 1999 sessions_1-2.iso
These files can then be mounted loop back:
[root@k6 /root]# mount -t iso9660 -o loop /cdfs/sessions_1-1.iso /mnt/loop1
[root@k6 /root]# mount -t iso9660 -o loop /cdfs/sessions_1-2.iso /mnt/loop2
and the file a can be accessed in both sessions
[root@k6 /root]# ls -l /mnt/loop1
total 9889
-r-xr-xr-x 1 root root 10104236 Aug 8 17:34 a
[root@k6 /root]# ls -l /mnt/loop2
total 2
-r-xr-xr-x 1 root root 2 Aug 8 19:16 a
-r-xr-xr-x 1 root root 2 Aug 8 19:19 b
The file system also allows you to access data on faulty multi session disks, e.g. disk with multiple single sessions instead of a multi session (for instance created with mkisofs without the proper -C parameters).
Version restrictions:
- Red Book (audio), Yellow Book Mode 1 (data) , Green/White Book Mode 2 / XA Form 1 and Green/White Book Mode 2 / XA Form 2 (data) tracks are exported. Other types will be added in the future. Data tracks are checked for ISO, HFS and boot images. If none of these are found, the data track is exported as `unknown`. This version only exports the first HFS and boot image (anybody seen a CD with more than 1 HFS or boot image?).
<<less
Download (0.030MB)
Added: 2005-07-07 License: GPL (GNU General Public License) Price:
1594 downloads
FLTK burncd GUI frontend 0.1

FLTK burncd GUI frontend 0.1


FLTK burncd GUI frontend is a very simple GUI for burning ISO images created by mkisofs or other software. more>>
This program is very simple for burning iso images created by mkisofs or any other foftware. It use burncd as write program.
This is initial release and it can write only data images in single or multisession mode.
Main features:
- Quick erase for CD-RW disks
- Full erase for CD-RW disks
- DAO writing mode
- Multi device support in one moment
- Very simple and fast(using FLTK 1.1.6 library)
<<less
Download (0.015MB)
Added: 2005-07-12 License: BSD License Price:
1567 downloads
HacBurn 0.3.5

HacBurn 0.3.5


HacBurn is a frontend to cdrtools/mpg321/ogg123 written with gtk2-perl. more>>
HacBurn is a frontend to cdrtools/mpg321/ogg123 written with gtk2-perl.

HacBurn is a script written in perl using gtk2-perl. It allows a user to use cdrtools and a couple other console applications in a graphical interface to burn CDs.

It can currently burn iso/bin images and audio discs, it can make iso images and also copy CDs. If you have 2 optical drives on the fly copying is available.

<<less
Download (0.084MB)
Added: 2005-08-02 License: GPL (GNU General Public License) Price:
1545 downloads
FRUSTIX 08-01-04

FRUSTIX 08-01-04


FRUSTIX is a Linux OS which is distributed in an ISO image. more>>
FRUSTIX is a Linux OS which is distributed in an ISO image.

You can burn it to a CD (443 MB) and place it in your CD drive. Booting from this CD gives you a complete basic Linux with some apps and some games.

You dont need to worry about a harddisk, because it runs fine without one and doesnt touch it, if there is one.

If you need to save new created data, you can eject the FRUSTIX CD and use UDF formatted CD-RWs.

So if you wanna test it, then download it!

After resetting your computer and / or taking off the CD, you can run your previous operating system from HD again (if there already was any, before?).
<<less
Download (430MB)
Added: 2005-09-02 License: BSD License Price:
1513 downloads
cgixx 1.07

cgixx 1.07


cgixx is intended as a modern CGI library for ISO standard C++ compilers. more>>
cgixx is intended as a modern CGI library for ISO standard C++ compilers.
The focus of the cgixx library is not for the generation of complex HTML forms, but rather fast and reliable conversations between CGI and your C++ code. cgixx supports standard GET, POST, HEAD, and PUT CGI methods and cookies as defined in the version 1.1 specification.
Installation:
Make sure GCC 3.x is set up as your compiler.
./configure [--help]
make
(as root)
make install
You can override the default install path of /usr/local by using the --prefix=/path/to/install option with configure.pl.
Enhancements:
- Removed a buggy compiler check from configure.pl.
- Fixed negation of unsigned variable.
<<less
Download (0.045MB)
Added: 2005-09-26 License: BSD License Price:
1488 downloads
OSSP ex 1.0.5

OSSP ex 1.0.5


OSSP ex is a small ISO-C++ style exception handling library for use in the ISO-C language. more>>
OSSP ex is a small ISO-C++ style exception handling library for use in the ISO-C language. It allows you to use the paradigm of throwing and catching exceptions in order to reduce the amount of error handling code without making your program less robust.

This is achieved by directly transferring exceptional return codes (and the program control flow) from the location where the exception is raised (throw point) to the location where it is handled (catch point) -- usually from a deeply nested sub-routine to a parent routine.

All intermediate routines no longer have to make sure that the exceptional return codes from sub-routines are correctly passed back to the parent.

The OSSP ex facility also provides advanced exception handling features like shielded and deferred exceptions. Additionally, OSSP ex allows you to choose the used underlying machine context switching facility and optionally support multi-threading environments by allowing you to store the exception catching stack in a thread-safe way.
<<less
Download (0.30MB)
Added: 2005-10-03 License: MIT/X Consortium License Price:
1481 downloads
OSSP var 1.1.3

OSSP var 1.1.3


OSSP var is a flexible, full-featured and fast variable construct expansion library. more>>
OSSP var is a flexible, full-featured and fast variable construct expansion library. It supports a configurable variable construct syntax very similar to the style found in many scripting languages (like @name, ${name}, , etc.) and provides both simple scalar (${name}) and array (${name[index]}) expansion, plus optionally one or more post-operations on the expanded value (${name:op:op...}).
The supported post-operations are length determination, case conversion, defaults, postive and negative alternatives, sub-strings, regular expression based substitutions, character translations, and padding.
Additionally, a meta-construct plus arithmetic expressions for index and range calculations allow (even nested) iterations over array variable expansions (..[..${name[#+1]}..]..). The actual variable value lookup is performed through a callback function, so OSSP var can expand arbitrary values.
Hint: There is also an ISO C++ derivative of the OSSP var library, named libvarexp. It is based on a development version of OSSP var and hence does not provide exactly the same amount of functionality. But it provides an ISO C++ API and so can be of interest to you if you are programming in ISO C++ (where OSSP vars ISO C API might be too boring for you).
Enhancements:
- Fix some sprintf(3) parameter passing. [Ralf S. Engelschall]
- Upgraded build environment to GNU libtool 1.5.20 and GNU shtool 2.0.3. [Ralf S. Engelschall]
- Bumped year in copyright messages for new year 2005. [Ralf S. Engelschall]
<<less
Download (0.33MB)
Added: 2005-10-03 License: MIT/X Consortium License Price:
1481 downloads
ffsearch-LiveCD 0.3

ffsearch-LiveCD 0.3


ffsearch-LiveCD is a modified Knoppix-Linux with Fast File Search running on top of it. more>>
ffsearch-LiveCD is a modified Knoppix-Linux with Fast File Search running on top of it. This way, no installation is required!

You can download an Iso, burn it on CD, put the disc in you CD-drive and boot it up. It crawls the net for SMB and FTP shares and provides you with a web interface for searching these files.
<<less
Download (194.2MB)
Added: 2005-10-10 License: GPL (GNU General Public License) Price:
1474 downloads
OSSP str 0.9.12

OSSP str 0.9.12


OSSP str is a string library written in ISO-C which provides functions for handling, matching, parsing, etc of ISO-C strings. more>>
OSSP str is a generic string library written in ISO-C which provides functions for handling, matching, parsing, searching and formatting of ISO-C strings.
So it can be considered as a superset of POSIX string(3), but its main intention is to provide a more convenient and compact API plus a more generalized functionality.
Installation:
To install the Str library into /path/to/str/{bin,lib,include,man}/ perform the following steps in your shell:
./configure --prefix=/path/to/str
make
make test
make install
This installs at least a static variant of the Str library and when your platforms support it, also a shared library variant of the Str library.
Enhancements:
- str_parse(3) was fixed so that the va_list argument is no longer incorrectly used twice for processing the arguments, which led to segmentation faults.
<<less
Download (0.34MB)
Added: 2005-10-12 License: GPL (GNU General Public License) Price:
1472 downloads
ll-toxic 0.7

ll-toxic 0.7


ll-toxic helps to generate Oracle database functions. more>>
ll-toxic helps to generate Oracle database functions that return XML strings by allowing you to embed processsing instructions containing PL/SQL code in XML.
Enhancements:
- The API has changed so that encodings other than ISO-8859-1 are now supported.
<<less
Download (0.008MB)
Added: 2005-11-01 License: Python License Price:
1453 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5