Main > Free Download Search >

Free pearpc 0.4 cdrom software for linux

pearpc 0.4 cdrom

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 1023
PearPC 0.4

PearPC 0.4


PearPC is an architecture-independent PowerPC platform emulator capable of running most PowerPC operating systems. more>>
PearPC is an architecture-independent PowerPC platform emulator capable of running most PowerPC operating systems.

This release fixes an ugly partition mapping bug which prevented PearPC to boot OpenDarwin. But the fix might cause regressions: so if your image is no longer booting and you can compile pearpc yourself, please talk to the pearpc-devel mailing list.

Installation:

-Get the Mandrake Installations CDs from a near mirror.
-Read the getting started document first.
-Join the club.
-Make sure you have configured with a big harddisk (3 GiB should do) and a CDROM with the Mandrake 9.1 PPC CD1 inserted. Select a 15 bit video mode. (ppc_start_resolution to 1, 4 or 7)
-Boot and you should get the yaboot menu.
-Press enter and wait.
-At some point, a graphical installer will show up.
-I wont partition your disk for you so you have to do it on your own
create 2 partitions: Apple bootstrap and a Linux onecontinue install.
It will ask you to insert another CD. Click "Change CD" and choose a different .iso or simply insert a different CD. Continue.
-Something bad may happen in the end of the install. Nevermind.

While the CPU emulation may be slow (1/500th or 1/15th, see above), the speed of emulated hardware is hardly impacted by the emulation; the emulated hard-drive and CDROM e.g. are very fast, especially with OS that support bus-mastering (Linux, Darwin, Mac OS X do).

Because the author has only access to a little-endian machine, PearPC will most likely only run on little-endian architectures. This shouldnt be hard to fix and the author would fix this himself if he such hardware. (You can donate some big-endian hardware to get this fixed!)

Equally, PearPC will probably only run on 32-bit architectures. This shouldnt be hard to fix either. (You can donate...)
A lot of unimplementated features are fatal (i.e. will abort PearPC).
Timings are very still a little bit inaccurate. Dont rely on benchmarks made in the client.

PearPC lacks a save/restore machine-state feature.
No Altivec support yet but being worked on.
No LBA48 (but LBA). Currently no support for hard disks greater than 128 GiB. Disks > 4GiB are not tested very well.

<<less
Download (0.88MB)
Added: 2005-12-21 License: GPL (GNU General Public License) Price:
920 downloads
Eject Cdrom 1.1

Eject Cdrom 1.1


Eject Cdrom, forcefully ejects your cdrom/cdwriter device. more>>
Eject Cdrom, forcefully ejects your cdrom/cdwriter device.

It is especially useful when you are in a hurry, and dont know which application is using the cdrom device. Instead of pressing the Reset Button use Eject Cdrom

Eject Cdrom, will try the "normal" eject first, if it fails then it will forcefully eject the cdrom.

Make sure that you have your cdrom device linked to /dev/cdrom, check with:

ls -l /dev/cdrom

if you get
/dev/cdrom -> /dev/hdd (or something) then it is ok

else create a symbolic link:
ln -sf /dev/hdd /dev/cdrom (or)
ln -sf /dev/hdc /dev/cdrom

Installation:

just save the eject.desktop file on your desktop or add to your menu. just click it to eject your cdrom (normally else forcefully)!

<<less
Download (MB)
Added: 2005-09-25 License: GPL (GNU General Public License) Price:
1494 downloads
OraRep 0.4.2

OraRep 0.4.2


OraRep is a PL/SQL snippet. more>>
OraRep is a PL/SQL snippet (embedded in a shell script) which creates a well-formatted HTML report on a given database instance, providing you with an overview on your instance(s), some hints for performance tuning, and more.
It has been tested with Oracle 8.1.7, 9.0.1, and 9.2. The script easily fits into a cron task to be run on a regular basis. Sample output (HTML) is included.
OSPRep does the same job for Oracle StatsPack Reports based on SnapShot Levels up to 7, and provides additional "plugins" for more detailed reporting on special issues.
The project also optionally creates a separate page with charts to visualize the results and more.
Enhancements:
- This release has working Oracle 10g support.
<<less
Download (0.17MB)
Added: 2007-07-10 License: GPL (GNU General Public License) Price:
837 downloads
sqlmap 0.4

