linux on windows using vmware
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 18582
Linux in a window of Windows 4.0-r0
Linux in a window of Windows. Run the Debian Linux appliance in the free VMware Player side by side with Windows. This is a full desktop Gnome install... more>> <<less
Download (455993KB)
Added: 2009-04-13 License: Freeware Price: Free
196 downloads
GNU/Linux Desktop Testing Project 0.8.0
GNU/Linux Desktop Testing Project is aimed at producing high quality test automation framework. more>>
GNU/Linux Desktop Testing Project (GNU/LDTP) is aimed at producing high quality test automation framework and cutting-edge tools that can be used to test GNU/Linux Desktop and improve it.
GNU/Linux Desktop Testing Project uses the "Accessibility" libraries to poke through the applications user interface. The framework has tools to generate "AppMap" by reading through the user interface components of an application. The framework also has tools to record test-cases based on user-selection on the application.
GNU/LDTP core framework uses "AppMap" and the recorded "test-cases" to test an application and gives the status of each test-case as output.
As of now, GNU/LDTP can test any GNOME application which are accessibility enabled, Mozilla, OpenOffice.org, any Java application (should have a UI based on swing) and KDE 4.0 applications based on QT 4.0 (based on the press releases by KDE).
We encourage you to join the project and help us to create robust, reliable and stable test tool/framework for Linux Desktops.
Main features:
- LDTP concepts are derived from Software Automation Framework Support
- LDTP supports verification of actions performed (GuiExist, VerifyState, etc) - API Reference
- Writing test scripts are very easy, the script writer need not know about the object hierarchy
- CPU / Memory performance monitoring of application-under-test can be measured - Class pstats
- From the XML log, we can gather HTML report using XSLT
- Group based execution, which provides precise control on the flow of test-script execution - Gldap XML
- Scripts can be written as a reusable component and for that the datas can be stored / retrieved in XML - Data XML
- User-friendly Text Editor with syntax highlighting for generating and grouping test data Howto use LDTP Editor
- Objects are identified both statically and dynamically
Enhancements:
- Now automation scripts can be written without using time.sleep.
- A particular object and its child can be remapped in a window.
- Memory leaks were fixed.
<<lessGNU/Linux Desktop Testing Project uses the "Accessibility" libraries to poke through the applications user interface. The framework has tools to generate "AppMap" by reading through the user interface components of an application. The framework also has tools to record test-cases based on user-selection on the application.
GNU/LDTP core framework uses "AppMap" and the recorded "test-cases" to test an application and gives the status of each test-case as output.
As of now, GNU/LDTP can test any GNOME application which are accessibility enabled, Mozilla, OpenOffice.org, any Java application (should have a UI based on swing) and KDE 4.0 applications based on QT 4.0 (based on the press releases by KDE).
We encourage you to join the project and help us to create robust, reliable and stable test tool/framework for Linux Desktops.
Main features:
- LDTP concepts are derived from Software Automation Framework Support
- LDTP supports verification of actions performed (GuiExist, VerifyState, etc) - API Reference
- Writing test scripts are very easy, the script writer need not know about the object hierarchy
- CPU / Memory performance monitoring of application-under-test can be measured - Class pstats
- From the XML log, we can gather HTML report using XSLT
- Group based execution, which provides precise control on the flow of test-script execution - Gldap XML
- Scripts can be written as a reusable component and for that the datas can be stored / retrieved in XML - Data XML
- User-friendly Text Editor with syntax highlighting for generating and grouping test data Howto use LDTP Editor
- Objects are identified both statically and dynamically
Enhancements:
- Now automation scripts can be written without using time.sleep.
- A particular object and its child can be remapped in a window.
- Memory leaks were fixed.
Download (0.36MB)
Added: 2007-02-22 License: LGPL (GNU Lesser General Public License) Price:
978 downloads
Linux::Inotify2 1.01
Linux::Inotify2 is a scalable directory/file change notification. more>>
Linux::Inotify2 is a scalable directory/file change notification.
SYNOPSIS
Callback interface
use Linux::Inotify2;
# create a new object
my $inotify = new Linux::Inotify2
or die "Unable to create new inotify object: $!";
# for Event:
Event->io (fd =>$inotify->fileno, poll => r, cb => sub { $inotify->poll });
# for Glib:
add_watch Glib::IO $inotify->fileno, in => sub { $inotify->poll };
# manually:
1 while $inotify->poll;
# add watchers
$inotify->watch ("/etc/passwd", IN_ACCESS, sub {
my $e = shift;
my $name = $e->fullname;
print "$name was accessedn" if $e->IN_ACCESS;
print "$name is no longer mountedn" if $e->IN_UNMOUNT;
print "$name is gonen" if $e->IN_IGNORED;
print "events for $name have been lostn" if $e->IN_Q_OVERFLOW;
# cancel this watcher: remove no further events
$e->w->cancel;
});
Streaming Interface
use Linux::Inotify2 ;
# create a new object
my $inotify = new Linux::Inotify2
or die "Unable to create new inotify object: $!" ;
# create watch
$inotify->watch ("/etc/passwd", IN_ACCESS)
or die "watch creation failed" ;
while () {
my @events = $inotify->read;
unless (@events > 0) {
print "read error: $!";
last ;
}
printf "maskt%dn", $_->mask foreach @events ;
}
This module implements an interface to the Linux 2.6.13 and later Inotify file/directory change notification sytem.
It has a number of advantages over the Linux::Inotify module:
- it is portable (Linux::Inotify only works on x86)
- the equivalent of fullname works correctly
- it is better documented
- it has callback-style interface, which is better suited for
integration.
<<lessSYNOPSIS
Callback interface
use Linux::Inotify2;
# create a new object
my $inotify = new Linux::Inotify2
or die "Unable to create new inotify object: $!";
# for Event:
Event->io (fd =>$inotify->fileno, poll => r, cb => sub { $inotify->poll });
# for Glib:
add_watch Glib::IO $inotify->fileno, in => sub { $inotify->poll };
# manually:
1 while $inotify->poll;
# add watchers
$inotify->watch ("/etc/passwd", IN_ACCESS, sub {
my $e = shift;
my $name = $e->fullname;
print "$name was accessedn" if $e->IN_ACCESS;
print "$name is no longer mountedn" if $e->IN_UNMOUNT;
print "$name is gonen" if $e->IN_IGNORED;
print "events for $name have been lostn" if $e->IN_Q_OVERFLOW;
# cancel this watcher: remove no further events
$e->w->cancel;
});
Streaming Interface
use Linux::Inotify2 ;
# create a new object
my $inotify = new Linux::Inotify2
or die "Unable to create new inotify object: $!" ;
# create watch
$inotify->watch ("/etc/passwd", IN_ACCESS)
or die "watch creation failed" ;
while () {
my @events = $inotify->read;
unless (@events > 0) {
print "read error: $!";
last ;
}
printf "maskt%dn", $_->mask foreach @events ;
}
This module implements an interface to the Linux 2.6.13 and later Inotify file/directory change notification sytem.
It has a number of advantages over the Linux::Inotify module:
- it is portable (Linux::Inotify only works on x86)
- the equivalent of fullname works correctly
- it is better documented
- it has callback-style interface, which is better suited for
integration.
Download (0.009MB)
Added: 2006-09-06 License: Perl Artistic License Price:
1145 downloads
Linux Commander 0.5.2
Linux Commander is a file manager for X11 using GTK+. more>>
Linux Commander is a powerful file manager for the X Window System.
It is partially modelled after Window Commander for Windows.
<<lessIt is partially modelled after Window Commander for Windows.
Download (0.16MB)
Added: 2005-04-29 License: GPL (GNU General Public License) Price:
1665 downloads
Linux::Input::Joystick 1.02
Linux::Input::Joystick is a joystick-specific interface for Linux 2.2+ more>>
Linux::Input::Joystick is a joystick-specific interface for Linux 2.2+
SYNOPSIS
Usage
use YAML;
my $js = Linux::Input::Joystick->new(/dev/input/js0);
while (1) {
my @event = $js->poll(0.01);
print Dump($_) foreach (@event);
}
This is a subclass of Linux::Input that implements the joystick event interface that versions of Linux from 2.2 onward support. It differs from the normal event interface in that it uses a slightly different C struct to return event information.
This subclass inherits all of Linux::Inputs methods, but differs from it in the following ways:
Class Methods
new
This method takes a $filename and returns a Linux::Input::Joystick object on success.
Example:
my $js = Linux::Input::Joystick->new(/dev/input/js1);
event_bytes
This method returns the size of the joystick event structure (which is always 8) no matter what platform you run this on.
Object Methods
poll
This method takes a $timeout as a parameter and returns an list of @events after that timeout has elapsed. The hashrefs inside @events have the following key/value pairs.
time
This is the time in microseconds that this event happened.
type
This is the type of event.
number
This number represents a more specific instance of type. For example, if type is 1 (meaning button event), then number might be 5 (meaning button 5 moved).
value
This number specifies what happened. Keeping the previous example in mind, if the value received is 1, that means the button was pressed. However, if its 0, that means the button was released.
For more information on what values to expect in this hashref, go look at /usr/include/linux/joystick.h
<<lessSYNOPSIS
Usage
use YAML;
my $js = Linux::Input::Joystick->new(/dev/input/js0);
while (1) {
my @event = $js->poll(0.01);
print Dump($_) foreach (@event);
}
This is a subclass of Linux::Input that implements the joystick event interface that versions of Linux from 2.2 onward support. It differs from the normal event interface in that it uses a slightly different C struct to return event information.
This subclass inherits all of Linux::Inputs methods, but differs from it in the following ways:
Class Methods
new
This method takes a $filename and returns a Linux::Input::Joystick object on success.
Example:
my $js = Linux::Input::Joystick->new(/dev/input/js1);
event_bytes
This method returns the size of the joystick event structure (which is always 8) no matter what platform you run this on.
Object Methods
poll
This method takes a $timeout as a parameter and returns an list of @events after that timeout has elapsed. The hashrefs inside @events have the following key/value pairs.
time
This is the time in microseconds that this event happened.
type
This is the type of event.
number
This number represents a more specific instance of type. For example, if type is 1 (meaning button event), then number might be 5 (meaning button 5 moved).
value
This number specifies what happened. Keeping the previous example in mind, if the value received is 1, that means the button was pressed. However, if its 0, that means the button was released.
For more information on what values to expect in this hashref, go look at /usr/include/linux/joystick.h
Download (0.006MB)
Added: 2007-01-25 License: Perl Artistic License Price:
1003 downloads
SlaBuntuVMware 0.2
SlaBuntuVMware is a useful installation suite for installing VMware Server on Slackware or Ubuntu. more>>
SlaBuntuVMware is a useful installation suite for installing VMware Server on Slackware or Ubuntu.
The project automatically downloads packages from the VMware site.
Tested on Slackware 11. (Slackware 10.2 might not work - try)
Tested on Ubuntu Desktop Dapper Drake and Ubuntu Desktop Edgy.
IMPORTANT: this suite does not include the vmware server packs,
they are downloaded from the official VMware site.
You also need a server key for activating the product that you must
get (for free) from the VMware web-site (http://www.vmware.com/server/)
INSTALLATION (Slackware Linux) :
a) 1- The perfect setup for running vmware on Slackware is:
Slackware 11 (When you install the OS leave a big partion for your
virtual machines).
Using a good server with an hardware raid controller:
Suggested Partition Table (scsi disks, if ide hda):
/dev/sda1 swap (megs?gb? depends on your system)
/dev/sda2 / 10Gb
/dev/sda3 /home 2Gb
/dev/sda4 /vm (160 Gb the rest for your virtual machines)
You must do a normal install with X support but no KDE.
2- Dropline Gnome (http://www.droplinegnome.net)
It is suggested you run gnome on Slackware 11. Gnome is not
included in the distro cds, therefore you must download
Dropline Gnome.
3- Kernel 2.6.x (with the kernel sources into /usr/src/linux)
(Default Kernel 2.4.33.3 works perfectly though)
CAUTION: take a look on www.vmware.com for the
supported kernel 2.6 versions.
OR
- If you have problems building 2.6.x vmware kernel module, just use
the normal 2.4.33.3 kernel supplied with your slackware, or try the test26.s
or huge26.s supplied with your slackware cds.
b) - The base setup for running vmware on Slackware is:
1- Slackware 11
2- Kde(not tested can have problems with some libraries)
(if you do not want to Download and install Dropline Gnome)
3- Kernel 2.4.33 (with the kernel sources into /usr/src/linux)
Using a normal pc with no raid controller (so you should use linux
raid software):
Suggested Partition Table (scsi disks, if ide hda):
/dev/md1 swap (megs?gb? depends on your system)
/dev/md2 / 10Gb
/dev/md3 /home 2Gb
/dev/md4 /vm (100 Gb? the rest for your virtual machines)
---------------------------------------------------------------------------
If you do not want to use Gnome or Kde go at the end of this file.
---------------------------------------------------------------------------
2) After making sure you have everything (including the kernel sources
inside /usr/src/linux) you can run:
3) as root ./setup.sh
4) follow the steps provided
(you can hit ENTER to most of the questions (90%)
4) provide the vmware free key when needed
(ask for it on the site http://www.vmware.com)
6) under an X session: Run the command "vmware" and Enjoy vmware!
INSTALLATION (Ubuntu Desktop, Alternate,NOT Server):
1) edit /etc/apt/sources.list and uncomment all the lines starting with deb
2) open a terminal (xterm) and type "sudo ./setup.sh"
3) follow the steps provided
(you can hit ENTER to most of the questions (90%)
4) provide the vmware free key when needed
(ask for it on the site http://www.vmware.com)
5) Run the command "vmware" and Enjoy vmware!
INSTALLATION ON UBUNTU SERVER
- Not tried yet, but you should at first download and install X11 and gnome
and then follow the steps provided for Ubuntu Desktop above.
IMPORTANT INFO:
- Remember that vmware server packs are downloaded from the official vmware
site and are property of the VMware Company: http://www.vmware.com/
- Remember that in order to use VMware you should accept the terms of the
VMware license that will be displayed during the installation process.
- Remember that in order to installa VMware you should ask the VMware
fellows for a key. Do this at the VMware site: http://www.vmware.com/
- To create virtual machines you should use the vmware console.
a) Run the command "vmware" and the vmware console starts up.
b) Then connect to localhost.
- After created a virtual machine to run it from the cmd line use:
bash# vmware-cmd vmname.vmx start
Author: Lorenzo Allori
#####################################################
If you do not have Gnome or Kde youll need the following:
#####################################################
- Slack with glibc and glibcsolibs installed. Make sure you
have X11 installed with a window manager.
Packages needed are:
glibc-2.3.6-i486-6.tgz
glibc-solibs-2.3.6-i486-6.tgz
kernel-source-2.4.33.3-noarch-1.tgz
x11-6.9.0-i486-11.tgz
x11-devel-6.9.0-i486-11.tgz
windowmaker-0.92.0-i486-1.tgz
You can find those on http://www.slackware.com.
Download them and to install those just type (as root):
# installpkg pkgname
When you have finished installing all the packages you need remember to run:
# ldconfig
- If you need a window manager you can install windowmaker:
# installpkg windowmaker-0.92-i486.tgz
# wmaker.inst
<<lessThe project automatically downloads packages from the VMware site.
Tested on Slackware 11. (Slackware 10.2 might not work - try)
Tested on Ubuntu Desktop Dapper Drake and Ubuntu Desktop Edgy.
IMPORTANT: this suite does not include the vmware server packs,
they are downloaded from the official VMware site.
You also need a server key for activating the product that you must
get (for free) from the VMware web-site (http://www.vmware.com/server/)
INSTALLATION (Slackware Linux) :
a) 1- The perfect setup for running vmware on Slackware is:
Slackware 11 (When you install the OS leave a big partion for your
virtual machines).
Using a good server with an hardware raid controller:
Suggested Partition Table (scsi disks, if ide hda):
/dev/sda1 swap (megs?gb? depends on your system)
/dev/sda2 / 10Gb
/dev/sda3 /home 2Gb
/dev/sda4 /vm (160 Gb the rest for your virtual machines)
You must do a normal install with X support but no KDE.
2- Dropline Gnome (http://www.droplinegnome.net)
It is suggested you run gnome on Slackware 11. Gnome is not
included in the distro cds, therefore you must download
Dropline Gnome.
3- Kernel 2.6.x (with the kernel sources into /usr/src/linux)
(Default Kernel 2.4.33.3 works perfectly though)
CAUTION: take a look on www.vmware.com for the
supported kernel 2.6 versions.
OR
- If you have problems building 2.6.x vmware kernel module, just use
the normal 2.4.33.3 kernel supplied with your slackware, or try the test26.s
or huge26.s supplied with your slackware cds.
b) - The base setup for running vmware on Slackware is:
1- Slackware 11
2- Kde(not tested can have problems with some libraries)
(if you do not want to Download and install Dropline Gnome)
3- Kernel 2.4.33 (with the kernel sources into /usr/src/linux)
Using a normal pc with no raid controller (so you should use linux
raid software):
Suggested Partition Table (scsi disks, if ide hda):
/dev/md1 swap (megs?gb? depends on your system)
/dev/md2 / 10Gb
/dev/md3 /home 2Gb
/dev/md4 /vm (100 Gb? the rest for your virtual machines)
---------------------------------------------------------------------------
If you do not want to use Gnome or Kde go at the end of this file.
---------------------------------------------------------------------------
2) After making sure you have everything (including the kernel sources
inside /usr/src/linux) you can run:
3) as root ./setup.sh
4) follow the steps provided
(you can hit ENTER to most of the questions (90%)
4) provide the vmware free key when needed
(ask for it on the site http://www.vmware.com)
6) under an X session: Run the command "vmware" and Enjoy vmware!
INSTALLATION (Ubuntu Desktop, Alternate,NOT Server):
1) edit /etc/apt/sources.list and uncomment all the lines starting with deb
2) open a terminal (xterm) and type "sudo ./setup.sh"
3) follow the steps provided
(you can hit ENTER to most of the questions (90%)
4) provide the vmware free key when needed
(ask for it on the site http://www.vmware.com)
5) Run the command "vmware" and Enjoy vmware!
INSTALLATION ON UBUNTU SERVER
- Not tried yet, but you should at first download and install X11 and gnome
and then follow the steps provided for Ubuntu Desktop above.
IMPORTANT INFO:
- Remember that vmware server packs are downloaded from the official vmware
site and are property of the VMware Company: http://www.vmware.com/
- Remember that in order to use VMware you should accept the terms of the
VMware license that will be displayed during the installation process.
- Remember that in order to installa VMware you should ask the VMware
fellows for a key. Do this at the VMware site: http://www.vmware.com/
- To create virtual machines you should use the vmware console.
a) Run the command "vmware" and the vmware console starts up.
b) Then connect to localhost.
- After created a virtual machine to run it from the cmd line use:
bash# vmware-cmd vmname.vmx start
Author: Lorenzo Allori
#####################################################
If you do not have Gnome or Kde youll need the following:
#####################################################
- Slack with glibc and glibcsolibs installed. Make sure you
have X11 installed with a window manager.
Packages needed are:
glibc-2.3.6-i486-6.tgz
glibc-solibs-2.3.6-i486-6.tgz
kernel-source-2.4.33.3-noarch-1.tgz
x11-6.9.0-i486-11.tgz
x11-devel-6.9.0-i486-11.tgz
windowmaker-0.92.0-i486-1.tgz
You can find those on http://www.slackware.com.
Download them and to install those just type (as root):
# installpkg pkgname
When you have finished installing all the packages you need remember to run:
# ldconfig
- If you need a window manager you can install windowmaker:
# installpkg windowmaker-0.92-i486.tgz
# wmaker.inst
Download (0.012MB)
Added: 2007-04-30 License: GPL (GNU General Public License) Price:
907 downloads
Tao Linux 4-update2
Tao Linux is one of several projects to build a free Linux distribution from the sources used in the Red Hat Enterprise. more>>
Tao Linux (pronounced dow Linux) is a project to build a free Linux distribution from the sources used in the Red Hat Enterprise Linux product line.
The target market is either experienced system administrators who would like freely available binaries of this code, or end users who are interested in experimenting with enterprise functionality.
Besides being mostly compatible with Red Hat Enterprise Linux 3, it also includes software packages such as Eclipse and clustering tools not found in the base RHEL products.
Main features:
- Includes gcj-compiled Eclipse IDE
- Includes clustering tools
- Yum with protectbase patch for safer use of 3rd-party repos
- Supports ACLs in ext3, nfs and Samba
- Many packages for Red Hat Enterprise Linux also run on Tao Linux
- Free as in speech and beer
- Security updates (in SRPM form, at least) available into 2008
<<lessThe target market is either experienced system administrators who would like freely available binaries of this code, or end users who are interested in experimenting with enterprise functionality.
Besides being mostly compatible with Red Hat Enterprise Linux 3, it also includes software packages such as Eclipse and clustering tools not found in the base RHEL products.
Main features:
- Includes gcj-compiled Eclipse IDE
- Includes clustering tools
- Yum with protectbase patch for safer use of 3rd-party repos
- Supports ACLs in ext3, nfs and Samba
- Many packages for Red Hat Enterprise Linux also run on Tao Linux
- Free as in speech and beer
- Security updates (in SRPM form, at least) available into 2008
Download (2033MB)
Added: 2005-10-27 License: GPL (GNU General Public License) Price:
1458 downloads
Ark Linux Live 2007.1
Ark Linux Live is a Live CD edition of Ark Linux. more>>
Ark Linux Live is a Live CD edition of Ark Linux. Ark Linux is a beginner-friendly Linux distribution meant primarily for desktop use.
The Ark Linux team is pleased to announce the release of a first version of Ark Linux Live, a Live CD version of the Ark Linux operating system.
Ark Linux Live is designed to be as close to the "normal" version of Ark Linux as possible - and is built from the same source code.
There are a couple of known problems with this CD image, most notably non-English languages are not working in non-KDE applications, and the kernel spews some [harmless but dangerous looking] error messages at bootup. These (and other bugs that will possibly show up) will be fixed before the release of Ark Linux Live 2006.1.
The primary uses of a Live CD are:
- Recovering a normal system after a big hardware or software failure (Ark Linux will launch a special live CD for this purpose later, with more recovery tools and fewer other tools)
- Checking the system out without any risk
- Showing others what Linux is like, on their own hardware
- Taking your favorite operating system with you - e.g. to get on the net with Linux even if youre on vacation and the only internet cafe in town is a Microsoft shop
While it is possible to use Ark Linux Live as your primary operating system, that is not recommended - use Ark Linux Home instead.
Ark Linux is a Linux distribution designed especially for desktop use, primarily for people without prior Linux experience. Ark Linuxs main goal is ease of use, and the inclusion of many tools end users will need.
Ark Linux is fully Open Source and Free Software, meaning, basically, you can freely redistribute it in both modified and unmodified form.
Enhancements:
- The Ark Linux team is pleased to announce the immediate availability of Ark Linux 2007.1, the latest version of its multi-purpose desktop operating system. Ark Linux can be used for office/school work, desktop publishing, graphics, multimedia entertainment/editing, gaming, software development, and more.
Ark Linux is very adaptable and responsive to the users needs without being overly complicated and/or bloated or difficult to install (all a basic installation takes is 3 mouse clicks). For a more customized install, use the expert mode, which makes it possible to manually set up the partitions you wish to install Ark Linux into.
There have been many more changes since the 2006.1 release - all components have been updated to current versions. For example, Ark Linux 2007.1 includes the KDE 3.5.7 desktop, the OpenOffice.org 2.2.1 office suite and the Amarok music player 1.4.7. It also includes the latest underlying technologies such as Linux kernel 2.6.22.3, glibc 2.6.1, and has been built completely with gcc 4.2.1, resulting in a faster system and quicker response times.
A new and better integrated version of the wine Windows emulator makes it possible to run more Windows applications on Linux than before.
In addition to this, hardware detection has been improved, many new drivers are included, support for encrypted wireless networks has been improved and many additional applications and games have been added to the software repository.
We also have good news for developers and OEMs: The Ark Linux build system has been extended to allow customized builds of both Ark Linux and Ark Linux Live including your packages of choice - making it easier than ever to build your own Linux distribution. All details on the new build system can be found at http://wiki.arklinux.org/index.php/Customized_Ark_Linux_CDs-.
Ark Linux 2007.1 and various add-on CDs can be downloaded at http://www.arklinux.org/. Free live support is available using the web chat at http://www.arklinux.org/content/en/Live+Support
<<lessThe Ark Linux team is pleased to announce the release of a first version of Ark Linux Live, a Live CD version of the Ark Linux operating system.
Ark Linux Live is designed to be as close to the "normal" version of Ark Linux as possible - and is built from the same source code.
There are a couple of known problems with this CD image, most notably non-English languages are not working in non-KDE applications, and the kernel spews some [harmless but dangerous looking] error messages at bootup. These (and other bugs that will possibly show up) will be fixed before the release of Ark Linux Live 2006.1.
The primary uses of a Live CD are:
- Recovering a normal system after a big hardware or software failure (Ark Linux will launch a special live CD for this purpose later, with more recovery tools and fewer other tools)
- Checking the system out without any risk
- Showing others what Linux is like, on their own hardware
- Taking your favorite operating system with you - e.g. to get on the net with Linux even if youre on vacation and the only internet cafe in town is a Microsoft shop
While it is possible to use Ark Linux Live as your primary operating system, that is not recommended - use Ark Linux Home instead.
Ark Linux is a Linux distribution designed especially for desktop use, primarily for people without prior Linux experience. Ark Linuxs main goal is ease of use, and the inclusion of many tools end users will need.
Ark Linux is fully Open Source and Free Software, meaning, basically, you can freely redistribute it in both modified and unmodified form.
Enhancements:
- The Ark Linux team is pleased to announce the immediate availability of Ark Linux 2007.1, the latest version of its multi-purpose desktop operating system. Ark Linux can be used for office/school work, desktop publishing, graphics, multimedia entertainment/editing, gaming, software development, and more.
Ark Linux is very adaptable and responsive to the users needs without being overly complicated and/or bloated or difficult to install (all a basic installation takes is 3 mouse clicks). For a more customized install, use the expert mode, which makes it possible to manually set up the partitions you wish to install Ark Linux into.
There have been many more changes since the 2006.1 release - all components have been updated to current versions. For example, Ark Linux 2007.1 includes the KDE 3.5.7 desktop, the OpenOffice.org 2.2.1 office suite and the Amarok music player 1.4.7. It also includes the latest underlying technologies such as Linux kernel 2.6.22.3, glibc 2.6.1, and has been built completely with gcc 4.2.1, resulting in a faster system and quicker response times.
A new and better integrated version of the wine Windows emulator makes it possible to run more Windows applications on Linux than before.
In addition to this, hardware detection has been improved, many new drivers are included, support for encrypted wireless networks has been improved and many additional applications and games have been added to the software repository.
We also have good news for developers and OEMs: The Ark Linux build system has been extended to allow customized builds of both Ark Linux and Ark Linux Live including your packages of choice - making it easier than ever to build your own Linux distribution. All details on the new build system can be found at http://wiki.arklinux.org/index.php/Customized_Ark_Linux_CDs-.
Ark Linux 2007.1 and various add-on CDs can be downloaded at http://www.arklinux.org/. Free live support is available using the web chat at http://www.arklinux.org/content/en/Live+Support
Download (642MB)
Added: 2007-08-17 License: GPL (GNU General Public License) Price:
802 downloads
Linux on the Microsoft Xbox
The Xbox Linux Project aims to privide a version of GNU/Linux for the Xbox, so that it can be used as an ordinary computer. more>>
The Xbox Linux Project aims to privide a version of GNU/Linux for the Xbox, so that it can be used as an ordinary computer.
Linux should make use of all Xbox hardware and allow to install and run software from standard i386 Linux distributions.
An Xbox with Linux can be a full desktop computer with mouse and keyboard, a web/email box connected to TV, a server or router or a node in a cluster.
You can either dual-boot or use Linux only; in the latter case, you can replace both IDE devices. And yes, you can connect the Xbox to a VGA monitor.
Main features:
- You can run Linux on your Xbox!
- You can do it without a modchip!
- You can do it without opening your Xbox!
<<lessLinux should make use of all Xbox hardware and allow to install and run software from standard i386 Linux distributions.
An Xbox with Linux can be a full desktop computer with mouse and keyboard, a web/email box connected to TV, a server or router or a node in a cluster.
You can either dual-boot or use Linux only; in the latter case, you can replace both IDE devices. And yes, you can connect the Xbox to a VGA monitor.
Main features:
- You can run Linux on your Xbox!
- You can do it without a modchip!
- You can do it without opening your Xbox!
Download (7.0MB)
Added: 2005-04-11 License: GPL (GNU General Public License) Price:
1686 downloads
Portable Linux Processor Affinity 1.0.2
Portable Linux Processor Affinity is an attempt to solve the problem of multiple APIs for processor affinity within Linux. more>>
The Portable Linux Processor Affinity (PLPA) library does the following, regardless of your Linux distribution, kernel version, and GLibc version:
- Provide consistent behavior
- Provide binary compatibility of processor affinity
- Provide a common API and set of abstractions
PLPA is an attempt to solve the problem that there are multiple APIs for processor affinity within Linux. Specifically, the functions sched_setaffinity() and sched_getaffinity() have numbers and types of parameters depending on your Linux vendor and/or version of GLibc. This is quite problematic for applications attempting to use processor affinity in Linux for compile-time, link-time, and run-time reasons.
The PLPA provides a single processor affinity API that developers can write to in order to get both consistent behavior and binary compatibility across different Linux installations (assuming that you have an executable that is otherwise binary Linux portable, of course).
Portable Linux Processor Affinity library was developed by the Open MPI team as a standalone project that can be used by the Linux community. Specifically: it is distributed independently of Open MPI and does not require any part of Open MPI for its compile-, link-, or run-time functionality.
Enhancements:
- The return status of plpa_sched_[set|get]affinity() is now ensured to be zero upon success.
<<less- Provide consistent behavior
- Provide binary compatibility of processor affinity
- Provide a common API and set of abstractions
PLPA is an attempt to solve the problem that there are multiple APIs for processor affinity within Linux. Specifically, the functions sched_setaffinity() and sched_getaffinity() have numbers and types of parameters depending on your Linux vendor and/or version of GLibc. This is quite problematic for applications attempting to use processor affinity in Linux for compile-time, link-time, and run-time reasons.
The PLPA provides a single processor affinity API that developers can write to in order to get both consistent behavior and binary compatibility across different Linux installations (assuming that you have an executable that is otherwise binary Linux portable, of course).
Portable Linux Processor Affinity library was developed by the Open MPI team as a standalone project that can be used by the Linux community. Specifically: it is distributed independently of Open MPI and does not require any part of Open MPI for its compile-, link-, or run-time functionality.
Enhancements:
- The return status of plpa_sched_[set|get]affinity() is now ensured to be zero upon success.
Download (0.31MB)
Added: 2006-02-12 License: BSD License Price:
1349 downloads
Mandriva Linux One 2007
Mandriva Linux One is a complete Mandriva Linux system, which you can use directly from the CD. more>>
Mandriva Linux One is a complete Mandriva Linux system, which you can use directly from the CD.
It includes Openoffice.org, kde, mozilla-firefox, gimp, amarok...
You are welcome to test, especially the installation wizard.
Please report the problems on bugzilla for the distribution.
You only need one CD, just pick the one depending of you language.
<<lessIt includes Openoffice.org, kde, mozilla-firefox, gimp, amarok...
You are welcome to test, especially the installation wizard.
Please report the problems on bugzilla for the distribution.
You only need one CD, just pick the one depending of you language.
Download (696MB)
Added: 2006-10-22 License: GPL (GNU General Public License) Price:
1122 downloads
Linux Virtual Server 1.21
Linux Virtual Server is a load-balancing and server clustering system for Linux. more>>
The Linux Virtual Server is a highly scalable and highly available server built on a cluster of real servers, with the load balancer running on the Linux operating system.
The architecture of the server cluster is fully transparent to end users, and the users interact as if it were a single high-performance virtual server.
The basic goal of the Linux Virtual Server Project is to:
- Build a high-performance and highly available server for Linux using clustering technology, which provides good scalability, reliability and serviceability.
<<lessThe architecture of the server cluster is fully transparent to end users, and the users interact as if it were a single high-performance virtual server.
The basic goal of the Linux Virtual Server Project is to:
- Build a high-performance and highly available server for Linux using clustering technology, which provides good scalability, reliability and serviceability.
Download (0.03MB)
Added: 2005-04-06 License: GPL (GNU General Public License) Price:
1673 downloads
Debian GNU/Linux Etch RC2 (Debian-Installer)
Debian is an operating system for your computer that consists only of Free Software. more>>
Debian is an operating system for your computer that consists only of Free Software.
It uses the Linux kernel, and a large part of the basic tools that fill out the operating system come from GNU, which are also free.
Debian GNU/Linux Etch comes with thousands of packages.
<<lessIt uses the Linux kernel, and a large part of the basic tools that fill out the operating system come from GNU, which are also free.
Debian GNU/Linux Etch comes with thousands of packages.
Download (MB)
Added: 2007-04-02 License: DFSG approved Price:
954 downloads
Untangle Gateway Platform 5.0.1-vmware
Untangle Gateway Platform is a Linux-based network gateway with pluggable modules for network applications like spam blocking. more>>
Untangle Gateway Platform is a Linux-based network gateway with pluggable modules for network applications like spam blocking, Web filtering, anti-virus, anti-spyware, intrusion prevention, VPN, SSL VPN, firewall, and more.
- Commercial-grade open source alternative to SonicWALL and WatchGuard
- 14 integrated apps - use one or all of them
- Runs on off-the-shelf hardware
Enhancements:
- A package of 5.0.1 as a VMware Virtual Appliance has been released.
<<less- Commercial-grade open source alternative to SonicWALL and WatchGuard
- 14 integrated apps - use one or all of them
- Runs on off-the-shelf hardware
Enhancements:
- A package of 5.0.1 as a VMware Virtual Appliance has been released.
Download (395.2MB)
Added: 2007-08-17 License: GPL (GNU General Public License) Price:
828 downloads
Linux Wireless LAN Project 0.2.3
The goal of the Linux WLAN project is to develop a complete, standards based, wireless LAN system. more>>
The goal of the Linux WLAN project is to develop a complete, standards based, wireless LAN system using the GNU/Linux operating system.
The linux-wlan package is a linux device driver and subsystem package that is intended to provide the full range of IEEE 802.11 MAC management capabilities for use in user-mode utilities and scripts. The package currently supports the Intersil 802.11b Prism2, Prism2.5, and Prism3 reference designs for PCMCIA, PCI, and USB.
The package includes support for PLX9052 based PCI to PCMCIA adapter
with a few different PCMCIA cards.
<<lessThe linux-wlan package is a linux device driver and subsystem package that is intended to provide the full range of IEEE 802.11 MAC management capabilities for use in user-mode utilities and scripts. The package currently supports the Intersil 802.11b Prism2, Prism2.5, and Prism3 reference designs for PCMCIA, PCI, and USB.
The package includes support for PLX9052 based PCI to PCMCIA adapter
with a few different PCMCIA cards.
Download (0.53MB)
Added: 2006-06-27 License: GPL (GNU General Public License) Price:
1256 downloads
Secleted [ 0 ] software to compare
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above linux on windows using vmware search only lists software in full, demo and trial versions for free download. Download links are directly from our mirror sites or publisher sites, torrent files or links from rapidshare.com, yousendit.com or megaupload.com are not allowed