Main > Free Download Search >

Free iso maker for mac software for linux

iso maker for mac

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 1870
ISO Master 1.0

ISO Master 1.0


ISO Master is an open-source, graphical CD image editor that runs on Linux. more>>
ISO Master is an open-source, graphical CD image editor that runs on Linux; and bkisofs, the underlying library used for reading, modifying and writing ISO images.
The hard part of this project is the library for working with ISOs (bkisofs). My hope is that people will like this library enough to make their own GUIs using it. So my choice of widget set (GTK, that is) will not necessarily annoy too many people.
Main features:
- Display file/directory contents of the image and and the regular filesystem in two panels and be able to navigate them.
- Display file sizes for files on image/filesystem.
- Sort by name or by size
- Select any number of items in the file browsers.
- Extract selected from image to the filesystem
- Delete selected from image.
- Add selected from filesystem to image.
- Save modified image.
- Create image from scratch.
Enhancements:
- Usability and performance improvements.
- 10 new translations.
- A bug that sometimes caused corrupt ISOs to be written has been fixed.
<<less
Download (0.20MB)
Added: 2007-06-11 License: GPL (GNU General Public License) Price:
1093 downloads
Phonetic for mac 1.0

Phonetic for mac 1.0


A program that translates text to the phonetic alphabet. more>> It is freeware with the source code avaliable. You can run it in Linux or Windows.
Phoneic finds words within telephone numbers. Phonetic also converts phonetic telephone numbers into numeric digits.
All words found within the given telephone number will be listed. If you click on a word, every combination in which that word is included will be displayed.
<<less
Download (809.72MB)
Added: 2009-04-21 License: Freeware Price: Free
198 downloads
Soundboard Maker 0.1

Soundboard Maker 0.1


Soundboard Maker is a tool for making and running soundboards. more>>
Soundboard Maker is a tool for making and running soundboards.

You can play selected audio, save soundboards, load soundboards, and distribute your soundboards to other users.

The interface is easy to customize.

<<less
Download (0.31MB)
Added: 2006-06-22 License: GPL (GNU General Public License) Price:
956 downloads
Config Maker 0.2

Config Maker 0.2


Config Maker is a tool to automatically create C++ classes that parse configuration files. more>>
Config Maker is a tool to automatically create C++ classes that parse configuration files.

Only a few lines of text that describe the possible entries in the configuration file are needed, and the complete class will be generated ready for use.

Basic usage

The input files for Config Maker have a very simple structure (in ANTLR/grep like notation):

objectname (configentry)+
Each configentry looks like this
type entryname defaultvalue (comment)?

type

Type of the entry, can be int, double, string or bool. If the basic type is followed by any number, the corresponding c++object variable will be of type vector < basic type > The number is the initial number of elements that are allocated for the vector, but the actual configuration file can contain more components. These are added using the push_back method.

If there are less elements specified in the configuration file, the object variable will still contain the number of elements specified here. No warning will be issued.
configentry

Name of the entry and corresponding variable. Has to be at least two characters long and can contain characters and numbers. Case insensitive.

defaultvalue

Default value for the entry. This is optional.

comment

Each comment starts with // and is completely ignored

<<less
Download (0.30MB)
Added: 2007-03-20 License: GPL (GNU General Public License) Price:
955 downloads
El Jay Icon Maker 0.6

El Jay Icon Maker 0.6


El Jay Icon Maker is a Firefox extension that allows you to right click on any image and create an icon for use with livejournal more>>
El Jay Icon Maker is a Firefox extension that allows you to right click on any image and create an icon for use with livejournal.com There are two options to choose from when making an icon "Create Icon Instantly" and "Create Icon With Options".

Selecting either link redirects you to the El Jay icon maker home page where you can rotate, crop, add text and borders to the image. The El Jay icon maker was made for use with llivejournal.com, but can be used on any site that requires an image smaller than 100x100 for an icon.

This is not a support forum, if you have questions or problems please go here: http://www.livejournal.com/users/lechatron/407511.html?mode=reply

