Archive

Posts Tagged ‘Linux’

Ubuntu 10.04 LTS – Lucid Lynx

December 1, 2009 azer89 Leave a comment

Canonical founder Mark Shuttleworth announced that Ubuntu 10.04, the next major version of the popular Linux distribution, will be called Lascivious Liger Lucid Lynx. This version is highly significant because it will be offered with long-term support (LTS).

For the Lucid Lynx, the development team will focus their efforts on quality and stability! The main plans are to make Ubuntu 10.04 a bug-free operating system and bring quality improvements to the user interface, boot and installation experience and  top-notch hardware support. Another essential goal for Ubuntu 10.04 LTS (Lucid Lynx) will be to improve the startup speed to a 10 second boot!

Linux Mint 8 – Helena

December 1, 2009 azer89 Leave a comment

Introduction to Linux Mint 8:

The 8th release of Linux Mint comes with numerous bug fixes and a lot of improvements. In particular Linux Mint 8 comes with support for OEM installs, a brand new Upload Manager, the menu now allows you to configure custom places, the update manager now lets you define packages for which you don’t want to receive updates,the software manager now features multiple installation/removal of software and many of the tools’ graphical interfaces were enhanced.

Highlights of Linux Mint 8:

· Based on Ubuntu 9.10;
· Linux kernel 2.6.31;
· EXT4 filesystem;
· X.Org 7.4;
· GNOME 2.28.1;
· Improvements to the Menu;
· Improvements to the software manager;
· Improvements to the update manager;
· New Upload manager tool;
· Lots of bugs fixed.

Read more…

Delete File Recursively In Linux

November 21, 2009 azer89 Leave a comment

Find all files having .bak (*.bak) extension in current directory and remove them:
$ find . -type f -name "*.bak" -exec rm -f {} \;

Find all core files and remove them:
# find / -name core -exec rm -f {} \;

Find all *.bak files in current directory and removes them with confirmation from user:
$ find . -type f -name "*.bak" -exec rm -i {} \;

Linux Mint 7 Video Installation

July 19, 2009 azer89 Leave a comment

linuxmint7logo

Just a video about Linux Mint 7 Installation.

Well, Linux Mint 7 is a great Distro :)

Linux Mint is based on Ubuntu and the two distributions have much in common. Both distributions use the same software repositories. For instance, release 6 (“Felicia”) uses the package pools of Ubuntu “Intrepid Ibex” (8.10). Most packages are the same on both distributions, and as of Linux Mint 6 ‘Felicia’, each Linux Mint release is based on Ubuntu, whereas before they were based on the previous Linux Mint release.

Most differences are on the desktop. Linux Mint has a stated focus on elegance, and it includes a number of applications that are not available in Ubuntu

Moonlight – Open Source Implementation for Silverlight

July 15, 2009 azer89 2 comments

moonlight_logo

What is Moonlight ?

Moonlight is an open source implementation of Silverlight (http://silverlight.net), primarily for Linux and other Unix/X11 based operating systems. In September of 2007, Microsoft and Novell announced a technical collaboration that includes access to Microsoft’s test suites for Silverlight and the distribution of a Media Pack for Linux users that will contain licensed media codecs for video and audio.

I tested it in Linux Mint 7 and it works fine with Silverlight 1.0 website. The bad thing, it not works in Silverlight 2.0 :/

Screenshot-The Official Microsoft Silverlight Site - Mozilla Firefox

Screenshot

Screenshot-1

Next Release ?

Moonlight 2.0 still in Preview Release, this version will be compatible with Silverlight 2.0

Minimum Requirements…

An x86 or x86-64 computer with at least 128 megs of RAM to use Moonlight, Firefox 2.0 or Firefox 3.0.

Links :
http://silverlight.net
http://mono-project.com/Moonlight
http://go-mono.com/moonlight-preview/

EXT4

April 27, 2009 azer89 1 comment

ext4

Ext4 is the evolution of the most used Linux filesystem, Ext3. In many ways, Ext4 is a deeper improvement over Ext3 than Ext3 was over Ext2. Ext3 was mostly about adding journaling to Ext2, but Ext4 modifies important data structures of the filesystem such as the ones destined to store the file data. The result is a filesystem with an improved design, better performance, reliability and features.
Ext4 was released as a functionally complete and stable filesystem in Linux 2.6.28, and it’s getting included in all the modern distros (in some cases as the default fs), so if you are using a modern distro, it’s possible that you already have Ext4 support and you don’t need to modify your system to run Ext4.

Read more…

Ubuntu 9.10: Karmic Koala

April 9, 2009 azer89 1 comment

koala.jpg

“A newborn Koala spends about six months in the family before it heads off into the wild alone. Sounds about perfect for an Ubuntu release plan! I’m looking forward to seeing many of you in Barcelona, and before that, at a Jaunty release party. Till then, cheers.”

Mark Shuttleworth has announced Ubuntu 9.10:

Ladies and gentlemen, allow me to introduce the Karmic Koala, the newest member of our alliterative menagerie.

When you are looking for inspiration beyond the looming Jaunty feature freeze, I hope you’ll think of the Koala, our official mascot for Ubuntu 9.10. And if you’ll bear with me for a minute I’ll set the scene for what we hope to achieve in that time.

Read more…

Super Fast Ubuntu 9.04 Boot Time

April 9, 2009 azer89 Leave a comment

So, how will the end user benefit from this EXT4 filesystem? Well, first of all, the whole system will be much faster and more reliable compared to one with EXT3 , it will boot faster (the current article proves that) and it’s able to handle files with sizes of up to 16 TB (terabytes). But these are just a few of the features brought by the fourth extended filesystem
Read more…

Gutsy Gibbon reaches end of life on April 18th, 2009

April 8, 2009 azer89 Leave a comment

On the 18th of October 2007, Canonical announced the release of Ubuntu 7.10, codename Gutsy Gibbon. Many important features and updates made Ubuntu fans all over the world extremely happy and eager to upgrade. The default desktop environment for Ubuntu (GNOME) reached then a very important milestone: 2.20, bringing a huge list of changes.

Read more…

Samba Tutorial (Part II)

April 8, 2009 azer89 5 comments

What we will do ?

Create a file server using Samba, which is able to record each user whhen  connected or disconnected in a log file.

sample log file below :

time          user   source      ip
2009 01 00:23 umum freeshare 10.126.11.2

This samba server can sharing printer too :D

Read more…