Main > Free Download Search >

Free x86 software for linux

x86

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 318
Perl x86 Disassembler 0.16

Perl x86 Disassembler 0.16


Perl x86 Disassembler is an Intel x86 disassembler written in Perl. more>>
The libdisasm library provides basic disassembly of Intel x86 instructions from a binary stream. The intent is to provide an easy to use disassembler which can be called from any application; the disassembly can be produced in AT&T syntax and Intel syntax, as well as in an intermediate format which includes detailed instruction and operand type information.

This disassembler is derived from libi386.so in the bastard project; as such it is x86 specific and will not be expanded to include other CPU architectures. Releases for libdisasm are generated automatically alongside releases of the bastard; it is not a standalone project, though it is a standalone library.

The recent spate of objdump output analyzers has proven that many of the people [not necessarily programmers] interested in writing disassemblers have little knowledge of, or interest in, C programming; as a result, these "disassemblers" have been written in Perl.

Usage

The basic usage of the library is:

1. initialize the library, using disassemble_init()
2. disassemble stuff, using disassemble_address()
3. un-initialize the library, using disassemble_cleanup

These routines have the following prototypes:

int disassemble_init(int options, int format);
int disassemble_cleanup(void);
int disassemble_address(char *buf, int buf_len, struct instr *i);

Instructions are disassembled to an intermediate format:

struct instr {
char mnemonic[16];
char dest[32];
char src[32];
char aux[32];
int mnemType; /* type of instruction */
int destType; /* type of dest operand */
int srcType; /* type of source operand */
int auxType; /* type of 3rd operand */
int size; /* size of insn in bytes */
};

The sprint_address() can be used in place of the disassemble_address() routine in order to generate a string representation instead of an intermediate one:

int sprint_address(char *str, int len, char *buf, int buf_len);

...so that a simple disassembler can be implemented in C with the following code:

#include

char buf[BUF_SIZE]; /* buffer of bytes to disassemble */
char line[LINE_SIZE]; /* buffer of line to print */
int pos = 0; /* current position in buffer */
int size; /* size of instruction */

disassemble_init(0, INTEL_SYNTAX);

while ( pos > BUF_SIZE ) {
/* disassemble address to buffer */
size = sprint_address(buf + pos, BUF_SIZE - pos, line, LINE_SIZE);
if (size) {
/* print instruction */
printf("%08X: %sn", pos, line);
pos += size;
} else {
printf("%08X: Invalid instructionn");
pos++;
}
}

disassemble_cleanup();

Alternatively, one can print the address manually using the intermediate format:

#include

char buf[BUF_SIZE]; /* buffer of bytes to disassemble */
int pos = 0; /* current position in buffer */
int size; /* size of instruction */
struct instr i; /* representation of the code instruction */

disassemble_init(0, INTEL_SYNTAX);

while ( pos > BUF_SIZE ) {
disassemble_address(buf + pos, BUF_SIZE - pos, &i);
if (size) {
/* print address and mnemonic */
printf("%08X: %s", pos, i.mnemonic);
/* print operands */
if ( i.destType ) {
printf("t%s", i.dest);
if ( i.srcType ) {
printf(", %s", i.src);
if ( i.auxType ) {
printf(", %s", i.aux);
}
}
}
printf("n");
pos += size;
} else {
/* invalid/unrecognized instruction */
pos++;
}
}

disassemble_cleanup();

This is the recommended usage of libdisasm: the instruction type and operand type fields allow analyzing of the disassembled instruction, and can provide cues for xref generation, syntax hi-lighting, and control flow tracking.
<<less
Download (0.038MB)
Added: 2005-03-07 License: Artistic License Price:
1701 downloads
Blender for Linux x86-32 2.48

Blender for Linux x86-32 2.48


3D creation software for Linux x86-32 - Python 2.5 more>> Aimed world-wide at media professionals and artists, Blender can be used to create 3D visualizations, stills as well as broadcast and cinema quality video, while the incorporation of a real-time 3D engine allows for the creation of 3D interactive content for stand-alone playback.
Originally developed by the company Not a Number (NaN), Blender now is continued as Free Software, with the source code available under the GNU GPL license. It now continues development by the Blender Foundation in the Netherlands.
Key Features:
For Linux x86-32/ Python 2.5
Fully integrated creation suite, offering a broad range of essential tools for the creation of 3D content, including modeling, uv-mapping, texturing, rigging, weighting, animation, particle and other simulation, scripting, rendering, compositing, post-production, and game creation;
Cross platform, with OpenGL uniform GUI on all platforms, ready to use for all versions of Windows (98, NT, 2000, XP), Linux, OS X, FreeBSD, Irix, Sun and numerous other operating systems;
High quality 3D architecture enabling fast and efficient creation work-flow;
<<less
Download (14.58MB)
Added: 2009-04-01 License: Freeware Price:
213 downloads
 
