Skip to main content

A Bit about Linux



OpenSUSE 10.3 Alpha Development Released


Andreas Jaeger has announced the availability of the third alpha release of openSUSE 10.3: "I'm glad to announce the third public alpha release of openSUSE 10.3.The following are some highlights of Alpha3 compared to Alpha2: on x86_64: Firefox is now a 64-bit package and uses nspluginwrapper to handle 32-bit i386 plugins if needed; AppArmor uses now a new parser; the kernel patches have been reworked completely; GNOME 2.18 mostly integrated; update to kernel 2.6.21-rc6; new openSUSE updater running natively under GNOME; further fixes for using libata by default for IDE devices; new YaST ftp-server module; the package manager handles more than one CD/DVD drive." Read the rest of the release announcement for further details and known bugs. The new DVD images are available for download
.

Finally Debian 4.0 Arrives

Debian Community released DEBIAN GNU/Linux 4.0 having code name "ETCH" on April 8 2007. Debian 4.0 supports 11 processor architectures and includes a choice of three major desktop environments: KDE, GNOME, and Xfce(GNOME 2.14, KDE 3.5.5a, Xfce 4.4 desktop). OpenOffice.org 2.0.4a and GIMP 2.2.13 are also included in this distro. Servers such as MySQL, Apache are also available.

Note that Debian is on of the most popular linux distos available today...Many derivations of this are available today. Try it if you support free software movement.

Comments

Popular posts from this blog

IPAD and Other Mobile Device Emulators

At present, Each Mobile device has got its own emulators. Some useful IPAD emulators that help application developers to build device specific applications: A List is given below: AIR IPAD Pre requisite : Adobe AIR Remark:  Working smoothly.. Some minor problems have been discovered like low browsing speed, screen flickering etc. JQuery mobile plugin is not working It is still in its ALFA stage Link : http://bit.ly/dtFX1S To test your web app just copy it on to the Application root folder. iOS SDK Current Version : 4 http://developer.apple.com/ipad/sdk/ iOS SDK comes with builtin emulators, this helps developers to test their application before implementation ONLINE EMULATORS Some useful online emulators IPAD Peek:   http://ipadpeek.com/ http://www.ipad-emulator.com/ IPhone Tester:  http://iphonetester.com/ Opera Mini - Demo:  http://www.opera.com/mobile/demo/ T-Mobile Emulator:  http://tmobile.modeaondemand.com/htc/g1/ ...

Download YouTube Videos

Youtube converters are now taking attention of Internet users...Earlier it was very difficult to convert or download a youtube file to our disk. But now, you can download a file in formats like AVI, MPG, MP4, WMV,3gp(Mobile). You can convert either by using online application(such as youtubeconverter ) or by downloading an application software. You can use free softwares like YoutubeConverter that supports fast conversion. Some online applications supports mp3 formats as well. Try now....and feel the freedom!!!

Configuring Sublime to run in command line for Mac PC

On March 2017, I migrated to 2016 model Macbook Pro and now I am on my way to configure all the web development tools which was using before on Linux PC. Installation of most of the tools are pretty straight forward compared to Linux. On most of the occasions we don't even need to run any commands during installation process. By the way, my mac os version is Sierra (10.12)  I installed latest version of Sublime Text(version 3, build #3126). When I started to do actual development, I encountered this issue. From terminal I tried to run " subl . " . But I received an error saying command not found .   A one line terminal command could resolve this issue: ln -s "/Applications/Sublime Text.app/Contents/SharedSupport/bin/subl" /usr/local/bin/subl Here we are linking /usr/local/bin/subl with sublime executable command. So later when we run subl . it will open Sublime Text IDE from current working directory. If you again encounter any issue, then you may nee...