does not generate heat, so almost all the energy used is used to
generate light. Therefore it is "green". So, if you want to have this nice flashlight
Click below http://l.g2lx.co/ggnXbwThis article was first posted on Guillermo's opinions
Click below http://l.g2lx.co/ggnXbwIt is more than an hour with no Skype service, it seems that is not a full service down but a big part o it!
According to some numbers some 8 million users are not able to use the service at this moment, count me into those.
Follow @Skype on twitter for updates, by the time of this writing this was their last update.
Some of you may have problems signing in to Skype – we’re investigating, and we’re sorry for the disruption to your conversations
I like all about automation, and who no?. How about automatically run commands when you logout from a shell session in Linux.
You can use this to erase temp files you may have use during your session, or anything you may want to execute each time you logout from your Linux Operating system. The .logout file
If you are using tcsh you can use the .logout file, where you can write all the commands you want to be executed at logout…
Click the title to see the rest
Read more: http://l.g2lx.co/hjYPAr
2010-12-11 12:33:02-05#
If you need to run any program or command, and then leave the shell session or ssh session, but be sure to leave the command running behind you, then you can use setsid.
I know you are going to mention screen and nohup, and yes they are maybe better options, but setsid is another option.
setsid creates a new session id for the command you run using it, so it does not deppend on your shell session, therefore if that shell session…
Click the title to see the rest
Read more: http://l.g2lx.co/fEvHNb
Linux’s runlevels are:
From Wikipedia:
The term runlevel refers to a mode of operation in one of the computer operating systems that implement Unix System V-style initialization. Conventionally, seven runlevels exist, numbered from zero to six; though up to ten, from zero to nine, may be used.
Depending on your distribution runlevels may differ Whick runlevel am I in?
So, to find out which runlevel are you In just…
Click the title to see the rest
Read more: http://l.g2lx.co/dKsHXW
Ping is really useful, when you want to diagnose a network, to be sure you are able to reach a given computer, the good thing about ping is that it lets you know that both ways uplink and downlink are working.
Ping works by sending a package from the originating computer to the receiving one, once it reach the receiving computer, that “computer” (better call it device), respond with a similar message.
That way you are…
Click the title to see the rest
Read more: http://l.g2lx.co/e4ossV
We all sometimes needs to encrypt files, but if you are just encrypting text files, there are easier options. One of them is vi or vim.
I’m a fan of vim and it is my favorite text editor, it can encrypt files, check spelling, etc.
We’ll now learn how to encrypt files using vim or vi. How to encrypt text files with vim/vi
Encrypt a file using Linux vi / vim, is easy just use the -x option when you create the file. vim…
Click the title to see the rest
Read more: http://l.g2lx.co/eAnoF3
Debugging is an important part of programming in any language, and so it is the same for Bash, one of the most easy way to debug is to run the program line by line.
This way you can check what is happening with each line, and you can then find where is the error. Debugging shell scripts
If you are using bash, you can debug using this command bash -x
This way bash will print each line and then execute it, this…
Click the title to see the rest
Read more: http://l.g2lx.co/i5A9O4
There are times when you need to compile software from sources, maybe because you need to compile the package with some specific option that is not enabled in the default package.
Do that in Debian is really easy. Compile software from sources in Debian
Fetch the dependencies
The first thing you need, is to be sure that your Linux has all dependencies installed, so run: apt-get update
Then, apt-get build-dep htop
I’m…
Click the title to see the rest
Read more: http://l.g2lx.co/gElazW
You all may have read about delicious these days.
I hope it can be saved
I'm not a good camera man but this is just a test anyway :)
How to block, lock, or deny access to a user into Linux
If you need to block a user and do not allow him / her to log into your Linux system, maybe because she is a user who stopped working at your organization, or because she was moved to other department, or any other reason.
I’m going to show how to do it temporarily as to do it permanent you just need to erase the user account.
Nginx | Create custom 404 page not found error page
I’m working with Nginx since more than a year ago, it is an extremely fast web server, specially to work in front of Apache serving static content.
Well, if you need to customize your 404 (file not found) error page in Nginx, you are in the right place.
How to find which process is eating RAM in Linux
If you are running out of RAM on your Linux system, you will want to find the culprit in order to solve the problem, either by reconfiguring the RAM-hungry application or by stopping it.
sudoers file, is one of the most visited articles at Go2Linux.org, so I’m going to expand a little bit that article, by adding this small tips about sudoers file and sudo command.
How to share files and printers with samba Linux for Windows
Sharing files and printers with Windows machines is something that sooner or later you will have to do. If you are using Linux as you only operating system, you really a great chance to have to share something with the windows universe, unfortunately they are more than us.
But do not worry Samba is here to save you.
We will see here a simple yet effective samba configuration file, that will give you a good idea about how it works, and how you can share files and printers between Linux and Windows.
How to install Linux Kernel headers on Debian or Ubuntu
Since a long time not using it I tried to use VMware again today with my Debian Squeeze, and as the kernel have been upgraded, I had to reconfigure it by running
/usr/bin/vmware-config.pl
But it could not run, because of I had no kernel headers, it complained, saying this:
VirtualBox dlopen(“/usr/lib/virtualbox/VirtualBox.so”,) failed: /usr/lib/libGL.so.1
I have installed VirtualBox on Debian Squeeze and, once installed, when I tried to run it, I got this error:
Linux crontab, cronjob Syntax, How to and tips
Cron is a time-based job scheduler in Unix-like computer operating systems. The name cron comes from the word “chronos”, Greek for “time”.1 Cron enables users to schedule jobs (commands or shell scripts) to run periodically at certain times or dates. It is commonly used to automate system maintenance or administration, though its general-purpose nature means that it can be used for other purposes, such as connecting to the Internet and downloading email
Cron is driven by a crontab (cron table) file, a configuration file that specifies shell commands to run periodically on a given schedule. The crontab files are stored where the lists of jobs and other instructions to the cron daemon are kept. Users can have their own individual crontab files and often there is a system wide crontab file (usually in /etc or a subdirectory of /etc) which only system administrators can edit.
How to change banner / welcome message, ssh server shows at login time.
Opensshd has a nice feature, that lets you present a welcome message to users who are login in to the Linux server. This feature is useful if you need to present a warning or any other message to users before they log into the system.
How to execute commands when you log out .logout file
I like all about automation, and who no?. How about automatically run commands when you logout from a shell session in Linux.
You can use this to erase temp files you may have use during your session, or anything you may want to execute each time you logout from your Linux Operating system.
setsid how to keep commands running after you exit shell prompt
If you need to run any program or command, and then leave the shell session or ssh session, but be sure to leave the command running behind you, then you can use setsid.
Via: http://www.flickr.com/photos/oliviabellphotography/
via: http://www.flickr.com/photos/oliviabellphotography/SAN FRANCISCO, December 6, 2010: The Linux Foundation, the nonprofit organization dedicated to accelerating the growth of Linux, today announced that Huawei, a leader in providing next-generation telecommunications network solutions for operators around the world, has become its newest member.
Being recognized as one of the world’s most innovative companies, Huawei is using Linux to develop network equipment and devices and sees its Linux Foundation membership as an opportunity to collaborate with a worldwide network of developers, users and vendors to advance that work.
“Linux is providing companies with the opportunity to accelerate technology efforts,” said Jim Zemlin, executive director of The Linux Foundation. “As a leading telecom company, Huawei will bring important perspective to The Linux Foundation as Linux grows in its ubiquity across mobile devices and telecom infrastructure.”
“The Linux Foundation is engaged in worldwide promotion of the free and open Linux operating system,” said Mr. He XiaoXiang, Vice President of Central R&D, Huawei. “The Linux Foundation is leading the global technology development and technological progress. Huawei supports its advocacy of Linux standardization, looks forward to making a global contribution to Linux, and promotes Linux in the world telecommunications market space and the overall success.”
In recent years, world-leading companies, Huawei included, have played an increasingly important role in Linux. A large number of developers have contributed to Linux kernel development, and Linux has been widely used in various industries because of its open architecture, stability and performance.
Source: Linux Foundation
White Noise FM is an online radio broadcasting white noise, a sound known to improve concentration by covering background noise. It also helps relaxation, and can aid people to sleep. Although we’re focusing on white noise at the moment, we have plans to add more colored sounds to our programs in the future : pink noise, brown noise, and grey noise. We aim to become a fully featured white noise generator!
Good if you just want to sleep :).
Check White Noise radio
Wow! as time pass, I realize more and more how easy is to blog thanks to Posterous.
You just need to know nothing but send emails, you can do it from any platform, and you can do it from any place.
You can autopost to any other places you may want, like this post is automatically going to my: tumblr, wordpress blog and blogger.
Now, the only problem is just to have ideas to post about :). That is what the most of us lack of.