Other version of Blender for Linux x86-32
Blender for Linux x86-32 2.44Andrew Eland - 3D creation software for Linux x86-32 - Python 2.5. Blender for Linux x86-32. Aimed world-wide
License:Freeware
Download (9.65MB)
198 downloads
Added: 2009-04-08
Blender for Linux x86-64 2.48

Blender for Linux x86-64 2.48


A 3D software Offer Sculpt,Scatter,Gamma tools for Linux x86-64/Python 2.4 more>> By For Linux x86-64 Python 2.5,new modifers were added, a couple of composite nodes were added, and a revamp of the old mesh primitives was done.
Features?
FFMPEG is now included in the Windows builds
Sculpt and MultiRes bug fixes and improvements
Subsurface Scattering is a new material option
There have been a large number of python script additions and updates, as well as API improvements
Two new Composite nodes have been added: Gamma and Bright/Contrast
Two new Modifiers: Smooth and Cast
The Action and NLA editors have now better control over visible channels. A new constraint was added, and a "preview range" option was added.
Blender now is 64-bits safe again. That safety is on two different levels.
The Bullet physics engine has had some changes which should give better reproducibility and precision/quality for physics simulations.
The mesh primitives have been revisited, improving their usability and pushing them a little beyond their previous state. This includes the addition of a new Torus primitive!
<<less
Download (13.9MB)
Added: 2009-04-29 License: Freeware Price:
222 downloads
 
Other version of Blender for Linux x86-64
Blender for Linux x86-64 2.44Andrew Eland - a 3D software Offer Sculpt,Scatter,Gamma tools for Linux x86-64/Python 2.4. Blender for
License:Freeware
Download (11.2MB)
191 downloads
Added: 2009-04-15
BottomFeeder for Solaris x86 4.4

BottomFeeder for Solaris x86 4.4


BottomFeeder is a news aggregator client written in VisualWorks Smalltalk more>> BottomFeeder is a news aggregator client (RSS and Atom) written in VisualWorks Smalltalk. BottomFeeder runs on Linux x86, (also FreeBSD), PowerPC Linux, Sparc Linux, Windows (98/ME/NT/2000/XP/CE 4), Mac OS8/9, Mac OS X (PPC, intel), AIX, SGI Irix, HP-UX, and Solaris (SPARC and x86).
What sets BottomFeeder apart?
Full support for CSS, including user defined CSS
View news in 3 pane or 2 pane modes
Subscribe to any RSS or Atom format in use
View items in a summary Newspaper View
Synchronize 2 or more BottomFeeders via HTTP or file import
Subscribe to feeds or feedlists
Supports HTTPS, HTTP Authentication, and HTTP Digest Authentication
Plugins for blogging, IRC, and MSN Messenger contacts
Easy to update or upgrade from within BottomFeeder
Save as many or as few feed items for as long as you want
Import or Export in common OPML format
Binary compatible on every platform. No need to recompile
<<less
Download (16.3MB)
Added: 2009-04-29 License: Freeware Price: Free
183 downloads
Domino for Kubuntu x86 (Dapper) 0.4

Domino for Kubuntu x86 (Dapper) 0.4


Domino for Kubuntu x86 (Dapper) is a Domino package for Kubuntu Dapper x86. more>>
Domino for Kubuntu x86 (Dapper) is a Domino package for Kubuntu Dapper x86.

Details:

- Built against KDE 3.5.5
- Separated widget style from window decoration
- NOT made using checkinstall; package is built using standard Debian packaging tools

Notes:

- This build of Domino requires KDE 3.5.5

<<less
Download (MB)
Added: 2007-04-13 License: GPL (GNU General Public License) Price:
932 downloads
AuCDtect for Linux X86 0.8 Release 3

AuCDtect for Linux X86 0.8 Release 3


A free console program for determining the authenticity of musical CDs. more>> AuCDtect - is a free console program for determining the authenticity of musical CDs. By evaluating the character of audio data a CD contains, Tau Analyzer can distinguish between original studio-based recordings and those that have been "reconstructed" using a lossy audio source, such as MP3. Console app.<<less
Download (28KB)
Added: 2009-04-03 License: Freeware Price: Free
206 downloads
Komodo Edit (Linux/x86 libstdc++6) 5.1.1

