Main > Free Download Search >

Free macintosh binhex 2.0 file software for linux

macintosh binhex 2.0 file

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 1284
Slackintosh 12.0

Slackintosh 12.0


Slackintosh is a port of Slackware GNU/Linux to PPC (Macintosh). more>>
Slackintosh is a port of Slackware GNU/Linux to PPC (Macintosh).

Russell Kroll was the first person who ported Slackware to PPC (http://slackintosh.exploits.org), but the project stalled with an unfinished 9.1 ..

I (Adrian) started again from scratch porting 10.1 to PPC, and ive stolen the name Slackintosh...

Please note that this port was not done by Russell, dont send him Bugreports.

I used the the Sources + SlackBuild files from Slackware 10.1. ..but i had to make a few changes:

The new Binutils from 10.x didnt like GCC, i used the 9.1 Version to build everything. The Installer uses BusyBox 1.0 and Linux 2.4 is not included, only 2.6.11.5 (Runs better on PPC .. imho)

Its not finished: Not all packages are ported. Youll get gcc, X, Mozilla, XFCE, Gimp.. but no
monsters like KDE & Co.

The installer maybe somewhat funky.. Missing packages are still listed and the yaboot installation isnt tested very well...

..but you should be able to get it running. It won the WFM (WorksForMe) price. (Tested on a MiniMac & iBook2)

<<less
Download (3936MB)
Added: 2007-07-19 License: GPL (GNU General Public License) Price:
831 downloads
Early Macintosh Image LoadEr 0.11

Early Macintosh Image LoadEr 0.11


Early Macintosh Image LoadEr allows to boot linux-m68k from a floppy on a macintosh such as MacII or Quadra 610. more>>
Early Macintosh Image LoadEr allows to boot linux-m68k from a floppy on a macintosh such as MacII or Quadra 610.
With it, you can create rescue disk, or remove the MacOS partition (needed by the legacy penguin booter) from your HD.
Create a floppy from rescue disk image
You can find floppy image from the package emile-rescue
Under linux, the command to dump image to floppy is:
# dd if=emile-rescue-x.y.bin of=/dev/fd0 bs=512 conv=sync
then, you can eject floppy with:
# eject /dev/fd0
If you are using MacOS, use MakeDebianFloppy AppleScript (you must use a floppy image with a size of exactly 1474560 bytes).
Enhancements:
- This release has improved SCSI support, allows you to create a bootable CD-ROM, adds Debian packaging, updates the PowerPC part (currently not usable), and introduces apple_driver (currently not usable).
<<less
Download (0.17MB)
Added: 2007-03-29 License: GPL (GNU General Public License) Price:
943 downloads
JBinHex 0.5

JBinHex 0.5


JBinHex is both a library and a command-line tool, written in Java, to decode files in the Apple Macintosh BinHex 4.0 format. more>>
JBinHex is both a library and a command-line tool, written in Java, to decode files in the Apple Macintosh BinHex 4.0 format.

It accepts the following command line parameters:

Either -u < url > or -f < file > to specify the source BinHexed file. If neither of those options is present, DeBinHex reads stdin.
-d to decode the data fork. It will be put in the file with the name that came from the BinHex header.
-df < filename > to decode the data fork to the named file instead of the name that came from the BinHex header.
-r to decode the resource fork. It will be put in the file with the name that came from the BinHex header, with the extension ".resource" appended to it.
-rf < filename > to decode the resource fork to the named file instead of the name that came from the BinHex header.
Both -d/-df options and -r/-rf may be present at the same time. If none of these options is present, DeBinHex will decode the data fork as if the -d options was specified.
-h to only show the header of the BinHex file on stdout. The decoding options are ignored.
<<less
Download (0.035MB)
Added: 2006-08-22 License: GPL (GNU General Public License) Price:
1164 downloads
Convert::BinHex 1.119

Convert::BinHex 1.119


Convert::BinHex can extract data from Macintosh BinHex files. more>>
Convert::BinHex can extract data from Macintosh BinHex files.

ALPHA WARNING: this code is currently in its Alpha release. Things may change drastically until the interface is hammered out: if you have suggestions or objections, please speak up now!

SYNOPSIS

Simple functions:

use Convert::BinHex qw(binhex_crc macbinary_crc);

# Compute HQX7-style CRC for data, pumping in old CRC if desired:
$crc = binhex_crc($data, $crc);

# Compute the MacBinary-II-style CRC for the data:
$crc = macbinary_crc($data, $crc);

Hex to bin, low-level interface. Conversion is actually done via an object ("Convert::BinHex::Hex2Bin") which keeps internal conversion state:
# Create and use a "translator" object:
my $H2B = Convert::BinHex->hex2bin; # get a converter object
while (< STDIN >) {
print $STDOUT $H2B->next($_); # convert some more input
}
print $STDOUT $H2B->done; # no more input: finish up

Hex to bin, OO interface. The following operations must be done in the order shown!
# Read data in piecemeal:
$HQX = Convert::BinHex->open(FH=>*STDIN) || die "open: $!";
$HQX->read_header; # read header info
@data = $HQX->read_data; # read in all the data
@rsrc = $HQX->read_resource; # read in all the resource

Bin to hex, low-level interface. Conversion is actually done via an object ("Convert::BinHex::Bin2Hex") which keeps internal conversion state:
# Create and use a "translator" object:
my $B2H = Convert::BinHex->bin2hex; # get a converter object
while (< STDIN >) {
print $STDOUT $B2H->next($_); # convert some more input
}
print $STDOUT $B2H->done; # no more input: finish up

Bin to hex, file interface. Yes, you can convert to BinHex as well as from it!
# Create new, empty object:
my $HQX = Convert::BinHex->new;

# Set header attributes:
$HQX->filename("logo.gif");
$HQX->type("GIFA");
$HQX->creator("CNVS");

# Give it the data and resource forks (either can be absent):
$HQX->data(Path => "/path/to/data"); # here, data is on disk
$HQX->resource(Data => $resourcefork); # here, resource is in core

# Output as a BinHex stream, complete with leading comment:
$HQX->encode(*STDOUT);

PLANNED!!!! Bin to hex, "CAP" interface. Thanks to Ken Lunde for suggesting this.
# Create new, empty object from CAP tree:
my $HQX = Convert::BinHex->from_cap("/path/to/root/file");
$HQX->encode(*STDOUT);

BinHex is a format used by Macintosh for transporting Mac files safely through electronic mail, as short-lined, 7-bit, semi-compressed data streams. Ths module provides a means of converting those data streams back into into binary data.

<<less
Download (0.083MB)
Added: 2006-08-04 License: Perl Artistic License Price:
1234 downloads
RitmarkFS 0.2.0 (Remote File Tool)

RitmarkFS 0.2.0 (Remote File Tool)


RitmarkFS is an open source filesystem storage engine for MySQL server. more>>
RitmarkFS is an open source filesystem storage engine for MySQL server. Using this engine you can work with filesystem on the server using SQL queries. RitmarkFS allows you to access common file attributes such as name, extension, path, size. RitmarkFS is also possible to access raw file contents.

<<less
Download (0.24MB)
Added: 2006-10-19 License: GPL (GNU General Public License) Price:
1101 downloads
Mactel-Linux 20060326

Mactel-Linux 20060326


Mactel-Linux project is the effort to adapt the GNU/Linux operating system to Intel-based Apple Macintosh hardware. more>>
Mactel-Linux project is the effort to adapt the GNU/Linux operating system to Intel-based Apple Macintosh hardware.
This requires changes/additions to at least the following projects:
- the Linux kernel
- several drivers.
Enhancements:
- New LiveCD is up.
- Improoved Macbook Pro support.
- Partition mounting works now.
- Latest Ubuntu updates.
- Dualboot Intel Mac/PC.
<<less
Download (362.4MB)
Added: 2007-06-01 License: GPL (GNU General Public License) Price:
878 downloads
Spreadsheet::WriteExcel 2.18

Spreadsheet::WriteExcel 2.18


Spreadsheet::WriteExcel is a Perl module which can be used to create native Excel binary files. more>>
Spreadsheet::WriteExcel module is can be used to create native Excel binary files.

Formatted text and numbers can be written to multiple worksheets in a workbook. Formulas and functions are also supported. It is 100% Perl and doesnt require any Windows libraries or a copy of Excel.

It will also work on the majority of Unix and Macintosh platforms. Generated files are compatible with Excel 97, 2000, 2002, and 2003, and with OpenOffice and Gnumeric. An older version also supports Excel 5/95.

<<less
Download (0.46MB)
Added: 2007-01-25 License: Artistic License Price:
1024 downloads
BlueJ 2.2.0

BlueJ 2.2.0


BlueJ is an integrated Java environment specifically designed for introductory teaching. more>>
BlueJ project is an integrated Java environment (Java IDE) specifically designed for introductory teaching.
The BlueJ environment was developed as part of a university research project about teaching object-orientation to beginners. The system is being developed and maintained by a joint research group at Deakin University, Melbourne, Australia, and the University of Kent in Canterbury, UK. The project is supported by Sun Microsystems.
The aim of BlueJ is to provide an easy-to-use teaching environment for the Java language that facilitates the teaching of Java to first year students. Special emphasis has been placed on visualisation and interaction techniques to create a highly interactive environment that encourages experimentation and exploration.
BlueJ is based on the Blue system. Blue is an integrated teaching environment and language, developed at the University of Sydney and Monash University, Australia. BlueJ provides a Blue-like environment for the Java language.
The BlueJ project started at Monash University in Melbourne, and later split and migrated to its current locations.
BlueJ is implemented in Java, and regularly being tested on Solaris, Linux, Macintosh, and various Windows versions. It should run on all platforms supporting a recent Java virtual machine.
Main features:
- fully integrated environment
- graphical class structure display
- graphical and textual editing
- built-in editor, compiler, virtual machine, debugger, etc.
- easy-to-use interface, ideal for beginners
- interactive object creation
- interactive object calls
- interactive testing
- incremental application development
<<less
Download (3.1MB)
Added: 2007-07-06 License: Freely Distributable Price:
847 downloads
FontForge 20070501

FontForge 20070501


FontForge allows you to edit outline and bitmap fonts. more>>
FontForge is an outline font editor that lets you create your own postscript, truetype, opentype, cid-keyed, multi-master, cff, svg and bitmap (bdf) fonts, or edit existing ones.
Also lets you convert one format to another. FontForge has support for many macintosh font formats.
FontForges user interface has been localized for: (English), Russian, Japanese, French, Italian, Spanish.
With the appropriate libraries, FontForge can import png, tiff, and gif images to act as character backgrounds for tracing purposes (FontForge can import bmp and xbm formats without external libraries).
With libxml2 FontForge can read SVG fonts. With the freetype library FontForge will do a better job making bitmap characters for you.
None is required for the proper compilation/execution of FontForge, if the libraries are not present they will not be used.
Enhancements:
- Support has been added for version 2 of the Spline Font DB format.
<<less
Download (3.3MB)
Added: 2007-05-03 License: BSD License Price:
924 downloads
Bookmarks Scrollbar 1.0.5

Bookmarks Scrollbar 1.0.5


Bookmarks Scrollbar is an extension which adds a scrollbar to the bookmarks menu. more>>
Bookmarks Scrollbar is an extension which adds a scrollbar to the bookmarks menu.

A scrollbar is a graphical widget in a GUI with which continuous text, pictures or anything else can be scrolled including time in video applications, i.e., viewed even if it does not fit into the space in a computer display, window, or viewport.

Usually designed as a long rectangular area on one or two sides of the viewing area, containing a bar (or thumb) that can be dragged along a trough to move the body of the document as well as two arrows on either end for precise adjustments. The "thumb" has different names in different environments: on the Macintosh it is called a "thumb" on the Java platform it is called "thumb" or "knob"; Microsofts .NET documentation refers to it as "scroll box" or "scroll thumb"; in other environments it is called "elevator", "puck" or "wiper". Additional functions may be found, such as zooming in/out or various application-specific tools.

The thumb can also sometimes be adjusted by dragging its ends. In this case it would adjust both the position and the zooming of the document, where the size of the thumb represents the degree of zooming applied. A thumb that completely fills the trough, or "track" represents viewing the entire document, at which point the scrollbar may temporarily become hidden.

<<less
Download (0.001MB)
Added: 2007-04-11 License: MPL (Mozilla Public License) Price:
931 downloads
Buddi 2.6.0.0

Buddi 2.6.0.0


Buddi is a simple budgeting program targeted for users with little or no financial background. more>>
Buddi is a personal finance and budgeting program, aimed at those who have little or no financial background. In making this software, I have attempted to make things as simple as possible, while still retaining enough functions to satisfy most home users.

Buddi will run on almost any computer which has a Java virtual machine installed. This can include Windows, Macintosh OS X, Linux, and many other operating systems. One thing to note is that you must have Java 1.5 or later installed. If you are running on Macintosh OS X 10.4 (Tiger), and you do not already have it installed, you can get Java 1.5 from http://www.apple.com/support/downloads/java2se50release3.html. If you are running on a different operating system, like Windows, please consult the help files. If you need to download a copy of the Java VM, you can do so from http://java.sun.com/j2se/1.5.0/download.jsp.

Buddi is currently available in English, German, and Norwegian, and there are plans for Spanish, French and Russian translations in the near future. If you are interested in translating to another language, feel free to do so! I would greatly appreciate it if you also sent me the translated file once you are finished. For more details, please see the developers page at http://buddi.sourceforge.net/en/developers.php.

If you like Buddi and want to help support future work on it, please consider donating via PayPal - you can use the “Support this Project” icon on the bottom of the official Buddi homepage at http://buddi.sourceforge.net).

<<less
Download (6.4MB)
Added: 2007-08-15 License: GPL (GNU General Public License) Price:
1120 downloads
AmAvIs 0.3.13

AmAvIs 0.3.13


AMaViS-ng is a modular rewrite of amavisd and amavis-perl. more>>
AMaViS-ng is a modular rewrite of amavisd and amavis-perl. It scans email for malicious code inside attachments and archive files, stopping delivery if malicious code is found.

Most people will say: "A virus scanner? For UN*X? Why? Viruses do not work in a UNIX environment." On the first glance they are right (even if there are at least two viruses which run under Linux - well, actually they are Trojan Horses)

On the second view though, imagine a heterogene network environment where can exist UNIX and Windows systems.Now think of an UN*X server that serves Windows and/or Macintosh workstations via a POP3 service. Would it not be nice to ensure attachments coming via email are scanned for viruses before they reach a system they are able to infect? Well - that is what this package is for. It resides on the server that handles your incoming mails. When a mail arrives, instead of being delivered via procmail directly, is parsed through a script that extracts all attachments from the mail, unpacks (if needed) and scannes them using a professional virus scanner program.

<<less
Download (0.31MB)
Added: 2006-07-07 License: GPL (GNU General Public License) Price:
1206 downloads
Directory Synchronize 0.91

Directory Synchronize 0.91


Directory Synchronize is the small handy utility you always missed! more>>
Directory Synchronize is the small handy utility you always missed! Directory Synchronize is small, reliable, and fast. And best of all - it is Open Source; released under the GPL you are free to use and distribute it.
Directory Synchronize synchronizes the contents of one directory to another. That means you can use it to backup your data on a regular basis to another computer or another harddrive.
Or you can use Directory Synchronize to synchronize the data on your laptop with the data on your desktop.
Programmed in real platform independent Java you can use Directory Synchronize on nearly every computer platform including Windows, Linux and Macintosh.
Use the Directory Synchronize GUI for starting, pausing and stopping a synchronization.
Or use the GUI to easily create and store a configuration and use the command line to automatically start it every time you boot up your computer.
Enhancements:
- Some bugs have been solved.
- If a file can not be accessed, only a warning is issued instead of issuing a critical error and halting synchronization.
- If you select a directory instead of a file as a log for a directory definition, a line-separator was added instead of a file-separator.
- Some NullPointerExceptions in console mode have been fixed.
- The " " wildcard can be used for the path of the global log, and the " " wildcard can be used for the name of the current directory definition in the directory definition log filename.
<<less
Download (0.66MB)
Added: 2007-01-19 License: GPL (GNU General Public License) Price:
1014 downloads
SSHTerm 1.3.2 Professional

SSHTerm 1.3.2 Professional


SSHTerm is an integrated SSH terminal, SFTP client, and secure VNC viewer. more>>
SSHTerm is a fully-featured Java SSH terminal that provides a whole range of features including port forwarding, password and public-key authentication, full clipboard support, record and playback input/output, and the ability to load/save connection settings to a file.
The SSH terminal is now seamlessly integrated with a secure VNC viewer, a port forwarding manager, and a full SFTP client.
Main features:
- Supports SSH1, SSH2, VNC, Telnet, SFTP, Secure VNC and Socket connections
- Supports SSL-Explorer VPN proxying
- SSH supports password, public-key and keyboard-interactive authentication
- Identity manager allows creation of keys and reduces password entry
- Configure remote systems for access with your public-keys automatically
- Faster data transfer rates than competing applications
- Platform independent - supports Windows, Macintosh, Linux, Solaris
- Intuitive interface for maximum user friendliness
- Terminal supports VT100, VT220, VT320 and ANSI Emulations
- Multiple sessions can appear as seperate tabs in the interface
- VNC supports Hextile, ZLib, Raw encodings
- Fully configurable terminal with various color/cursor settings
- Spawn new windows or clone existing sessions to new windows
- Resizable fonts can scale proportionally with screen size
- Data compression supported
- Supported ciphers are 3DES-CBC and Blowfish-CBC
- Store connections & settings to file
<<less
Download (3.1MB)
Added: 2005-04-03 License: GPL (GNU General Public License) Price:
1674 downloads
BeatriX Linux 2005.1

BeatriX Linux 2005.1


BeatrIX 2005.1 Linux is a free, compact (Less than 200 megabytes), operating system. more>>
BeatrIX 2005.1 Linux is a free, compact (Less than 200 megabytes), operating system aimed at both office and home users who want something simpler, safer and superior to Microsoft Windows, and that will run on just about any IBM-compatible PC made in the past 10 years.

It runs as a live CD or it can be installed to hard drive. As a live CD, it does not touch your hard drive or touch any other operating system you have.

SImply insert the CD, re-boot, and about two minutes later, youre surfing the Internet, writing letters, sending e-mail and instant-chatting. All this from a CD the size of a beer coaster.

BeatrIX is designed differently than any other system. Yes, its Linux, but it doesnt look like Linux. Or Windows. Or Macintosh. It simply looks like a computer desktop. That desktop has only four icons -- all easily recoginsable by anyone whos used a Windows, Mac or Linux computer in the last decade.

So, anyone can use it with little or no help. It took us a year to release our first version because so much time was devoted to usability and stability.
<<less
Download (186.8MB)
Added: 2005-04-05 License: GPL (GNU General Public License) Price:
1671 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5