
Paris, January 1st, 2013, 00.00am (Just in Time)
Happy New Year !!
Feliz Año Nuevo !!
Ein Gutes Neues Jahr !!
Bonne Année !!
Onnellista Uutta Vuotta !!
ukkig Nieuwjaar !!
Gott nytt år !!
Felice anno nuovo !!
Godt nytår !!
So, What’s New??
- Linutop OS 5 For Desktop PC, Digital Signage, Secure Internet Access,…
Try it on your own PC!
- Linutop 4, linutop 2 Mini PCs fanless and energy efficient.
- Linutop Kiosk software for digital Signage and Secure Internet access for public location
- Linutop TV : New Digital Signage Service over the web
Save the snow for the penguin: use energy efficient computing solutions!
recycle an old PC with linutop OS (and save money)!
Linutop Team is wishing you a Happy Green Year 2013!
January 1st, 2013 - Posted in Green IT, Linutop OS, Linux, OpenOffice, Press | No Comments »
Even the most basic routers these days offer the NAT feature and firewall capabilities which protect your machines on the local network. But there are situations when you have to connect your Linutop directly to the Internet, or bypass the router’s firewall (for example, if you want to use Linutop as a server accessible from the outside). In this case, a decent firewall tool is essential. The problem is, though, that many firewall applications are not particularly user-friendly and you really have to know what you are doing when configuring them.

If tweaking a firewall via the command line is not your cup of tea, then you’ll appreciate Firestarter, a graphical application which significantly simplifies the process of setting up and configuring a firewall. To install Firestarter, run the sudo apt-get install firestarter command, or use the Synaptic package manager.
Read the rest of this entry »
March 16th, 2009 - Tags: firewall, security
Posted in Linutop, Linux | No Comments »
Being small and silent, Linutop makes a perfect server machine. But installing all the desired server packages such as Apache, MySQL, and ProFTPD manually and then tweaking their settings requires both skills and time. There is, however, a better way to turn your Linutop into a LAMPP (Linux+Apache+MySQL+PHP+Perl) server: the XAMPP solution comes with pretty much everything you need as a single neat package. Better yet, you can install and configure XAMPP in a matter of minutes.
To install XAMPP, download the latest .tar.gz archive from the project’s Web site. Use then the following command to unpack the archive and copy all the components to the /opt directory:
sudo tar xvfz xampp-linux-1.7.tar.gz -C /opt
That’s pretty much it. You can then start all the servers using the sudo /opt/lampp/lampp start command. To make sure that everything works as it’s supposed to, point your browser to http://localhost and you should see XAMPP’s default page.
Read the rest of this entry »
March 11th, 2009 - Posted in Linutop, Linux, Uncategorized | No Comments »
While TiddlyWiki is probably the most popular desktop wiki out there, it’s not the only fish in the sea. And if you don’t fancy TiddlyWiki’s approach to managing content, or you are looking for a desktop wiki that can help you to manage not only your notes but also appointments and contacts, then you might want to try Wiki in a Jar.
Read the rest of this entry »
January 14th, 2009 - Tags: desktop, productivity, wiki
Posted in Linux | 4 Comments »
Although Ubuntu and its derivatives sport powerful command-line and graphical tools for installing software, they can be slightly confusing for Linux newcomers. Enter Appnr, a sleek and user-friendly Web-based service that allows you to easily find the applications you need and install them with a single mouse click.

All applications and utilities listed on Appnr are organized in sections, and you can sort the list of the available software by name or by popularity. Obviously, you can also search for a specific package using the search field. While Appnr provides an easy way to find and install software, you need to tweak your Ubuntu system to make it work. First of all, install the apturl package. To do this, run the following command in the terminal:
sudo apt-get install apturl
Then you have to add the AptURL protocol in your browser. If you are using Firefox, enter about:config in the Location bar. Right-click somewhere on the page and select New –> String.
Enter network.protocol-handler.app.apt as the name of the string, press OK and enter /usr/bin/apturl as the string’s value. In a similar manner, create another string and use network.protocol-handler.app.apt+http and /usr/bin/apturl as the string’s name and value respectively. If you are using another browser, check Appnr’s help page for configuration instructions. That’s all there is to it. You can now browse and install software without leaving the convenience of your browser.
December 12th, 2008 - Tags: apt. installation, software, Ubuntu, xubuntu
Posted in Linux, Uncategorized | 2 Comments »
Machines like Linutop can make a rather neat mini server which you can use to host virtually any application base on the LAMP stack (Linux/Apache/MySQL/PHP). The problem is that turning Linutop (or any machine for that matter) into an application server involves setting up the required servers (e.g., Apache and MySQL), manually modifying configuration files, and tweaking application settings. Fortunately, the BitNami service provides a more straightforward way to install a number of LAMP-based applications on your machine. BitNami offers so-called stacks — a preconfigured bundle containing a specific application, all the required components, and a graphical installer. A list of the available BitNami stacks includes MediaWiki, WordPress, phpBB, Joomla, Drupal, DokuWiki, and other popular Web-based applications. Installing a BitNami stack is as easy as it gets. Fetch the BitNami stack you want and run the downloaded .bin installer in the terminal. For example, if you downloaded the Tracks pack, you can start its installer using the following command:
./bitnami-tracks-x.x-x-linux-installer.bin
The installer then guides you through the setup process. At the end, the installer generates an uninstall script which you can use to easily remove the stack when necessary.