Komodo Edit (Linux/x86 libstdc++6) 5.1.1


Komodo Edit is a free, open source, multi-platform, multi-language editor for dynamic languages and Ajax technology. Background syntax checking and syntax coloring catch errors immediately, while autocomplete and calltips guide you as you write. more>>

Komodo Edit (Linux/x86 libstdc++6) 5.1.1 offers an effective tool which functions as a free, open source, multi-platform, multi-language editor for dynamic languages and Ajax technology, including Perl, PHP, Python, Ruby and Tcl; plus support for browser-side code including JavaScript, CSS, HTML and XML.
Background syntax checking and syntax coloring catch errors immediately, while autocomplete and calltips guide you as you write. Available on Windows, Mac OS X and Linux. XPI extensions allow you to create your own plug-ins. XPI extension support provides the same capability as Firefox.

Major Features:

  1. Multi-language editor
    • Multi-language support: Advanced support for:
      • Browser-side languages: CSS, HTML, JavaScript and XML
      • Server-side languages: Perl, PHP, Python, Ruby and Tcl
    • Web template languages: RHTML, Template-Toolkit, HTML-Smarty and Django
    • Autocomplete
      • Call Tips
      • Autocomplete and calltips
      • Write code faster and shorten the learning curve with code completion that guides you as you work
      • CSS, HTML, JavaScript, Perl, PHP, Python, Ruby, Tcl, XML and XSLT.
      • Schema-based XML/HTML completion
      • Multiple-language file support, such as CSS and JavaScript completion in HTML
      • Support for adding third-party libraries
      • Interpreter version differentiation of built-in and standard library information
    • Multi-language file support
      • Correct syntax coloring of multi-language files and templated files, common in many web programming frameworks. Add custom language support (User-Defined Languages or UDL, used to provide support for RHTML, Template-Toolkit, HTML-Mason, Smarty and Django).
    • Standard editing features
      • Code commenting, auto-indent and outdent, block selection, incremental search, reflow paragraph, join lines, enter next character as raw literal, repeat next keystroke and clean line endings on "save".
    • Syntax checking
      • Instant feedback for all fully-supported languages.
    • Syntax coloring
      • Spot errors easily and improve readability and context, even in multi-language files (unique to Komodo!).
    • Vi emulation
      • Modal Vi keybindings emulate navigation, text insertion and command behavior. Custom commands can be implemented by adding Komodo macros to a Vi Commands Toolbox folder.
    • Emacs keybindings
      • Emacs-like keybinding scheme supports new editor features modeled on Emacs, such as transient marks (similar to the Emacs "mark ring"), repeat next command and reflow paragraph.
    • HTML preview
      • Check HTML, XML and CSS files side-by-side or in a browser, using arbitrary files or URLs.
    • Multilingual Input Method Editor (IME) support
      • Use your standard keyboard to enter multi-byte characters, such as Simplified Chinese, Japanese and Korean.
    • Code snippets
      • Store any piece of code for reuse.
    • Code folding
      • Work quickly and efficiently with large sections of code.
    • Multi-document editing
      • Easily work on multiple documents simultaneously using multiple tab groups, split view, and cross-document search.
    • Tutorials
      • Easily master editing features.
  2. Project manager: Convenient, flexible organization of all project elements.
    • Live Folders
      • Project view displays the current contents of corresponding file system directory.
    • Virtual Folders
      • Explicitly maintained multi-purpose containers for any project or Toolbox component, containing pointers to selected components from different file system locations.
  3. Toolbox
    • Store it
      • Store virtually anything, including configurable "Run" commands, macros, code snippets, URLs, Live and Virtual Folders, templates, menus, toolbars and remote files.
    • Share it
      • Share a Toolbox with networked team members or distribute valuable Toolbox items to other Komodo users with the import/export function.
  4. Extensibility: XPI Extensions
    • Create your own plug-ins. XPI extension support provides the same capability as Firefox, with all standard Mozilla APIs based on XUL, XBL, and XPCOM

Enhancements:

  • Editor History
  • Hyperlinks
  • Fast-open dialog
  • Find highlighting

Requirements:

  1. Red Hat Enterprise Linux 5 or later
  2. CentOS 5.0 or later
  3. Fedora Core 8 or later
  4. OpenSUSE 10.2 or later
  5. Ubuntu 7.04 or later
    • hx86 or x86_64 architecture
    • 500 MHz or faster processor
    • 512 MB RAM (1 GB+ recommended)
    • 200 MB hard disk space