<<less
Download (0.005MB)
Added: 2007-05-30 License: MPL (Mozilla Public License) Price:
1060 downloads
Guitar Mode Maker 3.0

Guitar Mode Maker 3.0


Guitar Mode Maker is a software will help the guitar player learn scales, modes, chords, and create new scales. more>>
Guitar Mode Maker is a software will help the guitar player learn scales, modes, chords, and create new scales. Designed to be easy enough for the beginner and comprehensive for the advanced user! Learn Chords and Scales. Review the Chord and Scale List for GMM 3.0. Over 750 Chords and Scales Included in the trial installation!
This program also has the capability of the user sharing their scales with others through a new and improved, unique scale file (.GS2 file)!
Guitar Mode Maker 1.0 for linux comes with hundreds of scales, chords and modes to help you learn! Guitar Mode Maker 1.0 is available only for Linux.
Additionally for BASS GUITAR PLAYERS, Bass Guitar Mode Maker! Now bass players can have all the scales, modes and chords too! Bass Guitar Mode Maker 3.0 available for download now!
Main features:
- Easy scale creation by clicking on the fretboard, note list or piano keyboard
- Easy scale transposition
- Ability to save Guitar Scale files, even in trial version
- Ability to hear your scale played by acoustic guitar, 12-string or piano
- 750 Scales and chords TO START WITH!
- Ability to print guitar scale on printer!
- Easier to use interface (Screen Shot)
<<less
Download (0.028MB)
Added: 2006-07-20 License: GPL (GNU General Public License) Price:
1219 downloads
List::Maker 0.0.3

List::Maker 0.0.3


List::Maker is a Perl module that can generate more sophisticated lists than just $a..$b. more>>
List::Maker is a Perl module that can generate more sophisticated lists than just $a..$b.

SYNOPSIS

use List::Maker;

@list = < 1..10 >; # (1,2,3,4,5,6,7,8,9,10)

@list = < 10..1 >; # (10,9,8,7,6,5,4,3,2,1)

@list = < 1,3,..10 > # (1,3,5,7,9)
@list = < 1..10 x 2 > # (1,3,5,7,9)

@list = < 0..10 : prime N >; # (2,3,5,7)
@list = < 1,3,..30 : /7/ > # (7,17,27)

@words = < a list of words >; # (a, list, of, words)
@words = < a list "of words" >; # (a list, of words)

The List::Maker module hijacks Perls built-in file globbing syntax (< *.pl > and glob *.pl) and retargets it at list creation.

The rationale is simple: most people rarely if ever glob a set of files, but they have to create lists in almost every program they write. So the list construction syntax should be easier than the filename expansion syntax.

<<less
Download (0.007MB)
Added: 2007-06-27 License: Perl Artistic License Price:
852 downloads
Linux Video Maker 0.2.0

Linux Video Maker 0.2.0


Linux Video Maker is useful for DVD/(S)VCD structure generating, ready for record on CD/DVD. more>>
Linux Video Maker is useful for DVD/(S)VCD structure generating, ready for record on CD/DVD. Its in fact graphics interface (GUI) for transcode, mplex, DVDAuthor and few other programs...

Using of these programs for this purpose is uncomfortable and sometimes difficult especially for beginners because it involves a lot of knowledge about DVD/(S)VCD technology and video converting.

Linux Video Maker binds funcionality of 8 exterior programs and prevents from making many mistakes mainly in conversion process which can take a lot of time as AVI files uses complicated video algorithms (DIVX).

Program doesnt contain yet too many advanced options but it allow generate a standard DVD/(S)VCD structure without any problems.

Program in 2 GUI languages: english and polish !

<<less
Download (0.38MB)
Added: 2006-02-16 License: Open Software License Price:
1366 downloads
Mac menubar for GNOME/Xfce 1.0.14

Mac menubar for GNOME/Xfce 1.0.14


Mac menubar for GNOME/Xfce is a Mac-style menubar for gtk2/gnome/xfce. more>>
Mac menubar for GNOME/Xfce is a Mac-style menubar for gtk2/gnome/xfce.

