Download Linux Free

Gwibber Linux microblogging and Twitter

August 14, 2009 by admin · Leave a Comment
Filed under: Software Reviews 

One of the latest contenders in the Linux arena is Gwibber. It is an open source microblogging client for GNOME developed with Python and GTK. The program supports , , , Pownce, Identi.ca and other popular services.

Gwibber Client

Gwibber Client

But then let’s face it, ’s not the only micro-blogging platform out there, and it’s definitely not the only program that lets you have status updates. That’s why having a -only client doesn’t really make a whole lot of sense. I was using Twitux before, but since then I joined a fully open-source micro-blogging platform called Identi.ca. Probably by virtue of being open-source software, it has a large Linux-user population, so I had to join. And Twitux doesn’t work with it. Enter Gwibber.

Gwibber is a status-update client for a lot of services. I’m just using it for and Identi.ca, but it also works for Digg, , , Pownce, and . It’s actively developed, and the developer (Ryan Paul of ) seems to be listening to user input, so that’s definitely a plus.

Right now, though, I just really like its flexibility. It uses WebKit for rendering, so it can get pretty fancy. Take a look at the screenshot below. I configured it to use dark blue for Identi.ca updates and light blue for updates, so they match each site’s theme. You can pick whatever color you want for each, but I thought it was easier to remember this way.

Please note, though, that Gwibber is still in Alpha. I haven’t noticed any issues with it, but being alpha software does mean there are big changes happening fairly often. I think duplicate detection was added last week. I’m with everyone that’s requesting a “Replies” tab. Ryan says he’ll make it a priority.

Delete files by age on Linux

August 14, 2009 by admin · Leave a Comment
Filed under: Linux Guides 

Often it might be necessary to remove files older than a certain age on a Linux machine. This uses the bash programming language which is native to most Linux distributions. It can be run on a regular basis by scheduling it with the , or run once to clean out old files. The time variable can be changed to suit the user’s needs, more examples can be found at the Save Lono software engineering help site.

This script removes every *.wav file older then one minute in the directory it is executed. This script is very useful and can be used with the cron daemon for regular file removal.

#!/bin/bash

find ./*.wav -type f -mmin +1 -exec rm {} \;

Also we can adjust this for days rather than minutes by changing ‘-mmin +1′ to ‘-mtime +10′. This would delete .wav files in the working directory that were older than 10 days.

More Information
provided by SaveLono.com
http://www.savelono.com/

NEC, Panasonic and Motorola release phones using LiMo Linux

August 13, 2009 by admin · Leave a Comment
Filed under: Linux Mobile 

More phones have been released by NEC, and that employ the . These phones seem to be more feature phone than smartphone. The market for software platforms on cellphones is led by Nokia’s operating system, but it has lost much ground over the last year to Apple and BlackBerry maker Research in Motion Ltd.

limo-linux-phones

Computer operating system Linux has had the most success with servers sofar, but its role is increasing with the platform and Google is using Linux for its Android platform.

Linux is the most popular type of free or so-called open source computer operating system available to the public to be used, revised and shared. Linux suppliers earn money selling improvements and technical services and Linux competes directly with Microsoft Corp, which charges for its Windows software and opposes freely sharing its code.

A feature phone, at least by my definition, may have a number of very exciting features, but you cannot add functionality to your phone by installing apps, other than what someone may have written in Java. Those type of apps are usually games. A would be based on a platform that is intended to be expanded with third party apps, can sync with the cloud and has a rich set of development tools for developers.

also said Japanese mobile carrier KDDI Corp and touch screen company Immersion Corp had joined the not-for-profit foundation. But has been missing support from the largest cellphone vendors. So far smaller phone makers NEC, and Inc have unveiled in total 42 phones using its software. At the same time, all the top handset vendors, except Nokia, have promised to produce phone models running Android software.

The world’s second- and third-largest cellphone vendors, Electronics Co Ltd and LG Electronics Inc, are members of , but have not unveiled commercial models.

hopes to benefit from its focus on giving greater say over software development to telecommunications operators. Its key members — Vodafone Group Plc, France Telecom SA’s Orange, Japan’s NTT DoCoMo Inc, South Korea’s SK Telecom Co Ltd, SA and U.S. operator Verizon Wireless, a venture between Verizon Communications In and Vodafone — have pledged to introduce phones in 2009.

Play Windows games on Linux with Wine emulation

July 21, 2009 by admin · Leave a Comment
Filed under: Software Reviews 

Wine is a program that allows windows games to be played on linux. Supported titles include World of Warcraft, Eve Online, and many more. It creates a special environment for the game
http://www.winehq.org/

Wine is a translation layer (a program loader) capable of running Windows applications on Linux and other POSIX compatible operating systems. Windows programs running in Wine act as native programs would, running without the performance or memory usage penalties of an emulator, with a similar look and feel to other applications on your desktop.

Wine Emulator

The Wine project started in 1993 as a way to support running Windows 3.1 programs on Linux. Bob Amstadt was the original coordinator, but turned it over fairly early on to Alexandre Julliard, who has run it ever since. Over the years, ports for other Unixes have been added, along with support for Win32 as Win32 applications became popular.

  • Wine makes it possible to take advantage of all the Unix strong points (stability, flexibility, remote administration) while still using the Windows applications you depend on.
  • Unix has always made it possible to write powerful scripts. Wine makes it possible to call Windows applications from scripts that can also leverage the Unix environment to its full extent.
  • Wine makes it possible to access Windows applications remotely, even if they are a few thousand miles away.
  • Wine makes it economical to use thin clients: simply install Wine on a Linux server, and voila, you can access these Windows applications from any X terminal.
  • Wine can also be used to make existing Windows applications available on the Web by using VNC and its Java client.
  • Wine is , so you can extend it to suit your needs or have one of many companies do it for you.