sqlmap 0.4


sqlmap is an automatic blind SQL injection tool. more>>
sqlmap is an automatic blind SQL injection tool, developed in python, capable to enumerate entire remote database, perform an active database fingerprint and much more.
sqlmaps aim is to implement a fully functional database mapper tool which takes advantages of web application programming security flaws which lead to SQL injection vulnerabilities.
Main features:
- Test of the remote url stability, based on page hash or string match;
- Identification of url dynamic parameters;
- Test numeric, string (single quote and double quotes) SQL injection on all url dynamic parameters and at first vulnerable it will be used to perform the future SQL injections;
- Possible selection of HTTP method for testing and exploiting dynamic parameters, GET or POST (default: GET);
- Fingerprint of web application database back-end based upon specific queries output which identify database characteristics and banner grabbing;
- Random HTTP User-Agent header selection;
- HTTP Cookie header provided, useful when web application requires authorization based on cookies and you an account;
- Provide an anonymous HTTP proxy address to pass by request to the target url;
- Other command line parameters to get database banner, enumerate databases, tables, columns, dump values, retrieve an arbitrary file content and provide own SQL expression to query remote database;
- Debug output messages in verbose mode execution;
- PHP setting magic_quotes_gpc evasion by encoding every query string, between single quotes, with CHAR (or similar) database function.
Enhancements:
- Added DBMS fingerprint based also upon HTML error messages parsing
defined in lib/parser.py which reads an XML file defining default
error messages for each supported DBMS;
- Added Microsoft SQL Server extensive DBMS fingerprint checks based
upon accurate @@version parsing matching on an XML file to get also
the exact patching level of the DBMS;
- Added support for query ETA (Estimated Time of Arrival) real time
calculation (--eta);
- Added support to extract database management system users password
hash on MySQL and PostgreSQL (--passwords);
- Added docstrings to all functions, classes and methods, consequently
released the sqlmap development documentation
;
- Implemented Google dorking feature (-g) to take advantage of Google
results affected by SQL injection to perform other command line
argument on their DBMS;
- Improved logging functionality: passed from banal print to Python
native logging library;
- Added support for more than one parameter in -p command line
option;
- Added support for HTTP Basic and Digest authentication methods
(--basic-auth and --digest-auth);
- Added the command line option --remote-dbms to manually specify
the remote DBMS;
- Major improvements in union.UnionCheck() and union.UnionUse()
functions to make it possible to exploit inband SQL injection also
with database comment characters (-- and #) in UNION SELECT
statements;
- Added the possibility to save the output into a file while performing
the queries (-o OUTPUTFILE) so it is possible to stop and resume the
same query output retrieving in a second time (--resume);
- Added support to specify the database table column to enumerate
(-C COL);
- Added inband SQL injection (UNION SELECT) support (--union-use);
- Extensive code refactoring, a lot of minor and some major fixes in
libraries;
- Reviewed the directory tree structure;
- Splitted lib/common.py: inband injection functionalities now are
moved to lib/union.py;
- Updated documentation files.
<<less
Download (0.057MB)
Added: 2007-06-15 License: GPL (GNU General Public License) Price:
867 downloads
cdspeed 0.4

cdspeed 0.4


cdspeed is an application that can decrease the speed of you cdrom. more>>
cdspeed is an application that can decrease the speed of you cdrom. Modern cdrom drives are too fast. It can take several seconds on a 60x speed cdrom drive to spin it up and read data from the drive. The result is that these drives are just a lot slower than a 8x or 24x drive. This is especially true if you are only occasionally (e.g every 5 seconds) reading a small file. This utility limits the speed, makes the drive less noisy and the access time faster. cdspeed is also very good if you prefer to listen to the musik on your mp3 CDs rather then the noise of your CD drive.
Note: recent versions of the eject command include the functionallity of cdspeed (via the -x option).
Installation instructions:
to compile type:
make
to install cdspeed to /usr/bin type:
make install
You can copy the script cdmount to /usr/bin,it will first reduce the speed and then mount the cd. See the explanations inside the cdmount script for further details.
Enhancements:
- 2004-03-31 Roberto Foglietta added the init script for Mandrake distributions
<<less
Download (0.003MB)
Added: 2006-07-20 License: GPL (GNU General Public License) Price:
1191 downloads
cdenc 0.9.4

cdenc 0.9.4


cdenc lets you encode whole audio CDs in a special directory which can be burned on CDROM afterwards. more>>
cdenc lets you encode whole audio CDs in a special directory which can be burned on CDROM afterwards.
For other mp3 players like WinAmp the mp3 info tags are set correctly, so that you also get there the full title infos. Additionally you could generate long filenames, so that you could play the music via a shell or explorer environment. Last not least, cdenc generates html files to let you browse through with a normal html browser (but then you cant play more titles on one time).
Furthermore cdenc generates by using Gimp and mpeg2encode bitmaps for the osd of Yamakawa/Raite DVD/MP3 player. cdenc doesnt have a graphical user interfaces. As a clean commandline script, it is designed also to run on machines without X11 (number cruncher) and can work backgrounded. Once correct configured, the work with cdenc reduce to the insertion of an audio CD and the subsequent call of "cdenc -medname mp3cd001", which makes cdenc test if the CD ist not already on another media and if not starts the complete grabbing, compression and index generation.
Unfortunaly cda(xmcd) and gimp have changed a lot so that cdenc wont run with the actual versions. I will change the code to use libaudiocd, but that will take some time. Sorry for that.
Enhancements:
- replaced routine "double" through sprintf (thx to Travis Whitton)
- made cdenc ready to work with Gimp 1.1.18
<<less
Download (0.013MB)
Added: 2006-07-26 License: GPL (GNU General Public License) Price:
1186 downloads
mysqlWisp 0.4 RC5

mysqlWisp 0.4 RC5


mysqlWisp is a project which provides a standalone or mysqlISP-controlled subsystem. more>>
mysqlWisp is a project which provides a standalone or mysqlISP-controlled subsystem.
mysqlWisp provides a standalone or mysqlISP-controlled subsystem for managing one or hundreds of hotspots with access controlled by iptables, MAC addresses, IP addresses, and passwords.
Access points are connected to a second NIC, and all traffic is initially redirected to a login page.
mysqlWisp provides a mysqlISP family standalone or mysqlISP controlled subsystem for managing 1 or 100s of hotspots with full iptables/MAC+IP+Login+Passwd controlled access.
Easy on the end-user -and the hotspot staff- wide open WAPs are supported. The WAP -or LAN of WAPs- is connected to a 2nd NIC (like eth1 for example, or via a WAP capable card for low cost and very flexible linux WAP/Gateway box.) The model used is the captive portal: "redirect all traffic to hotspot login page -unless logged in" on the WAP/Gateway controlled by a local instance of mysqlWisp.
The gateway linux server running mysqlWisp usually will also provide dhcpd, named, and two instances of apache2: One for the webmin and the other the login page. After hotspot user logs in, she then is allowed through the WAP/Gateway, via advanced iptables SNAT, DNAT and REDIRECT rules managed by mysqlWisp.
Started adding accounting and QoS control along with mysqlCart provided online credit card processing support.
Enhancements:
- Adding mysqlISP external job queue handling.
- Adding more WISP AAA/NOC support based on Chicago installation.
- Use tUser.cProfile for cMAC and cIP if exists (fixed users.)
- Add cProfile dictionary to tConfiguration to check new user addition.
<<less
Download (0.11MB)
Added: 2007-02-22 License: GPL (GNU General Public License) Price:
974 downloads
jac 0.15

jac 0.15


jac is a Cd-Player which runs under Linux (but I hope to port it to other Unix-like platform). more>>
jac is a Cd-Player which runs under Linux (but I hope to port it to other Unix-like platform). Its birth is due to my need of a command line cd player, and now it offers many features (including the "exclusive" crazy-playing mode) and also a small text-console from which you can set any option, play the cd in the way you want etc.
jac has support for many languages but at this time only Italian and English languages are available for use (Im looking for someone who want to write some translations). jac can also download Cd and track information from CDDB and from CdIndex A FAQ PAGE is available (but is obsolete).
Enhancements:
- Readline and history support in console
- Short and long option support
- Configuration file update for CD default option
- Cdrom and mixer device can be set from command line overriding configuration file
- Error description for CDDB and CDIndex
- MAN page
- Command implementation in console
- Bug fixing
<<less
Download (0.060MB)
Added: 2006-07-27 License: GPL (GNU General Public License) Price:
1218 downloads
Mounttero 0.4

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
<<less
Download (0.008MB)
Added: 2005-04-08 License: GPL (GNU General Public License) Price:
1659 downloads
Soothsayer 0.4

Soothsayer 0.4


Soothsayer is an intelligent predictive text entry platform. more>>
Soothsayer is an intelligent predictive text entry platform. Soothsayer exploits redundant information embedded in natural languages to generate predictions. Soothsayers modular and pluggable architecture allows its language model to be extended and customized to utilize statistical, syntactic, and semantic information sources.
A predictive text entry system attempts to improve ease and speed of textual input. Word prediction consists in computing which word tokens or word completions are most likely to be entered next. The system analyses the text already entered and combines the information thus extracted with other information sources to calculate a set of most probable tokens.
The set of most probable tokens, a list of suggestions, is displayed to the user. If the token the user intended to enter is in the list, the user selects it and it is automatically entered by the system. If the list of suggestions does not contain the desired word, the user continues entering text until the correct suggestion is offered or until the user is done entering text.
Soothsayer is fundamentally different from predictive input technologies commonly found on mobile phones, which might more accurately be described as disambiguating text entry rather than predictive text entry systems.
Such systems do not try to guess what the user intends to write in the future, only to determine what they most-likely intend to write in the present, given their past input.
Soothsayer, on the other hand, actively predicts the what the user intends to write, and only reverts to word completion mode if the prediction did not contain the desired token.
Soothsayer is free software and its distributed under the term of the General Public License.
Enhancements:
- This release includes the new abbreviation expansion predictive plugin, which allows users to specify a file containing a list of abbreviations/expansions pairs.
- It also includes bugfixes and documentation improvements.
<<less
Download (1.3MB)
Added: 2007-07-29 License: GPL (GNU General Public License) Price:
515 downloads
FIRE 0.4a

FIRE 0.4a


FIRE is a portable bootable cdrom based distribution with the goal of providing an environment to perform forensic analysis. more>>
FIRE is a portable bootable cdrom based distribution with the goal of providing an immediate environment to perform forensic analysis, incident response, data recovery, virus scanning and vulnerability assessment.
Also provides necessary tools for live forensics/analysis on win32, sparc solaris and x86 linux hosts just by mounting the cdrom and using trusted static binaries available in /statbins.
Main features:
Forensics workstation/Data Recovery
- Instantly deploy a forensics workstation with tct, tctutils, mac-robber, and autopsy also provides perl 5.6.1 compiled with Large File Support.
Live System Incident Response
- Binaries are available for Incident Response on a live machine.
Virus Scanning
- Utilizing F-Prot 3.11beta http://www.f-prot.com you can scan for virii, worms, trojans, and all around harmful code.
- Just mount the filesystems that you want to scan and execute f-prot .
- Any filesystem you can mount, you can scan. mount and scan fat/ntfs/ext2/ext3/reiserfs partitions
- Scan your windows machines offline for virii that may not be detected with an "after the fact" anti-virus
- software installation.
Pen-Testing Platform
- I should NOT have to explain this portion: If the tools you would like to use are not in the distribution please make a request!
<<less
Download (578MB)
Added: 2005-05-18 License: GPL (GNU General Public License) Price:
1635 downloads
Auto-eject-cdrom 0.2

Auto-eject-cdrom 0.2


Auto-eject-cdrom is a very small C application that handles CD-ROM events in Linux. more>>
Auto-eject-cdrom is a very small C application that handles CD-ROM events in Linux. If new media is inserted in a CD-ROM drive, it is automatically mounted based on a matching entry in /etc/fstab.

If a CD-ROM is mounted and the eject button is pressed, the filesystem is umounted and ejected.

This allows for the same basic functionality Windows allows with the CD-ROM eject button.
<<less
Download (0.002MB)
Added: 2005-06-28 License: Freeware Price:
1580 downloads
hamsterdb 0.4.5

hamsterdb 0.4.5


hamsterdb is a database engine written in ANSI C. more>>
hamsterdb is a database engine written in ANSI C. hamsterdb supports a B+Tree index structure, uses memory mapped I/O (if available), and can create in-memory databases.
Main features:
- B+Tree index with variable length keys
- Configurable page size and cache size
- ANSI-C implementation, should be portable on all platforms, also embedded
- Uses memory mapped I/O for fast disk access (but falls back to read/write if mmap is not available)
- Uses 64bit file pointers
- Endian-independent (not tested, though)
- Support for in-memory-databases
Enhancements:
- This release implements "record number" databases; these databases behave like "auto-increment" tables in SQL.
- The keys of new records are automatically assigned and incremented with each insert.
- Also, a few minor bugs were fixed, and some optimizations took place; the generated database files are much smaller now.
<<less
Download (0.46MB)
Added: 2007-08-10 License: GPL (GNU General Public License) Price:
808 downloads
Abox 0.2.4

Abox 0.2.4


Abox project is a small Linux system for tight spots. more>>
Abox project is a small Linux system for tight spots.

The target space is from 8MB and up, to be run from a flash drive, a USB-Flash dongle, a CDROM or an old computer(or whatever).

The system will be composed of a Linux kernel, busybox, and miscellaneous Debian stable binaries. The key concept here is that it is based primarily on pre-compiled binaries from an existing distribution. Debian stable is my choice for a base. It is small, a stripped down system. Its intended to be small. Not quite as small as a boot floppy, and not as big as 100s of megabytes.

I expect to gain a number of benefits from working with pre-built binaries from an existing distribution. Stability of the system, well know source collection, no hassles with trying to recompile the world, etc. Also, extensibility of the system is an important goal. By working from existing binaries from standard packages, it should be easy to add new components or change as the need arises.

My goal is to create some tools to help with building and organizing this small linux distro. I want to offer easy instructions on how to recreate, modify, or extend it. Its target will be embedded or limited space devices as a stripped down Debian/Busybox system.
<<less
Download (7.5MB)
Added: 2007-06-14 License: GPL (GNU General Public License) Price:
862 downloads
WmCdrom 0.4

WmCdrom 0.4


WmCdrom lets you mount, unmount and eject media from your mount, unmount and eject . more>>
WmCdrom is a dock application for WindowMaker. When launched WmCdrom creates a 48 x 48 pixel showing an icon (centered in a 64 x 64 pixel tile). To dock WmCdrom, left-click on the border of the tile and drag the tile to the dock area.
By clicking the icon you can mount,unmount,eject and launch a filemanager.
- The first left-click will mount the media.
- The second left-click will launch a filemanager on the mount point.
- The first right-click will unmount the media.
- The second right-click will eject the media (when supported).
Installation:
- Unpack the archive: tar xjf wmcdrom-0.x.tar.bz2
- Verify the PREFIX setting in the Makefile. wmcdrom will install to /usr/X11R6/bin
- Type make
- As root, type make install
- Launch wmcdrom and then drag the icon to the dock
You can test wmcdrom before install it by lunching (from source directory):
./wmcdrom -i cd /dev/hdc
(supposing your cdrom device is /dev/hdc)
WARNING: use the same device of your fstab ("less /etc/fstab" to verify)
<<less
Download (0.038MB)
Added: 2005-10-06 License: GPL (GNU General Public License) Price:
1478 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5