DirectoryComputersBlog Details for "Go2Linux - The Linux Site"

Go2Linux - The Linux Site

Go2Linux - The Linux Site
Linux help, news, tips, how to, security, backup, virtualization and software for your linux, Debian, Ubuntu, CentOS and Fedora
Articles: 1, 2, 3, 4, 5, 6, 7

Articles

Disable scale image in Firefox
2007-12-16 21:46:00
By default Firefox scales images that are bigger than your screen or in fact bigger than the size of Firefox window at the time it is showing the image. If you want to change this default behavior do it this way. In the address bar enter this: about:config Then browse below until you see: browser.enable_automatic_image_resizing double click on it to change the boolean value from true to false, and you are done!.
More About: Desktop , Image , Scale
man pages sections
2007-12-16 20:30:00
When you use man pages, you will notice some numbers at the beginning and at the end of the man page like this: man ls LS(1) User Commands LS(1) NAME ls - list directory contents SYNOPSIS ls [OPTION]... [FILE]... =========================//============== =============== SEE ALSO The full documentation for ls is maintained as a Texinfo manual. If the info and ls programs are properly installed at your site, the com? mand info ls should give you access to the complete manual. ls 5.97 January 2007 LS(1) that number LS(1) indicates the section where man page of LS belongs. the most common sections and what they mean are: Section Contents 1 User Commands 2 System Calls 3 Subroutines 4 Devices 5 File Formats 6 Games 7 Miscellaneous 8 System Administration n New These indicates you also what is the command for, as a...
More About: Pages , Ages
Replace words in a text document using sed
2007-12-16 15:21:00
Introduction to sed, "stream editor", here you will see how to change words in text documents, using a console command line in Linux Sed is a great tool to do a lot of things, the most known use of sed is to change words or strings in text documents, which is we are going to show here. Changing only the first occurrence in a sentence In a given text document we are going to change only the first occurrence of the a given word in each sentence of the text, check this give text. Hi, This is a text document we are going to use to test sed, changing the word text into another word. We are going to supply the other word to sed, and text should be changed to that word In this line I am going to write twice text and text to show you how to change its first occurrence or globally. This text file is saved as text.txt, so issue the command: sed -i 's/text/human/' text.txt The new file is: Hi, This is a human document we are going to use to test sed, changing the word text into another...
More About: Words , Text , Document
Checking the boot messages on Debian
2007-12-16 14:36:00
Sometimes when a machine is booting up with Linux Operating System, some errors appears on the console while booting up, but they just pass too fast for one to read them. Therefore you need look at those messages somewhere else. If you are using Debian , you can enable boot logging so all the messages send to console while booting will also be sent to a file that you can later examine. Note for Ubuntu: Since Feisty, it seems that do not include bootlogd anymore, and the boot messages are now copied to: //var/log/dmesg from kernel's ring buffer, the script that does this is: /etc/init.d/bootmisc.sh To enable this behavior which is off by default edit the file: /etc/default/bootlogd The default content of this file is: # Run bootlogd at startup ? BOOTLOGD_ENABLE=No just change the No to Yes and the bootlogd command will start sending all messages to a file, which by default is: /var/log/boot. You can also check /var/log/dmesg on Debian, or use the dmesg command, when using this com...
More About: Messages , Boot , Mess , Ages
La otra bola de cristal
2007-12-15 16:25:00
A regular visitor of this blog, my friend from Spain Averia started her blog almost three years ago, in that time she was starting with Linux, by now you can find at her blog hundreds of good Linux tips, news, also humor posts, she writes in Spanish, so this is a great site to visit for the Spanish speakers of this blog. Its minimalistic Red and white design looks great! at least for me, so If you speak "Castellano / Espaņol" and like to visit a good Girl's Linux Site go, check. La otra bola de Cris tal and enjoy your visit.
More About: Bola , Crist
Do not know which is the right Linux command you need?
2007-12-15 14:12:00
If you have ever found yourself in the situation of needing to perform an action in Linux , but you are not sure which console command you may need there is a way you can find that command. apropos or man -k are the command that will come to rescue you. The way you can use the is. apropos copy Where copy is the action you want to perform, the output will be something like this. cp (1) - copy files and directories cpgr (8) - copy with locking the given file to the password or group file cpio (1) - copy files to and from archives cppw (8) - copy with locking the given file to the password or group file dd (1) - convert and copy a file debconf-copydb (1) - copy a debconf database install (1) - copy files and set attributes mcopy (1) - copy MSDOS files to/from Unix objcopy (1) - copy and translate object files rcp (1) - secure copy (remote file copy program) scp (1) -...
More About: Command
Debian - Origin of the names -
2007-12-14 16:07:00
The Debian project founded on 1993 by Ian Murdock was named that way because of the three first letters of his wife's name Deborah and his own name Ian Debian. Later on 1996 Bruce Perens took the command of the project, it appears that he worked at that time in Pixar and since that year all the next Debian releases came with a code name of one character of Toy Story sid (The kid who destroys toys) buzz (Buzz Lightyear) Debian 1.1 rex (The T-Rex) Debian 1.2 bo (Bo Peep) Debian 1.3 Hamm Debian 2.0 slink (Slinky the dog) Debian 2.1 potato (Mr. Potato) Debian 2.2 woody (the Cowboy) Debian 3.0 sarge (The Sargent to the green squad) Debian 3.1 Etch Debian 4.1 This info was translated from El Igloo a Spanish blog about Linux, recommended for those who reads Spanish.
More About: Names , Origin
KDE4 use of memory vs KDE3
2007-12-14 13:22:00
There are two stories about the use of memory by KDE4 vs the use of memory of KDE3, they have somehow different information, actually opposite. The two "studies" comes from the same author on its first test, he used KSysguard applications to measure the amount of memory used by both versions of KDE and the results showed that KDE 4 uses 40% less memory than KDE 3, this story is now on Digg and Slashdot. digg Slashdot It is even on reddit, pointing to the slashdot article, well this making everybody think that KDE 4 with composite on uses less memory than KDE 3.5, the same author of the first post, made another one as a correction to the first one, this time he used exmap to measure the memory used by both KDE 4 and KDE 3, this is a really good test, but now it shows that KDE 4 uses more memory than KDE 3. KDE 4 requires more memory. In similar conditions KDE 3 consumed 97 MB on memory, whereas KDE 4 about 170 MB but take into account that KDE4 has composite on, it will be great if s...
More About: Desktop , Memory
Creating Tables with LaTeX
2007-12-12 23:19:00
It is normal the need to add tables into documents, If you are using LaTeX to write your documents this goal can also be achieved in a very simple way. We will have to use the tabular environment. the format for this is: egin{tabular}[pos]{table spec} Where: pos Can be eiter: b = bottom c = center t = top table spec Can either: l = left-justified column c = centered column r = right-justified column p{width} = paragraph column with text vertically aligned at the top m{width} = paragraph column with text vertically aligned in the middle (requires array package) b{width} = paragraph column with text vertically aligned at the bottom (requires array package) | = vertical line || = double vertical line With these tools we can start making tables: egin{center} egin{tabular}{||p{2.5cm}|p{2.5cm}|p{2.5c m}|p{2.5cm}|p{2.5cm}|p{2.5cm}||} hline extbf{Column 1} & extbf{Column 2} & extbf{Column 3} & extbf{Column 4} & extbf{Column 5} & extbf{Column 6} \ hline Linux & is ...
More About: Tables , Creating , Latex
Use OpenOffice on your web-browser
2007-12-12 22:57:00
ulteo who claim to be the the easiest Linux in the world is now offering for beta tester users, the possibility to run Ulteo online on your web-browser, and also use Open Office online, with collaboration tools, so you can send invitations via email to people to collaborate with you while working on a document, Like Google Docs but with the well know Open Office. As well as offering instant 'no-install' access, Ulteo's service also provides OpenOffice.org users with instant collaboration capabilities. A user working with OpenOffice.org on the Ulteo server can invite other people to work with him or her on a shared document in real time. Invitations are sent via email and allow access in either read only or full edit mode, simply by clicking on a link in the email Ulteo, is a good version of Linux Operating System, a project initiated by Gael Duval (Mandrake founder), If you want to see its installation screenshots check them here:Installing Ulteo Linux in six steps You will need ...
More About: Browser , Web Browser , Browse
How to install Graphic Interface - Gnome or KDE - on minimal Debian
2007-12-12 15:13:00
If you ever installed Debian you should know this screen. This appears when you install your Debian Linux operating system from the NetInstall CD, sometimes you may want to select nothing there, and just install the minimum installation. Once your installation is finished, and you want to install some task, like Desktop Environment just call the application again as root: tasksel thats all you need, now select the task you need to install and voila! This is useful in some of the following scenarios. Your CPE modem assigns an IP with DHCP but the DNS it assigns (itself) does not work, (that is my case) so you can finish you base installation, assign a fixed DNS server to your Debian and continue with the installation of the other packages You may want to install Lenny or Sid, so install Etch base system, change the source.list to whatever you need, and once upgraded, continue with the installation of the desired tasks You have no internet connection at that time, and want to insta...
More About: Minimal , Interface , Graphic
Modifying your screen resolution
2007-12-12 12:18:00
Yesterday after an upgrade of my Debian system the resolution of my screen switched to 800x600, I checked my xorg.conf configuration and everything was OK, but fortunately in Linux everything has an easy solution, what I needed to do was: dpkg-reconfigure xserver-xorg and Debian took care of the configurations, after that the option 1024x768 appeared again in my Gnome options.
More About: Screen , Resolution
The new Internet Bubble - The Bubble 2.0 -
2007-12-10 16:32:00
This video appeared in some days ago, it is actually fun, do you think it could be true that we are facing the Bubble 2.0 :) It is not related to Linux in anyway, but I think is o.k. to have some fun and not just work :). Please post your comments. via calabozodelandroide
More About: Internet
Mount an ISO file as a CDROM
2007-12-10 02:05:00
I use this tool a lot as I have lots of ISOs in my Hard Disk, you maybe know it, but for those you don't here it is: Create the directory where your ISO is going to be mounted mkdir /media/ISO Mount your ISO file mount -t iso9660 -o loop image.iso /media/ISO Remember that it is just like a CDROM, so it is a read-only file system, but that is what you need really?
More About: File
The Desktop Battle - Vista and Ubuntu -
2007-12-09 02:51:00
About a week ago, my good friend of PolishLinux posted a thread (Yes it is now a thread, like in a forum) about Ubuntu (Gutsy Gibbon) and Vista (Business Edition), in the battlefield of Desktop Oriented Operating systems. He stated that: It may be a brave opinion but I predict that Ubuntu Linux and Windows Vista are going to be the two operating systems that will take over the largest chunk of the desktop OS market during the next couple of years And then he made a side by side comparison of some aspects he thinks are the most important for the "John Doe" user. I am not going to say if he is right in the final punctuation: Ubuntu 4:2 Vista As I have never used Vista regularly and I have stop using XP some three years ago. (BTW, I am happy I could), but there are two things he is actually right. Ubuntu, and not because it is the best Linux distro (There is no best distro for me) but because all the marketing and money involved, and because they are giving the final user what he want...
More About: Battle
KDE 4 - Which Distro will be the first to Offer KDE 4?
2007-12-09 01:27:00
I am not a KDE user, but used to be, and after seeing so much about KDE4 I am really thinking about start using it again. But the question Beineri ask is. Which Distro will be first to ship KDE4? According to him as soon as it is released lots of distributions will start to offer it, well maybe that will not occur with my favorite Linux Distro (Debian) even though I am using Lenny in my Laptop. Maybe Fedora, Ubuntu, Mandriva, Sabayon and others like those will offer KDE4 as soon as it is available, also CentOS is another issue, theses Systems, Gentoo, CentOS, Debian, which are more focused on stability will not offer KDE 4 as soon as it is available, but others focused on Desktop applications, as I said, Fedora, Ubuntu, Mandriva, will offer it as soon as possible. That is of course my humble opinion.
More About: Offer
Taking Screenshots with Linux
2007-12-08 21:47:00
Find here how to take Screen Shots with Linux , could help you specially if you like to write Linux tutorials If you like to write tutorial, or need a screen shot for any homework or job, the Linux Operating System gives you some very good resources to have this task done. The Gimp With Gimp you have to go to: File->Acquire->Screeshot and you will get a dialog box like this As you see you have three options: Take Screenshot of a singe window: This will make your cursor be a thick cross, and you can select the window to take the screenshot of Take a Screenshot of the entire screen: This will take a screenshot of the entire screen Select a region to grab: This will make the cursor into a cross and you can grab a region of the screen to take a screenshot of it Gnome If you use Gnome you can just press PrtSC (Print Screen) key, this will take a screen shot of the whole screen, you can only choose where to save the screenshot, the size will be the size of you screen, I mean the same r...
More About: How To , Desktop , Screenshots , Taking
Linux: Stable API vs Not? - Linux Drivers in the Kernel -
2007-12-08 14:09:00
Yesterday I got an email from Greg Laden inviting me to read on of his posts on Scienceblogs.com As I am not a programmer, (I am an Electronics Engineer) I do not fully understand how Linux Kernel is made, but reading this gave me an idea about how drivers could be inserted in our Linux, instead of given my point of view about something I do not fully understand, I prefer you to read the article by yourself and post your opinions here if you want to. The two articles (which are related) you may want to read are: Why is Linux better and Linux: Stable API vs Not?
More About: Drivers
Backing up and restoring your thunderbird Data
2007-12-08 00:00:00
This how-to shows you an easy way to backup and then restore your thunderbird data including your emails It is a good idea to backup from time to time your data, and maybe some of our most valuable data now a days are our emails, and email addresses. And yes there are a lot of on-line applications that may take care about that, like plaxo or gmail I prefer to have all that in my PC with my favorite email client which is Thunderbird Today I will show you which steps you need to backup and then restore to the same machine or to another one your Thunderbird data. Depending on which distribution you are using you should have one of these directories: $HOME/.thunderbird or $HOME/.mozilla-thunderbir inside there there is a file called profiles.ini This is the content of mine: [General] StartWithLastProfile=1 [Profile0] Name=default IsRelative=1 Path=llbevfct.default Backing up tar -czf thunderbird_data.tar.gz llbevfct.default/ This will create a file called thunderbird_data.tar.gz wit...
More About: Data , Hunde
Drupal 6.0 Beta 4 released
2007-12-07 12:41:00
Some days later of the Beta 3 release the Beta 4 of Drupal 6.0 has been released, they hope to release the first Release Candidate if no more critical bugs are found on this beta, so, Drupal users please start testing it and reporting bugs. According to Drupal these are the changes and fixes in this new release Changes made since the release of Drupal 6.0 beta 3 include several multilingual support fixes, caching improvements, more clear help texts, drag and drop support for book outlines, user profile administration, taxonomy pages and file uploads, and fixes to node teaser generation. With the right to left version of the pushbutton theme, we also completed RTL support for all core themes. We have also hardened the security of the system, closing potential cross site scripting (XSS) and cross site request forgery (CSRF) security holes. This beta release also includes the security updates released in Drupal 5.4 and 4.7.9 read more here
More About: Released
SourceForge.net Marketplace (for support)
2007-12-07 12:27:00
Yesterday and after some months of beta testing the Sourceforge .net marketplace has been officially opened. But, what is that?, well is a place where both people selling support for specific Open Source projects can meet the people demanding for those services. Each expert is free to open an account, set the prices for his services, and the way he collects the money which may include Paypal, credit, card, check or others. Sourceforget.net is also offering a rating method where both the buyer and the seller can rate the transaction, so when you are going to buy a service you can evaluate the points the expert has, and if he satisfies what you are looking for you can buy him services. Creating a seller account is really easy, and it also gives you the possibility to upload your own contract, or use the default provided by sourceforge.net. So, are looking for support or are you an expert in some of the OpenSource projects? Go to SourceForge.net Marketplace
More About: Support
Free software - Is you Linux 100% Free software?
2007-12-06 14:38:00
If you want to check if all the packages you have installed on your Linux (Debian based) are free software you can use the vrms software to check it. vrms is according to its site: The vrms program will analyze the set of currently-installed packages on a Debian-based system, and report all of the packages from the non-free tree which are currently installed. Installing and using it sudo apt-get install vrms vrms The output on my PC was: fglrx-control Control panel for the ATI graphics accelerators fglrx-driver Video driver for the ATI graphics accelerators fglrx-driver-dev Video driver for the ATI graphics accelerators (devel fglrx-kernel-2.6.18-3-686 ATI binary kernel module for Linux 2.6.18-3-686 fglrx-kernel-src Kernel module source for the ATI graphics accelerators fglrx-sources Source code for the ATI graphics accelerators control opera The Opera Web Browser skype Skype - Take a de...
More About: Software , Free , Free Software
Download Youtube videos with wget
2007-12-06 14:15:00
Here there is an easy way to download Youtube videos using wget. First thing we need is the video ID which we are going to get using also wget together with grep. First locate the page of the video you want to download, I will use for this example one showing compizfusion in action. wget -O /tmp/page.tmp http://www.youtube.com/watch?v=UHvAXLBMWG I Then using cat and grep we will get the video ID cat /tmp/page.tmp | grep video_id= This will be the output var fullscreenUrl = '/watch_fullscreen?video_id=UHvAXLBMWGI&l =51&t=OEgsToPDskKBFLkte03dOnia39Rzd63j&sk =7Ayx8rGROMLJrkh6LkXj7AC&fs=1&title=Compi zFusion'; var relatedVideoGridUrl = '/related_ajax?video_id=UHvAXLBMWGI&view_ type=G&watch3=1&search=compiz%20linux%20u buntu'; var relatedVideoListUrl = '/related_ajax?video_id=UHvAXLBMWGI&view_ type=L&watch3=1&search=compiz%20linux%20u buntu'; Check that you have more than one Video_id, but only the first one is the one we want, check that the others says "relatedVideo", we do not want t...
More About: Videos , Download
Your kernel was built with "gcc" version "4.1", while you are trying to use
2007-12-05 22:12:00
Today I upgraded my Linux from Etch to Lenny, and one of the first things that stop working was vmware-server, actually I did not expect it to work at all. Well to fix that I run ./vmware-config.pl as root This is the error I got: Your kernel was built with "gcc" version "4.1.3", while you are trying to use "/usr/bin/gcc" version "4.2.3". This configuration is not recommended and VMware Server may crash if you'll continue. Please try to use exactly same compiler as one used for building your kernel. Do you want to go with compiler "/usr/bin/gcc" version "4.2.3" anyway? [no] After reading some different ways to fix this problem I found this one, and it worked great. first execute: ls -l /usr/bin/gcc* to see which versions you have installed, this is my output lrwxrwxrwx 1 root root 16 2007-12-05 16:21 /usr/bin/gcc -> /usr/bin/gcc-4.2 -rwxr-xr-x 1 root root 204836 2007-10-19 11:38 /usr/bin/gcc-4.1 -rwxr-xr-x 1 root root 192532 2007-10-14 11:49 /usr/bin/gcc-4.2 -rwxr-xr-x ...
More About: Virtualization , Version , Kernel
Upgrade Debian Etch to Debian Lenny
2007-12-05 15:35:00
Maybe a lot of people already know this, but I will write it down here, in case anyone forget it, or of somebody does not know already. To upgrade the Linux Debian Stable Etch to testing Lenny, just need to follow these two steps. 1. Edit sources.list sudo vi /etc/apt/sources.list and change all words etch for lenny, or stable for testing 2. Update and upgrade sudo apt-get update && apt-get dist-upgrade that is all, this also work if you want to go from lenny to sid, just change your sources.list accordingly. It is also better if you start your Debian Linux in text mode to do this, so GDM or KDM could be restarted without problems.
Hardy Heron Alpha 1 released - Download sites -
2007-12-04 23:00:00
This December 3rd Ubuntu Hardy Heron 8.04 LTS has been released in its Alpha 1 version. This is only intended for testing purposes, and to help the developers find bugs, is not intended for production machines, so do not download to install it as you main system, and back-up your data before installing it. These are the highlights about this version. Xorg 7.3 The latest Xorg is available in alpha1, Xorg 7.3, with an emphasis on better autoconfiguration without config files. Massive merge from Debian As with the beginning of any development cycle, the Hardy one has seen the merge floodgates opened once again. This merge not only brings in lots of new version of various packages, but also a fair number of totally new applications. If you want to help developers with this version, download it from: http://cdimage.ubuntu.com/releases/hardy/ alpha-1/ (Ubuntu) http://cdimage.ubuntu.com/kubuntu/release s/hardy/alpha-1/ (Kubuntu) http://cdimage.ubuntu.com/edubuntu/releas es/hardy/alpha-1/ (Ed...
More About: Download , Sites , Released
Latex - Small Tutorial
2007-12-02 20:45:00
digg_url = 'http://www.go2linux.org/latex-simple-tut orial'; Today I would like to introduce you to the world of TeX, specifically LaTeX. As LaTeX is complex, I have divided this document into these parts Introduction to LaTeX My first LaTeX document Setting LaTeX paper Size and margins Inserting Figures on LaTex Texmaker a cross platform LaTeX front end I will later add more LaTeX tips.
More About: Tutorial , Small , Latex
Moving around your file system (Absolute and relative paths)
2007-11-30 14:04:00
Beside the captain in a ship, the next most important guy is the navigator, because is always important to know where you are in the sea, also in your Linux File System you need to know where you are and how to get where you want to: This is done with some few commands, where some of the most used are ls, pwd, cd Knowing where you are pwd shows you where you are in the directory structure, just type: pwd And you will have an output like this. /home/ggarron/Desktop/borrar/go2linux/102 4 Which means you are in the subdirectory 1024, which is in go2linux subdirectory which is in borrar subdirectory which is Desktop subdirectory which is in ggarron subdirectory and that one is in home and finally home is in the root of the file system. Listing the contents of the directory The ls command is going the help us doing this, these are some of its basic options. ls -R Will list recursively the content of the directory where you are. ls -l Will list the content of the current directory, s...
More About: Moving , File System , Stem
Creating ring tones with Debian Linux
2007-11-28 22:30:00
Now it is really easy to use any MP3 file as ringtone on almost all cell phones, you just need to transfer the song to the phone and make it your default ring tone. But there are two problems with this, at least for me. My phone does not have enough memory to have too much songs Almost all songs start with low volume, and when I finally hear it, the call was droped Well, to solve that, you need to edit the mp3 file and transfer to the phone only the part you want to use as ringtone, and the tool for that is: Audacity, to install it on Debian just run: apt-get install audacity Once installed, open your mp3 file with it, and select the part you want to use. Now to export it as mp3, we need the libmp3lame.so library, on Debian you need to compile it from the source, so download it to /usr/src/lame directory, these are the instructions to install it: cd /usr/src/lame tar xvzf lame-3.97.tar.gz Change to the version you have downloaded ./configure make && make install Now on audaci...
More About: Linux , Creating , Ring , Tones
PhoroLinux
2007-11-28 05:39:00
PhoroLinux is a new site, it started on September this year, and because of its great articles it is growing up in number of readers real fast!. Most of its articles are focused on Ubuntu and on Desktop application, for both KDE and Gnome. Its red on white theme is really nice to eyes. It has lots of screenshots it even has a Screenshots category. We do not know too much about its author as its about page does not say too much, but I think I can not comply about that, my blog does not even has an about page. :). (I will write one). Its most popular post How to install Avant on Ubunt is a good description to have Avant Window Navigator on your Ubuntu Gutsy.
More articles from this author:
1, 2, 3, 4, 5, 6, 7
46796 blogs in the directory.
Statistics resets every week.


Contact | About
© Blog Toplist 2008 - Supported by Web Catalog - SEO by FeWorks
eXTReMe Tracker