Once installed, you can start, stop, and restart the stack using the ctlscript.sh in the tracks-x.x-x directory, for example:
./ctlscript.sh start
./ctlscript.sh stop
./ctlscript.sh restart
You can access the running application by pointing your browser to http://localhost:8080/tracks/. Besides being easy to install and deploy, BitNami offers other advantages. Since each BitNami stack installs as a self-contained application, you can have multiple instances of the same stack installed on a single machine. The installed stack doesn’t affect other services running on the machine, so you can still run separate Apache or MySQL servers without interfering with the BitNami stack, provided they don’t attempt to run on the same ports.
December 10th, 2008 - Tags: apache, lamp, Linux, mysql, servers, webapps
Posted in Linux | 3 Comments »
I’ve heard that Linux is for geeks. Is that true?
Not at all. It might have been the case a decade ago, but today you’ll find many beginner-friendly Linux distributions. They use graphical desktop environments like KDE, Gnome, or Xfce that don’t require any particular skills beyond point-and-click. In fact, there is even a book with that title.
Linux distributions, KDE, Gnome, Xfce? I’m confused!
OK, let’s start from the very beginning. Linux is an operating system that manages your hardware and allows you to perform basic operations using the bundled tools. The base system is too technical for most users, so on top of it often sits a so-called graphical desktop environment that shields you from the complexity of the underlying system. The most popular graphical desktop environments include KDE, Gnome, and Xfce. Installing the Linux system on your machine, then adding a desktop environment, and finally installing the applications you need sounds like a laborious and time consuming process. Fortunately, you can get everything you need in one neat package called a Linux distribution. A typical Linux distribution (or distro) comes with one or several graphical desktop environments, a user friendly-installer, and a collection of utilities that can help you to configure your system. Often a Linux distro uses a specific graphical desktop environment as its default. For example, Ubuntu prefers Gnome, while Mandriva favors KDE. Virtually every Linux distribution comes with configuration tools that can help you to set up your computer. Using them, you can tweak your desktop’s appearance, connect to a printer, configure a network connection, etc. Moreover, any distro worth its salt comes with an assortment of applications, so you can use your computer for pretty much any task — from browsing the Web to editing your photos — right out of the box.
Read the rest of this entry »
December 5th, 2008 - Tags: beginners, Linux
Posted in Linux | 2 Comments »
If you usually work on several machines (e.g., a desktop machine at home and a notebook on the move), the Dropbox service can help you to keep your files and documents in sync with minimum fuss. For example, I use Dropbox to keep documents on my Linutop in sync with my Eee PC. That’s all fine and dandy, but if you visit the project’s download page, you’ll discover that the packaged version of Dropbox is available only for a handful of distros. You can compile Dropbox on your system using the provided source code package, but there is an easier way to make the software work with your particular distro. First, head to Dropbox’s forums, grab the latest build (0.6.427 at the writing moment), and unpack it into your home directory. The result should be a hidden .dropbox-dist directory. Now launch the terminal and run the following command:
~/.dropbox-dist/dropboxd
This launches Dropbox and starts the registration wizard. Follow the instructions to link the machine to your Dropbox account, and you are all set. While the described technique allows you to install Dropbox on virtually any Linux distro without going through the rigmarole of compiling the software, it does have one drawback: it doesn’t add status icons to files and directories. But that’s a small price to pay for the sheer convenience of the described installation method.
December 3rd, 2008 - Tags: dropbox, synchronization
Posted in Linux | 5 Comments »