WareSeeker Editor

<<less
Download (37.23MB)
Added: 2009-04-07 License: Freeware Price: $0.00
465 downloads
 
Other version of Komodo Edit
Price: $0.00
License:Freeware
Download (37.22MB)
452 downloads
Added: 2009-04-23
Price: $0.00
License:Freeware
Download (37.08MB)
452 downloads
Added: 2009-04-20
Price: $0.00
License:Freeware
Download (37.18MB)
454 downloads
Added: 2009-04-21
Price: $0.00
License:Freeware
Download (32.33MB)
542 downloads
Added: 2009-04-24
openQRM Plug-ins 0.2 (Solaris (X86))

openQRM Plug-ins 0.2 (Solaris (X86))


openQRM Plug-ins is a collection of community-supported plug-ins that enable openQRM to manage other enterprise software. more>>
openQRM Plug-ins is a collection of community-supported plug-ins that enable openQRM to manage other enterprise and open source software.
openQRM is designed to deal with all sorts of failures automatically, thus preventing interrupts because of unexpected events.
Implementing openQRM greatly improves the reliability of the x86 data-center.
openQRM is an open source systems management platform which integrates with existing components in enterprise data centers to create scalable, highly available and customizable infrastructures.
openQRM is derived from a proven commercial product and distributed as an open source project through SourceForge, using a modified Mozilla Public License.
openQRMs architecture extends to and embraces other existing data center technologies through "plug-ins."The openQRM project team has created a number of plug-ins for broadly-used open source projects and proprietary solutions, and seeks to recruit community members to assist in additional plug-ins.
openQRM leverages the proven technologies of PXE and NFS along with storing images on central storage to effectively manage the data center.
The project team aims to set the standard in data center management by continuing to provide a "premiere" enterprise-grade project for automating IT infrastructure, and by embracing other technologies through increasing our offering of plug-ins.
OpenQRM.org is the best destination for our projects community to share ideas and innovations. Contributed by Qlusters, openQRM.org offers a range of support and information services to benefit all users of openQRM, including implementation advice, user forums and customer feedback.
Enhancements:
- The Solaris-x86 plugin was ported to openQRM 3.1.4 and the Solaris-x86 assignment function was fixed.
<<less
Download (0.016MB)
Added: 2007-04-25 License: GPL (GNU General Public License) Price:
912 downloads
OptimFROG For Linux(X86 console) 4.600ex

OptimFROG For Linux(X86 console) 4.600ex


OptimFROG is a lossless audio compression program. more>> What is OptimFROG?
OptimFROG is a lossless audio compression program. Its main goal is to reduce at maximum the size of audio files, while permitting bit identical restoration for all input. It is similar with the ZIP compression, but it is highly specialized to compress audio data.
OptimFROG obtains asymptotically the best lossless audio compression ratios. It has Windows, Linux, and Mac versions, fully featured input plug-ins for the Windows Media Player, foobar2000, Winamp2/3/5, dBpowerAMP, XMPlay, QCD, and XMMS audio players (with bitstream error resilience, ID3v1.1 and APEv2 read tagging support, ID3v2 compatible), optimal support for all integer PCM wave formats up to 32 bits and an extensible streamable (error tolerant) compressed format. It is also fast, the default mode encodes CD quality audio data at 12.4x real-time and decodes at 17.4x real-time on AMD Athlon XP 1800+ (the fastest mode encodes at 28.1x real-time and decodes at 24.7x real-time). Self-extracting (sfx) archives can also be created with a small overhead of just 54 KB.
The compression ratios which can obtained with OptimFROG are generally ranging from 25% (silent classical music) to 70% (loud rock music) of the original audio file size. This is less compared with around 13% obtained with high quality MP3 files (~176 kb), but you have the great advantage of archiving and listening at perfect copies of your original music.
OptimFROG uses a new audio compression technology, the generalized stereo decorrelation concept (together with the optimal predictor), which was first introduced with OptimFROG 4.0b in December 2001. At the time of its introduction, the new technology yielded significant better (~1.5%) compression than existing state of the art lossless audio compressors.
<<less
Download (313KB)
Added: 2009-04-16 License: Freeware Price: Free
190 downloads
nVidia FreeBSD Display Driver x86 100.14.11

nVidia FreeBSD Display Driver x86 100.14.11