This is not one app, but 3 pieces of mutual-dependent softwares:

1.patch for gtk2 (2.10.x and 2.8.x)
2.gnome panel applet
3.xfce panel plugin (for 4.4+ only)

The sources are hosted on AUR (Arch User Repository), packages are gtk2-aqd, gnome-macmenu-applet, and xfce4-macmenu-plugin. There is also a xfce plugin that emulates round panel corners: xfce4-corner-plugin

The home page points to an ubuntu HOWTO for installing the patches and applets. There are also binaries for ubuntu edgy and arch linux.

<<less
Download (MB)
Added: 2007-01-21 License: LGPL (GNU Lesser General Public License) Price:
1035 downloads
Patch Maker 3.0

Patch Maker 3.0


Patch Maker helps you manage multiple in-progress source code patches to software. more>>
Patch Maker helps you manage multiple in-progress source code patches to software. Patch Maker remembers which files are part of which patch, and keeps them disentangled during the development process.
It speeds up common operations and housekeeping tasks, allowing you to focus on writing code. It is a command-line tool written in Perl, and so is usable on (at least) Windows, Linux and Mac OS X.
Enhancements:
- Initial SVN support was added to go with CVS.
- The configuration was moved to the .pmrc file in the home directory.
- Message and error printing were tidied up and standardized.
<<less
Download (0.032MB)
Added: 2006-07-11 License: GPL (GNU General Public License) Price:
5673 downloads
TagCloud Maker Class 1.0

TagCloud Maker Class 1.0


TagCloud Maker Class is a class that takes a single dimensional array of terms and outputs a piece of HTML with each term. more>>
TagCloud Maker Class is a class that takes a single dimensional array of terms and outputs a piece of HTML with each term wrapped in a span tag with an ID that you can define in your CSS.

TagCloud Maker Class script can be called either as an object or as a static class.

Check out the example page. The keywords from the sample page come from the last 30 entries of my blog. Ill admit I cheated and just open the database and pull them from there instead of trying to call my blog w/curl or fopen and parse it. (Although that would have been cooler.) I then ran each blog entry against Yahoos Term Extraction API to get the terms. Then I pumped that array into my new TagCloud maker. The important code you cant see from the index.php is below.


