Skip to main content

Posts

Showing posts from April, 2008

Best Open Source Reporting Engine

Jasper is open source java base reporting engine.I used jasper for report generated for my project.wow it's very nice.I,m used ireport visual tool for Report designing.There are lot of features for designing report.It's very easy and can generate very nicely.Ireport tool provide some nice templates.We can use this templates also. You can try it for the more details click here

Ubuntu Mobile Edition

Ubuntu Mobile is an Ubuntu edition that targets an exciting new class of computers called Mobile Internet Devices. Ubuntu Mobile, based on the world's most popular Linux distribution, and MID hardware from OEMs and ODMs, are redefining what can be done in mobile computing. Ubuntu Mobile, a fully open source project, gives full Internet, with no compromise. Custom options may include licensed codecs and popular third-party applications. * Full Web 2.0/AJAX fidelity, with custom options of Adobe Flash®, Java, and more * Outstanding media playback so you can enjoy videos, music and photos with superior quality and easy navigation * A suite of applications that work seamlessly to meet every need of a digital parent, student or anyone who is on-the-go * Facebook®, MySpace®, YouTube®, Dailymotion®, 3D games, GPS, maps, in short, the full Web 2.0 experience delivered into your hands as a compact and powerful device that's easy and fun to use The product of Canonical co

Run Windows and Linux without virtualization

Linux does everything that many users want it to, but some people have tasks that require Windows applications. You can dual-boot both operating systems, or run Windows in a virtualized environment on Linux. Alas, virtualization makes the guest OS almost useless for processor- and RAM-intensive tasks like editing videos and playing games. Now, a Ubuntu-based distro called andLinux takes cooperation with Windows to a whole new level. The miracle ingredient in andLinux is its coLinux kernel. The coLinux project takes a stable release of the Linux kernel and ports it to run on Windows. That means that, unlike virtualization software, andLinux installs on Windows like any other application. But there's more to andLinux than just sticking the coLinux kernel in a stock Ubuntu. According to Joachim Gehweiler, one of the developers of andLinux, the project also had to roll in the Xming X server and PulseAudio sound server and make sure these components work together. Read more...

How to Customize Ubuntu

Reconstructor is an Ubuntu GNU/Linux CD Creator. It uses the Desktop(Live), Alternate(Install), or Server disc as a base, and then allows for user customization. For the Ubuntu Desktop base, you can customize the entire environment. For instance, you can add/remove software, change the default look (splash, themes, fonts, wallpaper, etc.), add desktop links, etc. For the Alternate and Server bases, you can add any additional software to the disc that you would like installed. Reconstructor is written in python and is licensed under the GNU General Public License (GPL).

My Free and Open Source Project

I desired to start a FOSS project because Sri Lanka is one of the main Foss contributors in the world. But we haven’t enough Foss projects. There are very good project like “Sahana” but it’s not sufficient. About “ ALOKAYA ” project This is neural network framework for Linux. Any AI base software can build on this framework. Very easy to develop software on this framework. This is not traditional framework. This framework provide framework + libries for the development project Join with this project......

Introduction to Ubuntu 8.04 Beta

The Ubuntu developers are moving very quickly to bring you the absolute latest and greatest software the open source community has to offer. This is the Ubuntu 8.04 beta release, which brings a host of excellent new features. Note : This is still a beta release. Do not install it on production machines. The final stable version will be released in April 2008. Download Get it while it's hot. ISOs and torrents are available at: http://releases.ubuntu.com/releases/8.04 (Ubuntu) http://releases.ubuntu.com/releases/edubuntu/8.04 (Edubuntu add-on) http://releases.ubuntu.com/releases/kubuntu/8.04 (Kubuntu) http://cdimage.ubuntu.com/kubuntu-kde4/releases/8.04/beta (Kubuntu with KDE4) http://cdimage.ubuntu.com/jeos/releases/8.04/beta (Ubuntu JeOS) http://cdimage.ubuntu.com/xubuntu/releases/8.04/beta (Xubuntu) http://cdimage.ubuntu.com/ubuntustudio/releases/8.04/beta (UbuntuStudio) http://cdimage.ubuntu.com/mythbuntu/releases/8.04/beta (Mythbun

Ubuntu Networking Configuration Using Command Line

You can configure a network interface from the command line using the networking utilities. You configure your network client hosts with the command line by using commands to change your current settings or by editing a number of system files. Configuring DHCP(Dynamic Host Configuration Protocol ) address for your network card If you want to configure DHCP address you need to edit the /etc/network/interfaces and you need to enter the following lines replace eth0 with your network interface card sudo vi /etc/network/interfaces # The primary network interface - use DHCP to find our address auto eth0 iface eth0 inet dhcp Configuring Static IP address for your network card If you want to configure Static IP address you need to edit the /etc/network/interfaces and you need to enter the following lines replace eth0 with your network interface card sudo vi /etc/network/interfaces # The primary network interface auto eth0 iface eth0 inet static address 192.168.3.90 gateway 192.168.3.1 netmask

How to find File in Linux

For that we can use "find" command. EXAMPLES find /home -user joe Find every file under the directory /home owned by the user joe. find /usr -name *stat Find every file under the directory /usr ending in ".stat". find /var/spool -mtime +60 Find every file under the directory /var/spool that was modified more than 60 days ago. find /tmp -name core -type f -print | xargs /bin/rm -f Find files named core in or below the directory /tmp and delete them. Note that this will work incorrectly if there are any filenames containing newlines, single or double quotes, or spaces. find /tmp -name core -type f -print0 | xargs -0 /bin/rm -f Find files named core in or below the directory /tmp and delete them, processing filenames in such a way that file or directory names containing single or double quotes, spaces or newlines are correctly handled. The -name test comes before the -type test in order to avoid having to call stat(2) on every file. find . -type f -exec file '{}

Repo Linux Command for Ubuntu

1. Created /opt/repo directory (could be the home directory) 2. Created the directory /opt/repo/binary (copied from Debian specs) 3. Copied all debs from my update from /var/cache/apt/archives to /opt/repo/binary 4. Executed dpkg-scanpackages like this: # pwd /opt/repo # dpkg-scanpackages binary /dev/null | gzip -9c > binary/Packages.gz 5. Burned a CD with its contents