nVidia FreeBSD Display Driver is the OpenGL nVidia support for graphic cards on FreeBSD operating systems. more>>
nVidia FreeBSD Display Driver is the OpenGL nVidia support for graphic cards on FreeBSD operating systems.
Enhancements:
Added support for new GPUs:
- GeForce 7050 PV / NVIDIA nForce 630a
- GeForce 7025 / NVIDIA nForce 630a
Fixed console restore problems in several different configurations:
- Quadro FX 4400 SLI
- VESA console
- Notebook LCD displays
- Improved interaction with ATi RS480/482 based mainboards.
- Improved support for House Sync with G-Sync II.
- Improved NVIDIA X driver interaction with ACPI daemon.
<<less
Download (10.9MB)
Added: 2007-06-22 License: Other/Proprietary License Price:
878 downloads
 
Other version of nVidia FreeBSD Display Driver x86
License:Other/Proprietary License
Download (10.6MB)
1070 downloads
Added: 2006-11-21
nVidia Linux Display Driver x86 100.14.03 Beta

nVidia Linux Display Driver x86 100.14.03 Beta


nVidia Linux Display Driver is the OpenGL nVidia support for graphic cards on Linux operating systems. more>>
nVidia Linux Display Driver is the OpenGL nVidia support for graphic cards on Linux operating systems.

Installation:

Type "sh NVIDIA-Linux-x86-100.14.03-pkg1.run" to install the driver. NVIDIA now provides a utility to assist you with configuration of your X config file.
<<less
Download (14.6MB)
Added: 2007-05-22 License: Other/Proprietary License Price:
891 downloads
Udis86 1.5

Udis86 1.5


Udis86 is a binary file disassembler for x86/x86-64 with support for MMX, x87, 3Dnow! etc. more>>
Udis86/64 is (as of now) a binary file disassembler for the x86 and x86-64 (AMD64) architectures, capable of disassembling 16/32/64 bit binary files to AT&T or INTEL assembly language syntax.
[COPYRIGHt=1] Udis86 focuses on providing the basic disassembler functionality in executable format as well as a static library libudis86.a for use as the core of object/executable file diassembler programs.
Enhancements:
- Decode fixes.
- Fixed buffer overrun vulnerabilities. Input streaming is more robust now.
<<less
Download (0.10MB)
Added: 2007-07-13 License: GPL (GNU General Public License) Price:
835 downloads
MplayerXP 0.6.2

MplayerXP 0.6.2


MplayerXP is a mplayer with extra performance. more>>
MplayerXP is a branch of the well known mplayer (http://mplayerhq.hu) which is based on the new (thread based) core. MplayerXP project was designed for x86 architecture but was ported on DecAlpha, SUN, PowerPC.
The new core provides better CPU utilization and excellently improves performance of video decoding. Main goal of this project is to get monotonous CPU loading during movie playback.
This project is a media player for *nix systems. It was designed for Linux, but works on other unices like: FreeBSD, QNX.
MplayerXP project was designed for x86 architecture but was ported on DecAlpha, SUN, PowerPC.
Enhancements:
- synchronized libloader with mplayerhq
- updated ffmpeg codecs (fixes some lacks of prev release)
- added support for new codecs
- fixed segfault in MPC demuxer
<<less
Download (2.50MB)
Added: 2007-04-07 License: GPL (GNU General Public License) Price:
565 downloads
LILO 22.8

LILO 22.8


LILO is a LInux boot loader. more>>
LILO is a Boot loader for Linux/x86 and other PC operating systems. It is responsible for loading your Linux kernel from either a floppy or a hard drive and passing control to it.

LILO is capable of booting beyond cylinder 1024 of a hard disk if the BIOS supports EDD packet call extensions to the int 0x13 interface.

LILO can also be used to boot many other operating systems, including DOS, Windows (all versions), OS/2, and the BSD variants. The LILO distribution includes full source, documentation and support files.
<<less
Download (0.12MB)
Added: 2007-02-19 License: BSD License Price:
719 downloads
KBDE 1.1.6

KBDE 1.1.6


KBDE is a keyboard emulator. more>>
KBDE is a keyboard emulator. It allow emulate keyboard input for keyboardless x86 computers.
KBDE include following:
- linux kernel module
- user-space tools
- development library
Enhancements:
- Support was added for Linux kernel versions 2.6.20 and later.
<<less
Download (0.030MB)
Added: 2007-05-14 License: LGPL (GNU Lesser General Public License) Price:
895 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5