require_once(TagCloud.php);
$x = TagCloud::fetch_cloud($thisArray,...,tagcloud_,http://www.technorati.com/tags/%s);
$o = new TagCloud($thisArray,...,tagcloud_,http://www.technorati.com/tags/%s,10,weight,2);
$o->get_cloud();
$y = $o->output_cloud;

As you can see, I used 2 different methods of creating the 2 lists. The first is just calling the object::method statically with all the necessary parameters. This is by far the easiest way to use this class and unless you need something special, its the way I recommend. The second way it to instantiate an object. I pass all the variables into the constructor but you could just as easily use the setters to set them all. (dont know why you would but hey, I spent an extra 15 minutes creating getters and setters so use them, by all means use them!)
<<less
Download (0.012MB)
Added: 2006-01-25 License: GPL (GNU General Public License) Price:
1380 downloads
BeleniX ISO Remastering Toolkit Alpha1

BeleniX ISO Remastering Toolkit Alpha1


BeleniX ISO Remastering Toolkit consists of a set of shell scripts, utilities and config files to customize a Belenix ISO image. more>>
BeleniX ISO Remastering Toolkit software consists of a set of shell scripts, utilities and config files that allows one to customize the BeleniX ISO image and generate modified LiveCDs also called remastering.
Remastering BeleniX requires a bit of work. Though the scripts automate most of the process, this is the initial version of this software so some enhancements are still in the TODO stage.
Enhancements:
- This is the first release of the ISO Remastering Tookit for BeleniX.
- It allows one to create customized LiveCDs based on BeleniX.
- The HOWTO describes the process in detail.
<<less
Download (0.83MB)
Added: 2006-08-18 License: CDDL (Common Development and Distribution License) Price:
1164 downloads
GeeXboX ISO Generator 1.0

GeeXboX ISO Generator 1.0


GeeXboX ISO Generator is a tool to modify the GeeXboX in a few seconds without having to build the sources. more>>
With this package, it is easy to modify the GeeXboX in a few seconds without having to build the sources.
The generator produces an ISO image of the GeeXboX, ready to be burned on disc.
GeeXboX ISO Generator currently works under both GNU/Linux and Microsoft Windows 9x/NT/2k/XP operating systems.
Enhancements:
System:
- Updated linux to version 2.6.16.17.
- Updated BusyBox to 1.1.3.
- Updated uClibc to 2006.05.05 snapshot.
- Updated udev to version 0.92.
Toolchain:
- Introduced GCC 4.1.1 as the new compiler.
- Support for C++ in the toolchain.
- All packages are now built with big files support flag.
- Added support for non-free binary firmwares at sources build.
Player:
- Updated MPlayer to 1.0pre8.
- DVD Navigation Menus support.
- SHOUTcast and Netstream support (with content filtering on adult/subscription-only
- streams).
- Support for LIVE555 library (RTP/RTSP/SIP streaming) which provides FreeboxTV
- support for French people using the Free ISP.
- Use mp3-lib instead of FFMpeg to avoid audible glitches while seeking.
- Fix MPlayers bug which prevents AVI files with ODML index (99% of XviD files) to
- be read when idx=yes (default).
- Fix sound/subtitles issues while playing MPEG-TS streams.
- Support for multichannel AAC in MOV files.
- Playback of IFO files (DVD disc ripped on HDD for example) now works as expected.
- Set minimal cache size (5% of cache) to start playback of file very quickly.
- Fix TV channel OSD name generation with spaces in their name.
- Allows RTSP clients port forcing (for FreeboxTV users in router mode for example).
- Added support for DVD-RAM MPEG files.
Menu:
- Brand new menu item selection display (now with alpha layer).
- Added new menu that displays streams A/V properties.
- Allows metadata retrieval from MP3/OGG/FLAC audio files.
- Properties menu auto-opens and updates on audio-only media.
- Prevent user from browsing (and getting lost) in /
- Display NICs MAC address into information menu.
- Display CDROM size.
- Fixed display of disks partition size and freespace.
- Added release number information.
Audio:
- Update ALSA library and utilities to version v1.0.11.
- Added a lot of fixes for audio playback.
Video:
- Added support for different resolutions to be used through generator.
- Support for VESA with Intel i865, i910 and i915 chipsets.
Drivers:
- Added support for Serial ATA CDROM drives.
- Added support for ATAPI/IDE ZIP/LS120 drives.
- Added support for PcCard (32bits CardBus only, not 16bits PCMCIA).
- Added LCD displays support through LCD4Linux.
- Added support for most of the Gigabit NICs.
- Fix support of Nova DVB-S+ card.
- Updated LIRC to v0.8.0.
- Updated rt2400/rt2500 drivers to CVS 05.09.2006.
- Fix em8300 driver and firmware loading issues.
Networking:
- Updated djmount to version 0.53 (files are no more represented as playlist).
- Fixed bftpd FTP server write access error.
- Updated bftpd to version 1.4, and included fix for file transfers greater than 2GB.
- Update wireless tools to version 28.
Generator:
- Updated generator tools for MacOS X (support for MacIntel x86 OSX 10.4).
- Allow you to choose between multiple themes.
- Option for DVD Navigation menus to select it as a default or not.
- Option for autoplay to select it as a default or not.
- Option for SHOUTcast (radio and tv netstreams).
- Tab for video settings configuration (resolution, color depth and boot splash)
- Tab for support of LCD displays.
Miscellaneous:
- Fixed zoomed scrolling in FBI image viewer.
- Support for Microsoft Media Center Edition USB, StreamZap, Twinhan DTV, Toshiba
- VT76F and ATI Remote Wonder II remotes.
- Implemented full Digimatrix hardware support (apart from panel buttons).
- Allow multiple resolutions in themes.
- Support for VMware and QEMU (usefull for test purpose).
<<less
Download (8.3MB)
Added: 2006-08-19 License: GPL (GNU General Public License) Price:
1175 downloads
Not another MAC theme 0.1

Not another MAC theme 0.1


Not another MAC theme 0.1 provides you with a nice theme for GNOME users. more>>
Not another MAC theme 0.1 provides you with a nice theme for GNOME users. It is actually a mix of all the MAC OS X GTK themes.

GNOME is an international effort to build a complete desktop environment the graphical user interface which sits on top of a computer operating system entirely from free software. This goal covers creating software development frameworks, selecting application software for the desktop, and working on the programs which manage application launching, file handling, and window and task management.

Requirements:

  • GNOME
<<less
Added: 2008-11-17 License: GPL Price: FREE
1 downloads
ProStockMaster for Linux 1.5.5

ProStockMaster for Linux 1.5.5


ProStockMaster helps thousands photographers in keywording, preparing, uploading and selling their photos through the leading microstock sites: iStockPhoto,ShutterStock,DreamsTime,123rf,BigStockPhoto,CanStockPhoto,Fotolia,Stockxpert and Alamy more>>

ProStockMaster for Linux 1.5.5 is designed as a professional program that can allow to automate the tedious tasks of tagging, managing and uploading stock photos to online stock agencies, freeing you up to spend more time doing what you love shooting pictures.

In addition, ProStockMaster helps tens thousands of amateurs and professionals involved in stock photography in keywording, preparing, uploading and selling their images the leading stock photo agencies: iStockPhoto, ShutterStock, DreamsTime, 123rf, BigStockPhoto, CanStockPhoto, Fotolia, Stockxpert and Alamy

ProStockMaster is available on Windows (Vista, XP, 2000, Me, 2003, 98, 95), Mac Os X and Linux platforms.

Major Benefits:

  1. Upload all your images to all leading stock photography agencies just in one click! You can upload selected images or a complete image folder!
  2. Automate IPTC and Adobe XMP keywording (tagging)! Enter a word or a phrase in your native language and get tens of automatically generated English keywords relevant for your image. All this just in one button click!
  3. Get your stock statistics directly at your fingertips! All earnings summarized just in one window for every stock agency you work with
  4. View EXIF data inserted by your camera: aperture & shutter, program mode, ISO, focal length, flash mode, metering mode and much more
  5. Translate meta-data for all images in the selected folder to another language. All teh images will be copied to another folder and their meta-data will be translated on-the-fly
  6. Fast search in images on your computer for any keyword either in the image title, description or in the keywords fields
  7. Copy keywords, title and description (IPTC) from one image to another, making keywording of similar images extremely fast and easy. For instance, if youve shoot a sport event and then have selected 12 images for editing and upload, 95% of keywords in these images shall probably be the same. ProStockMaster allows you applying the selcted keywords set to multiple images and copyIPTC metadata between images
  8. Import and export keywords from external files, optionally with on-the-fly translation. You can keep your keywords in categories in your native language and then import, translate & insert them in your images
  9. Upload history / track records

Major Features:

  1. Simultaneous Upload of Stock Photos : Post stock images and entire folders to multiple agencies, in one click! Select from a list of top-selling microstock agencies. PSM also provides seamless registration on each site, if you are not yet a member contributor.
  2. Automated Keywording (IPTC) :Type a keyword or two and click the "Suggest!" button. Select from the list of popular and relevant keywords that PSM provides. PSM also provides auto-translation to dozens of languages, allowing your photos to be found easily by purchasers around the world.
  3. Stock Earnings Statistics :Review the purchase and download statistics for all your stock content, on each photo stock agency site.
  4. Metadata Simplicity : Search for stock images in your collection by the various metadata and keywords you have already collected per image. Export, Import and Copy metadata easily among multiple pictures. No more one-at-a-time editing!
  5. Photo Data :Review and use the EXIF data inserted into each of your pictures: aperture, shutter speed, program mode, ISO and more.

Requirements: At least 1GB RAM recommended

WareSeeker Editor
<<less
Download (12.02MB)
Added: 2009-03-31 License: Freeware Price: $0
206 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5