<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:blogger='http://schemas.google.com/blogger/2008' xmlns:georss='http://www.georss.org/georss' xmlns:gd="http://schemas.google.com/g/2005" xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-3731923312219132020</id><updated>2026-05-23T06:47:09.471-07:00</updated><category term="Ubuntu"/><category term="Linux"/><category term="Tutorial"/><category term="Software"/><category term="Customization"/><category term="News"/><category term="Windows"/><category term="Arch Linux"/><category term="Debian"/><category term="Games"/><category term="Joke"/><category term="Repository"/><category term="64-bit"/><category term="Distribution"/><category term="Fedora"/><category term="Flash"/><category term="Gimp"/><category term="Hardware"/><category term="Java"/><category term="Music"/><category term="Shockwave"/><category term="Terminal"/><category term="Tip"/><category term="alsa"/><category term="dhcp"/><category term="intel"/><category term="karmic"/><category term="pidgin"/><category term="server"/><category term="sound card"/><title type='text'>Linux Inside</title><subtitle type='html'></subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='https://linuxinside.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/3731923312219132020/posts/default'/><link rel='alternate' type='text/html' href='https://linuxinside.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><link rel='next' type='application/atom+xml' href='https://www.blogger.com/feeds/3731923312219132020/posts/default?start-index=26&amp;max-results=25'/><author><name>Unknown</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>72</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-3731923312219132020.post-1243991963066907074</id><published>2012-01-17T12:27:00.000-08:00</published><updated>2012-01-17T12:27:30.138-08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Debian"/><category scheme="http://www.blogger.com/atom/ns#" term="dhcp"/><category scheme="http://www.blogger.com/atom/ns#" term="Linux"/><category scheme="http://www.blogger.com/atom/ns#" term="server"/><title type='text'>Configure a DHCP server (debian)</title><content type='html'>&lt;br /&gt;
Installing dhcp server:&lt;br /&gt;
&lt;b&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: &#39;Courier New&#39;,Courier,monospace;&quot;&gt;# apt-get install isc-dhcp-server&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
Define a static IP for the server&lt;br /&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: &#39;Courier New&#39;,Courier,monospace;&quot;&gt;&lt;b&gt;# nano /etc/network/interfaces&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;color: #999999;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: &#39;Courier New&#39;,Courier,monospace;&quot;&gt;auto eth0&lt;br /&gt;iface eth0 inet static&lt;br /&gt;address 192.168.0.2 # server&#39;s IP address&lt;br /&gt;netmask 255.255.255.0&lt;br /&gt;network 192.168.0.0&lt;br /&gt;broadcast 192.168.1.255&lt;br /&gt;gateway 192.168.0.1 #router&#39;s IP address&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
Configure DHCP server settings at /etc/dhcp/dhcpd.conf&lt;br /&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: &#39;Courier New&#39;,Courier,monospace;&quot;&gt;&lt;b&gt;# nano /etc/dhcp/dhcpd.conf&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;color: #999999;&quot;&gt;default-lease-time 600;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;div&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: &#39;Courier New&#39;,Courier,monospace;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;color: #999999;&quot;&gt;&lt;br /&gt;max-lease-time 7200;&lt;br /&gt;option domain-name-servers 192.168.1.1, 192.168.1.2;&lt;br /&gt;option domain-name &quot;yourdomainname.com&quot;;&lt;br /&gt;&lt;br /&gt;subnet 192.168.0.0 netmask 255.255.255.0 {&lt;br /&gt;range 192.168.0.150 192.168.0.200; #Range of client&#39;s IP addresses: 150 to 200&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: &#39;Courier New&#39;,Courier,monospace;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;color: #999999;&quot;&gt;option subnet-mask 255.255.255.0;&lt;br /&gt;option broadcast-address 192.168.0.255;&lt;br /&gt;option routers 192.168.0.1;&lt;br /&gt;}&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
Restart dhcp-server&lt;/div&gt;
&lt;div&gt;
&lt;b&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: &#39;Courier New&#39;,Courier,monospace;&quot;&gt;# /etc/init.d/isc-dhcp-server restart&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
Restart eth0&lt;/div&gt;
&lt;div&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: &#39;Courier New&#39;,Courier,monospace;&quot;&gt;&lt;b&gt;#ifdown eth0&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: &#39;Courier New&#39;,Courier,monospace;&quot;&gt;&lt;b&gt;#ifup eth0&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
Links:&lt;br /&gt;
http://wiki.debian.org/DHCP_Server&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='https://linuxinside.blogspot.com/feeds/1243991963066907074/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://www.blogger.com/comment/fullpage/post/3731923312219132020/1243991963066907074?isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='https://www.blogger.com/feeds/3731923312219132020/posts/default/1243991963066907074'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/3731923312219132020/posts/default/1243991963066907074'/><link rel='alternate' type='text/html' href='https://linuxinside.blogspot.com/2012/01/configure-dhcp-server-debian_17.html' title='Configure a DHCP server (debian)'/><author><name>Unknown</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3731923312219132020.post-3235684954766372290</id><published>2009-11-17T07:54:00.000-08:00</published><updated>2009-11-17T08:52:53.940-08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="alsa"/><category scheme="http://www.blogger.com/atom/ns#" term="intel"/><category scheme="http://www.blogger.com/atom/ns#" term="karmic"/><category scheme="http://www.blogger.com/atom/ns#" term="sound card"/><category scheme="http://www.blogger.com/atom/ns#" term="Tutorial"/><category scheme="http://www.blogger.com/atom/ns#" term="Ubuntu"/><title type='text'>Ubuntu 9.10 can not recognize intel sound card</title><content type='html'>At my LG P1 with an Intel sound card (&lt;i&gt;Realtek&lt;/i&gt; ALC888 &lt;i&gt;Intel&lt;/i&gt; 82801), after upgrading to Ubuntu 9.10 Karmic Koala, i had no sound.&lt;br /&gt;
The sound card wasn&#39;t even detected!&lt;br /&gt;
&lt;br /&gt;
After running Google for a FEW hours, i discovered how to put the sound working without had to:&lt;br /&gt;
qaz@blue:~$ sudo alsa force-reload&lt;br /&gt;
or any other command.&lt;br /&gt;
&lt;br /&gt;
Step1:&lt;br /&gt;
$ sudo apt-get remove sl-modem-daemon&lt;br /&gt;
Step2:&lt;br /&gt;
$ sudo apt-get install linux-backports-modules-alsa-karmic-generic&lt;br /&gt;
Step3:&lt;br /&gt;
$ sudo gedit /etc/modprobe.d/alsa-base&lt;br /&gt;
And add:&lt;br /&gt;
options snd-hda-intel model=&lt;span style=&quot;color: #cc0000;&quot;&gt;lg&lt;/span&gt; # for other brands: search google with &quot;options snd-hda-intel model=&quot;; try &lt;span style=&quot;color: #cc0000;&quot;&gt;laptop&lt;/span&gt;; And/or visit &lt;a href=&quot;http://ubuntuforums.org/showthread.php?t=314383&quot;&gt;this&lt;/a&gt; page.&lt;br /&gt;
Then reboot!&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;span style=&quot;font-size: 85%; font-style: italic;&quot;&gt;Tags:&lt;br /&gt;
qaz@blue:~$ lspci&lt;br /&gt;
(...)&lt;br /&gt;
00:1e.0 PCI bridge: Intel Corporation 82801 Mobile PCI Bridge (rev e2)&lt;br /&gt;
00:1f.0 ISA bridge: Intel Corporation 82801GBM (ICH7-M) LPC Interface Bridge (rev 02)&lt;br /&gt;
00:1f.1 IDE interface: Intel Corporation 82801G (ICH7 Family) IDE Controller (rev 02)&lt;br /&gt;
00:1f.3 SMBus: Intel Corporation 82801G (ICH7 Family) SMBus Controller (rev 02)&lt;br /&gt;
(...)&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;span style=&quot;font-size: 85%; font-style: italic;&quot;&gt;qaz@blue:~$ aplay -l&lt;br /&gt;
**** List of PLAYBACK Hardware Devices ****&lt;br /&gt;
card 0: Intel [HDA Intel], device 0: ALC880 Analog [ALC880 Analog]&lt;br /&gt;
&amp;nbsp; Subdevices: 0/1&lt;br /&gt;
&amp;nbsp; Subdevice #0: subdevice #0&lt;br /&gt;
card 0: Intel [HDA Intel], device 1: ALC880 Digital [ALC880 Digital]&lt;br /&gt;
&amp;nbsp; Subdevices: 1/1&lt;br /&gt;
&amp;nbsp; Subdevice #0: subdevice #0&lt;br /&gt;
card 0: Intel [HDA Intel], device 6: Si3054 Modem [Si3054 Modem]&lt;br /&gt;
&amp;nbsp; Subdevices: 1/1&lt;br /&gt;
&amp;nbsp; Subdevice #0: subdevice #0&lt;br /&gt;
&amp;nbsp;&lt;/span&gt;&lt;br /&gt;
&lt;div style=&quot;text-align: right;&quot;&gt;&lt;a href=&quot;http://www.mail-archive.com/ubuntu-bugs@lists.ubuntu.com/msg1846922.html&quot;&gt;via&lt;/a&gt;&lt;br /&gt;
&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='https://linuxinside.blogspot.com/feeds/3235684954766372290/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://www.blogger.com/comment/fullpage/post/3731923312219132020/3235684954766372290?isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='https://www.blogger.com/feeds/3731923312219132020/posts/default/3235684954766372290'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/3731923312219132020/posts/default/3235684954766372290'/><link rel='alternate' type='text/html' href='https://linuxinside.blogspot.com/2009/11/ubuntu-910-can-not-recognize-intel.html' title='Ubuntu 9.10 can not recognize intel sound card'/><author><name>Unknown</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3731923312219132020.post-8164684867676282696</id><published>2009-10-05T07:51:00.001-07:00</published><updated>2009-12-13T06:09:35.412-08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Joke"/><title type='text'>Surgery</title><content type='html'>&lt;img src=&quot;http://img524.imageshack.us/img524/5389/surgery.png&quot; height=&quot;124&quot; width=&quot;480&quot; /&gt;&lt;br /&gt;&lt;br /&gt;via &lt;a href=&quot;http://xkcd.com/644/&quot;&gt;xkcd&lt;/a&gt;.</content><link rel='replies' type='application/atom+xml' href='https://linuxinside.blogspot.com/feeds/8164684867676282696/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://www.blogger.com/comment/fullpage/post/3731923312219132020/8164684867676282696?isPopup=true' title='5 Comments'/><link rel='edit' type='application/atom+xml' href='https://www.blogger.com/feeds/3731923312219132020/posts/default/8164684867676282696'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/3731923312219132020/posts/default/8164684867676282696'/><link rel='alternate' type='text/html' href='https://linuxinside.blogspot.com/2009/10/blog-post.html' title='Surgery'/><author><name>Unknown</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>5</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3731923312219132020.post-3559387012888827065</id><published>2009-08-28T14:00:00.000-07:00</published><updated>2009-08-28T14:20:53.168-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Gimp"/><category scheme="http://www.blogger.com/atom/ns#" term="Ubuntu"/><title type='text'>Open RAW (.cr2) images with Gimp</title><content type='html'>I have a Canon 400D, and today i tried to take some pictures and experiment some &lt;a href=&quot;http://en.wikipedia.org/wiki/High_dynamic_range_imaging&quot;&gt;HDR&lt;/a&gt; effects on them. I took some pictures in RAW mode, with -2EV, 0EV and +2EV. Uploaded it to PC and boom! Gimp (or any other program) can&#39;t open CR2 files...&lt;br /&gt;&lt;br /&gt;How to open *.cr2 files at Linux? Simple: install ufraw:&lt;br /&gt;&lt;pre&gt;sudo apt-get install ufraw gimp-ufraw&lt;/pre&gt;&lt;br /&gt;Now, open ufraw (press ALT+F2 and type ufraw) and load the cr2 image. Then in the right bottom click at the Gimp button. Gimp will be launched and loads you image.&lt;br /&gt;&lt;br /&gt;If you&#39;re interred on HDR effects, try qtpfsgui.</content><link rel='replies' type='application/atom+xml' href='https://linuxinside.blogspot.com/feeds/3559387012888827065/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://www.blogger.com/comment/fullpage/post/3731923312219132020/3559387012888827065?isPopup=true' title='6 Comments'/><link rel='edit' type='application/atom+xml' href='https://www.blogger.com/feeds/3731923312219132020/posts/default/3559387012888827065'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/3731923312219132020/posts/default/3559387012888827065'/><link rel='alternate' type='text/html' href='https://linuxinside.blogspot.com/2009/08/open-raw-cr2-images-with-gimp.html' title='Open RAW (.cr2) images with Gimp'/><author><name>Unknown</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>6</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3731923312219132020.post-2790632857991530396</id><published>2008-09-17T13:25:00.000-07:00</published><updated>2008-10-28T14:15:54.869-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Linux"/><category scheme="http://www.blogger.com/atom/ns#" term="Music"/><category scheme="http://www.blogger.com/atom/ns#" term="Software"/><category scheme="http://www.blogger.com/atom/ns#" term="Tutorial"/><title type='text'>MPD: Music Player Daemon</title><content type='html'>&lt;strong&gt;&lt;em&gt;About:&lt;/em&gt;&lt;/strong&gt; &lt;blockquote&gt; &lt;p style=&quot;text-align: justify;&quot;&gt;Music Player Daemon (&lt;strong&gt;MPD&lt;/strong&gt;) allows remote access for playing music (MP3, &lt;a href=&quot;http://www.vorbis.com/&quot;&gt;Ogg Vorbis&lt;/a&gt;, &lt;a href=&quot;http://flac.sourceforge.net/&quot;&gt;FLAC&lt;/a&gt;, AAC, Mod, and wave files) and managing playlists. MPD is designed for integrating a computer into a stereo system that provides control for music playback over a local network. It also makes a great desktop music player, especially if you are a &lt;a href=&quot;http://www.musicpd.org/mpc.shtml&quot;&gt;console&lt;/a&gt; junkie, like frontend &lt;a href=&quot;http://www.musicpd.org/clients.shtml&quot;&gt;options&lt;/a&gt;, or restart X often.&lt;/p&gt; &lt;/blockquote&gt; &lt;p style=&quot;text-align: right;&quot;&gt;@ &lt;a href=&quot;http://www.musicpd.org/&quot; target=&quot;_blank&quot;&gt;MPD homepage&lt;/a&gt;&lt;/p&gt; &lt;p style=&quot;text-align: justify;&quot;&gt;&lt;strong&gt;&lt;em&gt;Overview:&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt; &lt;p style=&quot;text-align: justify;&quot;&gt;I wont explain what it is - everyone knows it&#39;s a media player - ops i just did it.&lt;br /&gt;I&#39;m here to show you how to install it. It can be a little bit confusing.&lt;br /&gt;&lt;/p&gt; &lt;p style=&quot;text-align: justify;&quot;&gt; &lt;/p&gt;&lt;p style=&quot;text-align: justify;&quot;&gt;&lt;strong&gt;&lt;em&gt;Installation/Configuration:&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt; &lt;p style=&quot;text-align: justify;&quot;&gt;&lt;code&gt;# apt-get install mpd sonata&lt;/code&gt;&lt;br /&gt;Now, the hard tash. It&#39;s necessary to configure &lt;strong&gt;mpd&lt;/strong&gt; before any use of it.  To start, edit the file &lt;span style=&quot;font-weight: bold; font-style: italic;&quot;&gt;/etc/mpd.conf&lt;/span&gt;. I recomend to make a backup copy just in case.&lt;br /&gt;&lt;code&gt;# cp /etc/mpd.conf /etc/mpd.conf.backup&lt;br /&gt;# nano /etc/mpd.conf&lt;/code&gt;&lt;/p&gt; &lt;ol&gt;&lt;li style=&quot;text-align: justify;&quot;&gt;&lt;em&gt;&lt;strong&gt;REQUIRED PATHS &amp;amp; OPTIONAL PATHS&lt;br /&gt;&lt;/strong&gt;&lt;/em&gt;In this step it&#39;s necessary to configure the respective directories where are locatedyour music files. In the field  &lt;strong&gt;music_directory&lt;/strong&gt; add your music&#39;s directorie (it&#39;s only to possible to add one) and in the rest cpy the exemple.&lt;br /&gt;&lt;code&gt;######################## REQUIRED PATHS ########################&lt;br /&gt;# You can put symlinks in here, if you like. Make sure that&lt;br /&gt;# the user that mpd runs as (see the &#39;user&#39; config parameter)&lt;br /&gt;# can read the files in this directory.&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;music_directory         “/home/os.meus.documentos/music”&lt;br /&gt;playlist_directory      “~/.mpd/playlists”&lt;br /&gt;db_file              “~/.mpd/tag_cache”&lt;br /&gt;log_file             “~/.mpd/mpd.log”&lt;br /&gt;error_file            “~/.mpd/errors.log”&lt;br /&gt;pid_file             “~/.mpd/pid”&lt;/span&gt;&lt;br /&gt;################################################################&lt;br /&gt;#&lt;br /&gt;######################## OPTIONAL PATHS ########################&lt;br /&gt;#&lt;br /&gt;# If specified, MPD will save its current state (playlist,&lt;br /&gt;# current song, playing/paused, etc.) at exit.  This will be&lt;br /&gt;# used to restore the session the next time it is run.&lt;br /&gt;#&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;state_file  “~/.mpd/state”&lt;/span&gt;&lt;br /&gt;#&lt;br /&gt;################################################################&lt;/code&gt;&lt;/li&gt;&lt;li&gt; &lt;em&gt;&lt;strong&gt;DAEMON OPTIONS&lt;/strong&gt;&lt;/em&gt;&lt;br /&gt;Add you user(in my case it&#39;s &lt;span style=&quot;font-weight: bold;&quot;&gt;qaz&lt;/span&gt;)  in the field &lt;span style=&quot;font-weight: bold;&quot;&gt;user&lt;/span&gt;. Uncomment the rest.&lt;br /&gt;&lt;code&gt;######################## DAEMON OPTIONS ########################&lt;br /&gt;#&lt;br /&gt;# If started as root, MPD will drop root privileges and run as&lt;br /&gt;# this user instead.  Otherwise, MPD will run as the user it was&lt;br /&gt;# started by.  If left unspecified, MPD will not drop root&lt;br /&gt;# privileges at all (not recommended).&lt;br /&gt;#&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;user                            “qaz”&lt;/span&gt;&lt;br /&gt;#&lt;br /&gt;# The address and port to listen on.&lt;br /&gt;#&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;bind_to_address                 “localhost”&lt;br /&gt;port                            “6600″&lt;/span&gt;&lt;br /&gt;#&lt;br /&gt;# Controls the amount of information that is logged.  Can be&lt;br /&gt;# “default”, “secure”, or “verbose”.&lt;br /&gt;#&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;log_level                       “default”&lt;/span&gt;&lt;br /&gt;#&lt;br /&gt;################################################################&lt;/code&gt;&lt;/li&gt;&lt;li&gt; &lt;strong&gt;&lt;em&gt;AUDIO OUTPUTS&lt;/em&gt;&lt;em&gt; &amp;amp; MIXER&lt;/em&gt;&lt;/strong&gt;&lt;br /&gt;Uncomment the the text lines wich represent your audio output. Im my case it&#39;s &lt;span style=&quot;font-weight: bold;&quot;&gt;alsa&lt;/span&gt;.&lt;br /&gt;&lt;code&gt;########################## AUDIO OUTPUT ########################&lt;br /&gt;#&lt;br /&gt;# MPD supports many audio output types, as well as playing&lt;br /&gt;# through multiple audio outputs at the same time.  You can&lt;br /&gt;# specify one or more here.  If you don&#39;t specify any, MPD will&lt;br /&gt;# automatically scan for a usable audio output.&lt;br /&gt;#&lt;br /&gt;# See &lt;http: com=&quot;&quot; wiki=&quot;&quot; audio_outputs=&quot;&quot;&gt;&lt;br /&gt;# for examples of other audio outputs.&lt;br /&gt;#&lt;br /&gt;# An example of an ALSA output:&lt;br /&gt;#&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;audio_output {&lt;br /&gt;type                    “alsa”&lt;br /&gt;name                    “My ALSA Device”&lt;/span&gt;&lt;br /&gt;#        device                  “hw:0,0″     # optional&lt;br /&gt;#        format                  “44100:16:2″ # optional&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;}&lt;/span&gt;&lt;br /&gt;#&lt;br /&gt;# An example of an OSS output:&lt;br /&gt;#&lt;br /&gt;#audio_output {&lt;br /&gt;#        type                    “oss”&lt;br /&gt;#        name                    “My OSS Device”&lt;br /&gt;#        device                  “/dev/dsp”   # optional&lt;br /&gt;#        format                  “44100:16:2″ # optional&lt;br /&gt;#}&lt;br /&gt;#&lt;br /&gt;# An example of a shout output (for streaming to Icecast):&lt;br /&gt;#&lt;br /&gt;#audio_output {&lt;br /&gt;#        type                    “shout”&lt;br /&gt;#        name                    “My Shout Stream”&lt;br /&gt;#        host                    “localhost”&lt;br /&gt;#        port                    “8000″&lt;br /&gt;#        mount                   “/mpd.ogg”&lt;br /&gt;#        password                “hackme”&lt;br /&gt;#        quality                 “5.0″&lt;br /&gt;#        bitrate                 “128″&lt;br /&gt;#        format                  “44100:16:1″&lt;br /&gt;#        user                    “source”                # optional&lt;br /&gt;#        description             “My Stream Description” # optional&lt;br /&gt;#        genre                   “jazz”                  # optional&lt;br /&gt;#        public                  “no”                    # optional&lt;br /&gt;#}&lt;br /&gt;#&lt;br /&gt;# Force all decoded audio to be converted to this format before&lt;br /&gt;# being passed to the audio outputs.&lt;br /&gt;#&lt;br /&gt;#audio_output_format             “44100:16:2″&lt;br /&gt;#&lt;br /&gt;################################################################&lt;br /&gt;#&lt;br /&gt;############################# MIXER ############################&lt;br /&gt;#&lt;br /&gt;# MPD needs to know what mixer settings to change when you&lt;br /&gt;# adjust the volume.  If you don’t specify one here, MPD will&lt;br /&gt;# pick one based on which ones it was compiled with support for.&lt;br /&gt;#&lt;br /&gt;# An example for controlling an ALSA mixer:&lt;br /&gt;#&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;mixer_type                      “alsa”&lt;br /&gt;mixer_device                    “default”&lt;br /&gt;mixer_control                   “PCM”&lt;/span&gt;&lt;br /&gt;#&lt;br /&gt;# An example for controlling an OSS mixer:&lt;br /&gt;#&lt;br /&gt;#mixer_type                      “oss”&lt;br /&gt;#mixer_device                    “/dev/mixer”&lt;br /&gt;#mixer_control                   “PCM”&lt;br /&gt;#&lt;br /&gt;# If you want MPD to adjust the volume of audio sent to the&lt;br /&gt;# audio outputs, you can tell it to use the software mixer:&lt;br /&gt;#&lt;br /&gt;#mixer_type                      “software”&lt;br /&gt;#&lt;br /&gt;################################################################&lt;br /&gt;&lt;/http:&gt;&lt;/code&gt;&lt;/li&gt;&lt;li&gt;&lt;strong&gt;&lt;em&gt;OTHER OPTIONS&lt;/em&gt;&lt;/strong&gt;&lt;br /&gt;Uncomment this two lines:&lt;br /&gt;&lt;code&gt;######################### OTHER OPTIONS ########################&lt;br /&gt;#&lt;br /&gt;# The metadata types MPD will recognize.&lt;br /&gt;#&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;metadata_to_use                  “artist,album,title,track,name,genre,date,composer,performer,disc”&lt;/span&gt;&lt;br /&gt;#&lt;br /&gt;# Enable this if you wish to use your MPD created playlists in&lt;br /&gt;# other music players.&lt;br /&gt;#&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;save_absolute_paths_in_playlists “no”&lt;/span&gt;&lt;br /&gt;#&lt;br /&gt;################################################################&lt;/code&gt;&lt;/li&gt;&lt;li&gt;&lt;em&gt;&lt;strong&gt;Outher configurations&lt;/strong&gt;&lt;/em&gt;&lt;br /&gt;Stay as they are. To avoid any doubts,&lt;a href=&quot;http://dotfiles.org/%7Euterrorista/%2Fetc%2Fmpd.conf&quot; target=&quot;_blank&quot;&gt;here is my final result&lt;/a&gt;. &lt;/li&gt;&lt;/ol&gt; &lt;p style=&quot;text-align: justify;&quot;&gt;Now, add your user( mine is&lt;span style=&quot;font-weight: bold;&quot;&gt; qaz&lt;/span&gt;) at mpd &lt;span style=&quot;font-weight: bold;&quot;&gt;group&lt;/span&gt; (can&#39;t explain why this step).&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: justify;&quot;&gt;&lt;code&gt;# groupadd &lt;strong&gt;mpd&lt;/strong&gt;&lt;br /&gt;# gpasswd -a &lt;strong&gt;qaz mpd&lt;/strong&gt;&lt;/code&gt;&lt;br /&gt;Make sure the folder ~/.mpd doesn&#39;t need root privileges.&lt;br /&gt;&lt;/p&gt; &lt;p&gt;To create data base (this can take a while):&lt;br /&gt;&lt;code&gt;$ mpd --create-db&lt;/code&gt;&lt;br /&gt;In this moment we have mpd completed instaled and configurated.&lt;br /&gt;&lt;code&gt;$ mpd&lt;/code&gt;&lt;/p&gt; &lt;p&gt;&lt;strong&gt;&lt;em&gt;Frontend:&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt; &lt;p&gt;We still need a &lt;a href=&quot;http://www.musicpd.org/clients.shtml&quot; target=&quot;_blank&quot;&gt;frontend&lt;/a&gt;. I choose &lt;a href=&quot;http://sonata.berlios.de/&quot; target=&quot;_blank&quot;&gt;Sonata&lt;/a&gt;.&lt;/p&gt; &lt;blockquote&gt;&lt;p&gt;Sonata is an elegant GTK+ music client for the &lt;a href=&quot;http://www.musicpd.org/&quot;&gt;Music Player Daemon (MPD)&lt;/a&gt;.&lt;/p&gt;&lt;/blockquote&gt; &lt;p style=&quot;text-align: right;&quot;&gt;@ &lt;a href=&quot;http://sonata.berlios.de/&quot; target=&quot;_blank&quot;&gt;Sonata Homepage&lt;/a&gt;&lt;/p&gt; &lt;div class=&quot;wp-caption aligncenter&quot; style=&quot;width: 464px;&quot;&gt;&lt;img title=&quot;Screenshot do sonata. Clica na imagem para mais imagens.&quot; src=&quot;http://sonata.berlios.de/images/sonata8.png&quot; alt=&quot;&quot; width=&quot;454&quot; height=&quot;108&quot; /&gt;&lt;p class=&quot;wp-caption-text&quot;&gt;Sonata&#39;s Screenshot. Click in the image to see more pics.&lt;/p&gt;&lt;/div&gt; &lt;p style=&quot;text-align: justify;&quot;&gt;Sonata also needs some configuration. But first let us open it:&lt;br /&gt;&lt;code&gt;$ sonata&lt;/code&gt;&lt;br /&gt;Go to Preferences, in the tab MPD add you datasi. My case:&lt;/p&gt; &lt;ul&gt;&lt;li&gt;Name: &lt;strong&gt;qaz&lt;/strong&gt;&lt;/li&gt;&lt;li&gt;Host: &lt;strong&gt;localhost&lt;/strong&gt;&lt;/li&gt;&lt;li&gt;Port: &lt;strong&gt;6600&lt;/strong&gt;&lt;/li&gt;&lt;li&gt;Password: (em branco)&lt;/li&gt;&lt;li&gt;Music dir: &lt;strong&gt;/home/os.meus.documentos/music/&lt;/strong&gt;&lt;/li&gt;&lt;/ul&gt; &lt;p&gt;If necessary kill both process (killall) e start &lt;strong&gt;mpd&lt;/strong&gt; &amp;amp; &lt;strong&gt;sonata &lt;/strong&gt;again.&lt;/p&gt; &lt;p&gt;&lt;em&gt;&lt;strong&gt;References:&lt;/strong&gt;&lt;/em&gt;&lt;br /&gt;» &lt;a href=&quot;http://www.techzonept.com/showthread.php?t=240349&quot; target=&quot;_blank&quot;&gt;Techzone/Zwame&lt;/a&gt;&lt;br /&gt;» &lt;a href=&quot;http://wiki.archlinux.org/index.php/Mpd&quot; target=&quot;_blank&quot;&gt;ArchLinux Wiki&lt;/a&gt;&lt;br /&gt;» &lt;a href=&quot;http://www.musicpd.org/&quot; target=&quot;_blank&quot;&gt;MPD homepage&lt;/a&gt;&lt;/p&gt; &lt;p&gt;&lt;em&gt;&lt;strong&gt;My files:&lt;/strong&gt;&lt;/em&gt;&lt;br /&gt;» &lt;a href=&quot;http://dotfiles.org/%7Euterrorista/%2Fetc%2Fmpd.conf&quot; target=&quot;_blank&quot;&gt;http://dotfiles.org/~uterrorista/%2Fetc%2Fmpd.conf&lt;/a&gt;&lt;/p&gt; &lt;p&gt;&lt;em&gt;&lt;strong&gt;FeedBack:&lt;/strong&gt;&lt;/em&gt;&lt;br /&gt;Have a question? Please submit a comment &lt;img src=&quot;http://linuxdeb.com/wp-includes/images/smilies/icon_razz.gif&quot; alt=&quot;:P&quot; class=&quot;wp-smiley&quot; /&gt;&lt;/p&gt;</content><link rel='replies' type='application/atom+xml' href='https://linuxinside.blogspot.com/feeds/2790632857991530396/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://www.blogger.com/comment/fullpage/post/3731923312219132020/2790632857991530396?isPopup=true' title='6 Comments'/><link rel='edit' type='application/atom+xml' href='https://www.blogger.com/feeds/3731923312219132020/posts/default/2790632857991530396'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/3731923312219132020/posts/default/2790632857991530396'/><link rel='alternate' type='text/html' href='https://linuxinside.blogspot.com/2008/09/mpd-music-player-daemon.html' title='MPD: Music Player Daemon'/><author><name>Unknown</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>6</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3731923312219132020.post-713327551827527205</id><published>2008-09-13T07:32:00.000-07:00</published><updated>2008-11-08T15:28:06.913-08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="64-bit"/><category scheme="http://www.blogger.com/atom/ns#" term="Flash"/><title type='text'>Flash Player9 in a 64-bit machine</title><content type='html'>Here it is a tutorial do install Flash Player 9 in a 64-bit Gnu/Linux machine:&lt;br /&gt;&lt;code&gt;$ wget http://fpdownload.macromedia.com/get/flashplayer/current/install_flash_player_9_linux.tar.gz&lt;br /&gt;$ tar -zxf install_flash_player_9_linux.tar.gz&lt;br /&gt;$ mkdir ~/.mozilla/plugins/&lt;br /&gt;$ mv install_flash_player_9_linux/flashplayer.xpt install_flash_player_9_linux/libflashplayer.so ~/.mozilla/plugins/&lt;br /&gt;$ nspluginwrapper -i ~/.mozilla/plugins/libflashplayer.soLinks:» Source: Japan Shah&lt;/code&gt;</content><link rel='replies' type='application/atom+xml' href='https://linuxinside.blogspot.com/feeds/713327551827527205/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://www.blogger.com/comment/fullpage/post/3731923312219132020/713327551827527205?isPopup=true' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='https://www.blogger.com/feeds/3731923312219132020/posts/default/713327551827527205'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/3731923312219132020/posts/default/713327551827527205'/><link rel='alternate' type='text/html' href='https://linuxinside.blogspot.com/2008/09/flash-player9-in-64-bit-machine.html' title='Flash Player9 in a 64-bit machine'/><author><name>Unknown</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3731923312219132020.post-6598224021847900749</id><published>2008-09-13T07:21:00.000-07:00</published><updated>2008-09-13T07:32:39.986-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Games"/><category scheme="http://www.blogger.com/atom/ns#" term="Repository"/><category scheme="http://www.blogger.com/atom/ns#" term="Ubuntu"/><title type='text'>Playdeb - Games repositorie (Ubuntu)</title><content type='html'>&lt;span class=&quot;comment&quot;&gt;&lt;/span&gt;         &lt;blockquote style=&quot;text-align: justify;&quot;&gt;&lt;p&gt;&lt;a href=&quot;http://www.playdeb.net/&quot; target=&quot;_blank&quot;&gt;Playdeb&lt;/a&gt; is a gaming repository for Ubuntu - aimed to provide titles already available on &lt;a href=&quot;http://www.getdeb.net/category.php?id=3&quot; target=&quot;_blank&quot;&gt;getdeb.net&lt;/a&gt; in an easier to install and update format.&lt;/p&gt;&lt;/blockquote&gt; &lt;p style=&quot;text-align: justify;&quot;&gt;&lt;a href=&quot;http://www.playdeb.net/available_games.html&quot;&gt;This list&lt;/a&gt; features some old known games and also some news.&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: justify;&quot;&gt;For who uses other distros, you can follow the link to the homepage of the games and follow the presented instructions.&lt;/p&gt;&lt;p style=&quot;text-align: justify;&quot;&gt;&lt;strong&gt;&lt;em&gt;Links:&lt;/em&gt;&lt;/strong&gt;&lt;br /&gt;»&lt;a href=&quot;http://www.playdeb.net/&quot; target=&quot;_blank&quot;&gt;Playdeb&lt;/a&gt;&lt;br /&gt;»&lt;a href=&quot;http://www.getdeb.net/&quot; target=&quot;_blank&quot;&gt;GetDeb&lt;/a&gt;&lt;/p&gt;</content><link rel='replies' type='application/atom+xml' href='https://linuxinside.blogspot.com/feeds/6598224021847900749/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://www.blogger.com/comment/fullpage/post/3731923312219132020/6598224021847900749?isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='https://www.blogger.com/feeds/3731923312219132020/posts/default/6598224021847900749'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/3731923312219132020/posts/default/6598224021847900749'/><link rel='alternate' type='text/html' href='https://linuxinside.blogspot.com/2008/09/playdeb-games-repositorie-ubuntu.html' title='Playdeb - Games repositorie (Ubuntu)'/><author><name>Unknown</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3731923312219132020.post-6256783136347408409</id><published>2008-04-21T06:07:00.001-07:00</published><updated>2008-09-09T08:10:33.618-07:00</updated><title type='text'>Flash Linux</title><content type='html'>&lt;p style=&quot;text-align: center;&quot;&gt;&lt;img style=&quot;margin: 10px;&quot; src=&quot;http://farm4.static.flickr.com/3114/2431260694_d1507077d2_o.gif&quot; alt=&quot;&quot; height=&quot;57&quot; width=&quot;400&quot; /&gt;&lt;b&gt;&lt;br /&gt;&lt;/b&gt;&lt;/p&gt;&lt;p style=&quot;text-align: left;&quot;&gt;&lt;b style=&quot;font-style: italic;&quot;&gt;What is &quot;Flash Linux&quot;&lt;/b&gt;&lt;br /&gt;It&#39;s a FREE (GPL-2) customised Linux distribution initially designed to be run directly off a &lt;b&gt;256Mb USB key&lt;/b&gt; or other (similar) forms of bootable flash memory. It has subsequently (also) become a Linux distribution that runs directly from a CDROM, typically known as a &lt;b&gt;Live-CD&lt;/b&gt;.&lt;br /&gt;&lt;/p&gt;&lt;b&gt;&lt;br /&gt;&lt;span style=&quot;font-style: italic;&quot;&gt;About Gentoo&lt;/span&gt;&lt;br /&gt;&lt;/b&gt;Flash Linux is based on &lt;span class=&quot;link-external&quot;&gt;&lt;a href=&quot;http://www.gentoo.org/&quot;&gt;Gentoo Linux&lt;/a&gt;&lt;/span&gt; and new versions / bugfixes should track the stable Gentoo tree. Whereas Gentoo is a source distribution, this is a binary only distribution. If you need the source code or want to make modifications - please take a look at the Gentoo home page.&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-weight: bold; font-style: italic;&quot;&gt;Links:&lt;/span&gt;&lt;br /&gt;&lt;b&gt;»&lt;/b&gt;Homepage: &lt;a href=&quot;http://flashlinux.org.uk/&quot;&gt;http://flashlinux.org.uk/&lt;/a&gt;</content><link rel='replies' type='application/atom+xml' href='https://linuxinside.blogspot.com/feeds/6256783136347408409/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://www.blogger.com/comment/fullpage/post/3731923312219132020/6256783136347408409?isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='https://www.blogger.com/feeds/3731923312219132020/posts/default/6256783136347408409'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/3731923312219132020/posts/default/6256783136347408409'/><link rel='alternate' type='text/html' href='https://linuxinside.blogspot.com/2008/04/what-is-flash-linux-its-free-gpl-2.html' title='Flash Linux'/><author><name>Unknown</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3731923312219132020.post-1645133834798088627</id><published>2008-04-20T16:51:00.000-07:00</published><updated>2008-09-09T08:34:53.900-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Java"/><category scheme="http://www.blogger.com/atom/ns#" term="Linux"/><category scheme="http://www.blogger.com/atom/ns#" term="Ubuntu"/><title type='text'>How to install (JRE) Java in Ubuntu (8.04)</title><content type='html'>&lt;img class=&quot;alignright&quot; style=&quot;margin: 10px; float: right;&quot; src=&quot;http://farm3.static.flickr.com/2346/2429751852_99ba861660_m.jpg&quot; alt=&quot;&quot; height=&quot;240&quot; width=&quot;117&quot; /&gt;I&#39;m trying to install Java at my new Ubuntu and I&#39;m getting some difficulties.&lt;br /&gt;I was scrolling Synaptic Package Monitor for a while and i couldn&#39;t find it.&lt;br /&gt;&lt;br /&gt;So i Google it..&lt;br /&gt;&lt;br /&gt;There are these packages:&lt;br /&gt;&lt;br /&gt;&lt;code&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;sun-java6-bin     sun-java6-fonts   sun-java6-jre     sun-java6-src&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;sun-java6-demo    sun-java6-javadb  sun-java6-plugin &lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;sun-java6-doc     sun-java6-jdk     sun-java6-source&lt;/span&gt;&lt;/code&gt;&lt;br /&gt;&lt;br /&gt;All you (probably) need is:&lt;br /&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;&lt;code&gt;$ sudo apt-get install sun-java6-jre sun-java6-fonts &lt;/code&gt;&lt;/span&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;&lt;code&gt;sun-java6-plugi&lt;span style=&quot;font-family:Georgia,serif;&quot;&gt;n&lt;br /&gt;&lt;/span&gt;&lt;/code&gt;&lt;/span&gt;&lt;br /&gt;Note: The package &lt;code&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;sun-java6-plugin&lt;/span&gt;&lt;/code&gt; contain the Firefox plugin.</content><link rel='replies' type='application/atom+xml' href='https://linuxinside.blogspot.com/feeds/1645133834798088627/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://www.blogger.com/comment/fullpage/post/3731923312219132020/1645133834798088627?isPopup=true' title='7 Comments'/><link rel='edit' type='application/atom+xml' href='https://www.blogger.com/feeds/3731923312219132020/posts/default/1645133834798088627'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/3731923312219132020/posts/default/1645133834798088627'/><link rel='alternate' type='text/html' href='https://linuxinside.blogspot.com/2008/04/how-to-install-jre-java-in-ubuntu-804.html' title='How to install (JRE) Java in Ubuntu (8.04)'/><author><name>Unknown</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://farm3.static.flickr.com/2346/2429751852_99ba861660_t.jpg" height="72" width="72"/><thr:total>7</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3731923312219132020.post-9125908878136260373</id><published>2008-04-17T08:57:00.000-07:00</published><updated>2008-06-17T13:36:36.738-07:00</updated><title type='text'>Foxmarks beta (for Firefox beta)</title><content type='html'>&lt;div&gt;&lt;img class=&quot;alignright&quot; style=&quot;border: 10px solid white; float: right;&quot; src=&quot;http://farm4.static.flickr.com/3244/2420601053_39de2de370_m.jpg&quot; alt=&quot;&quot; height=&quot;191&quot; width=&quot;240&quot; /&gt;Foxmarks don&#39;t have a compatible version with Firefox 3 beta5.&lt;br /&gt;But there is the &lt;span style=&quot;font-weight: bold;&quot;&gt;Beta version of Foxmarks&lt;/span&gt;!&lt;br /&gt;&lt;a style=&quot;font-weight: bold;&quot; href=&quot;http://linuxinside.blogspot.com/2008/04/foxmarks-beta-for-firefox-beta.html&quot;&gt;Read more!&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;&lt;span class=&quot;fullpost&quot;&gt;&lt;br /&gt;Instructions:&lt;br /&gt;&lt;ol&gt;&lt;li&gt;Go &lt;a href=&quot;http://beta.foxmarks.com/&quot;&gt;here&lt;/a&gt;, and sign with your nick and password.&lt;/li&gt;&lt;li&gt;Then sign up to Beta tester.&lt;/li&gt;&lt;li&gt;They will sent you an email - this may take some days..&lt;/li&gt;&lt;li&gt;Then, follow the link and sign in and download the plugin.&lt;/li&gt;&lt;/ol&gt;Don&#39;t know what is Foxmarks?&lt;br /&gt;&lt;div&gt;         &lt;p&gt;&lt;/p&gt;&lt;blockquote&gt;&lt;p&gt;The Foxmarks Bookmark Synchronizer automatically synchronizes your         bookmarks between two or more computers running Firefox. It also lets         you access your bookmarks from any computer anytime via         my.foxmarks.com. An easy-to-use wizard guides you through the quick         startup process. Then Foxmarks works silently in the background to keep         your bookmarks up-to-date on all your computers.&lt;/p&gt;         &lt;p&gt;Simple. Solid. Free. And ready to use.&lt;/p&gt;&lt;/blockquote&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;Homepage: &lt;a href=&quot;http://www.foxmarks.com/&quot;&gt;http://www.foxmarks.com/&lt;/a&gt;&lt;/p&gt;&lt;/div&gt;&lt;/span&gt;</content><link rel='replies' type='application/atom+xml' href='https://linuxinside.blogspot.com/feeds/9125908878136260373/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://www.blogger.com/comment/fullpage/post/3731923312219132020/9125908878136260373?isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='https://www.blogger.com/feeds/3731923312219132020/posts/default/9125908878136260373'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/3731923312219132020/posts/default/9125908878136260373'/><link rel='alternate' type='text/html' href='https://linuxinside.blogspot.com/2008/04/foxmarks-beta-for-firefox-beta.html' title='Foxmarks beta (for Firefox beta)'/><author><name>Unknown</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://farm4.static.flickr.com/3244/2420601053_39de2de370_t.jpg" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3731923312219132020.post-8409582178072740144</id><published>2008-04-16T14:19:00.000-07:00</published><updated>2008-04-16T14:33:40.254-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Linux"/><category scheme="http://www.blogger.com/atom/ns#" term="Shockwave"/><title type='text'>Shockwave Player and Plugin for Linux</title><content type='html'>&lt;img class=&quot;alignright&quot; style=&quot;margin: 10px; float: right;&quot; src=&quot;http://farm4.static.flickr.com/3233/2419752580_1c9b818029_o.gif&quot; alt=&quot;&quot; width=&quot;95&quot; height=&quot;92&quot; /&gt;As you already know, &lt;span style=&quot;font-weight: bold;&quot;&gt;there is no such player/plugin&lt;/span&gt;! And the only solution is firefox.exe running through wine.&lt;br /&gt;&lt;br /&gt;But, there&#39;s some hope. Sign &lt;a href=&quot;http://www.petitiononline.com/linuxswp/petition.html&quot;&gt;here&lt;/a&gt; an online petition..&lt;br /&gt;&lt;span style=&quot;&quot;&gt;&lt;/span&gt;&lt;blockquote&gt;&lt;span style=&quot;&quot;&gt;The &lt;a target=&quot;_top&quot; href=&quot;http://www.petitiononline.com/linuxswp/petition.html&quot;&gt;Shockwave Player and Plugin for Linux&lt;/a&gt; Petition to Macromedia was &lt;b&gt;created by members of the Linux Community and written by Rob Jensen...&lt;/b&gt;&lt;/span&gt;&lt;/blockquote&gt;</content><link rel='replies' type='application/atom+xml' href='https://linuxinside.blogspot.com/feeds/8409582178072740144/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://www.blogger.com/comment/fullpage/post/3731923312219132020/8409582178072740144?isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='https://www.blogger.com/feeds/3731923312219132020/posts/default/8409582178072740144'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/3731923312219132020/posts/default/8409582178072740144'/><link rel='alternate' type='text/html' href='https://linuxinside.blogspot.com/2008/04/shockwave-player-and-plugin-for-linux.html' title='Shockwave Player and Plugin for Linux'/><author><name>Unknown</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3731923312219132020.post-4393378159011183857</id><published>2008-04-15T15:32:00.000-07:00</published><updated>2008-09-09T11:21:47.339-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Linux"/><category scheme="http://www.blogger.com/atom/ns#" term="Terminal"/><category scheme="http://www.blogger.com/atom/ns#" term="Tip"/><title type='text'>History - terminal tip</title><content type='html'>&lt;img class=&quot;alignleft&quot; style=&quot;border: 10px solid white; float: left;&quot; src=&quot;http://farm4.static.flickr.com/3050/2416691867_3f41a0beef_o.png&quot; alt=&quot;&quot; height=&quot;48&quot; width=&quot;48&quot; /&gt;With the new meme&#39;s fashion:&lt;br /&gt;&lt;code style=&quot;font-weight: bold;&quot;&gt;history|awk &#39;{a[$2]++ } END{for(i in a){print a[i] &quot; &quot; i}}&#39;|sort -rn|head&lt;/code&gt;&lt;br /&gt;Did anyone just typed&lt;span style=&quot;font-style: italic;&quot;&gt; history&lt;/span&gt; in terminal?&lt;br /&gt;&lt;br /&gt;If you try it, you can see the list of the last commands used.&lt;br /&gt;&lt;br /&gt;Instead of pressing upper arrow hundred times to see the command that we used in the previous day, just type history&lt;br /&gt;&lt;br /&gt;&lt;code style=&quot;font-weight: bold;&quot;&gt;$ history&lt;/code&gt;&lt;br /&gt;&lt;br /&gt;Check also the manual:&lt;br /&gt;&lt;br /&gt;&lt;code style=&quot;font-weight: bold;&quot;&gt;$ man history&lt;/code&gt;</content><link rel='replies' type='application/atom+xml' href='https://linuxinside.blogspot.com/feeds/4393378159011183857/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://www.blogger.com/comment/fullpage/post/3731923312219132020/4393378159011183857?isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='https://www.blogger.com/feeds/3731923312219132020/posts/default/4393378159011183857'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/3731923312219132020/posts/default/4393378159011183857'/><link rel='alternate' type='text/html' href='https://linuxinside.blogspot.com/2008/04/history-terminal-tip.html' title='History - terminal tip'/><author><name>Unknown</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3731923312219132020.post-7621920276483984699</id><published>2008-04-15T15:19:00.000-07:00</published><updated>2008-09-09T11:22:17.458-07:00</updated><title type='text'>Archlinux 2008.04-RC</title><content type='html'>Looks like we&#39;re gonna have a Live CD Archlinux&#39;s version..&lt;br /&gt;The latest &lt;a href=&quot;http://archlinux.org/news/389/&quot;&gt;news&lt;/a&gt;:&lt;br /&gt;&lt;blockquote&gt;A new batch of install images is currently syncing to mirrors.&lt;br /&gt;FTP images have been made available tonight, while CORE images&lt;br /&gt;will be pushed tomorrow night in order to distribute the load.&lt;p&gt;&lt;/p&gt;  &lt;p&gt;This marks the first release (well ok... release candidate)&lt;br /&gt;based on a true live Arch system. That is, what&#39;s on the&lt;br /&gt;images is just a plain old base installation which just&lt;br /&gt;happens to boot off of a CD or USB stick.&lt;/p&gt;  &lt;p&gt;Whoah... did you just say USB stick? Why yes I did! That&#39;s&lt;br /&gt;right, from here on out we&#39;ll be offering bootable USB disk&lt;br /&gt;images that can act as a live system or installer.&lt;/p&gt;  &lt;p&gt;The installer script itself is roughly the same as it&#39;s always&lt;br /&gt;been. The most noticable change is the use of UUIDs instead of&lt;br /&gt;sdX/hdX entries by default. A more detailed changelog&lt;br /&gt;should be visible on &lt;a href=&quot;http://projects.archlinux.org/git/&quot;&gt;projects.archlinux.org&lt;/a&gt; soon-ish.&lt;/p&gt;  &lt;p&gt;If you get the chance, please give the images a spin. You can&lt;br /&gt;find them on our &lt;a href=&quot;https://dev.archlinux.org/download/&quot;&gt;mirrors&lt;/a&gt;, in the&lt;br /&gt;iso directory. Please file &lt;a href=&quot;http://bugs.archlinux.org/&quot;&gt;bugs&lt;/a&gt; if you encounter any problems.&lt;/p&gt;  &lt;p&gt;By the way, the &quot;RC&quot; status of these images should not be a&lt;br /&gt;turn-off if you&#39;re looking to install Arch, there&#39;s a very&lt;br /&gt;good chance they&#39;ll work just fine for you.&lt;/p&gt;&lt;/blockquote&gt;&lt;br /&gt;&lt;span style=&quot;font-weight: bold; font-style: italic;&quot;&gt;Links:&lt;/span&gt;&lt;br /&gt;»Homepage: &lt;a href=&quot;http://archlinux.org/&quot;&gt;ArchLinux&lt;/a&gt;</content><link rel='replies' type='application/atom+xml' href='https://linuxinside.blogspot.com/feeds/7621920276483984699/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://www.blogger.com/comment/fullpage/post/3731923312219132020/7621920276483984699?isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='https://www.blogger.com/feeds/3731923312219132020/posts/default/7621920276483984699'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/3731923312219132020/posts/default/7621920276483984699'/><link rel='alternate' type='text/html' href='https://linuxinside.blogspot.com/2008/04/archlinux-200804-rc.html' title='Archlinux 2008.04-RC'/><author><name>Unknown</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3731923312219132020.post-7646725162710349277</id><published>2008-04-14T13:42:00.000-07:00</published><updated>2008-09-09T11:30:03.311-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Hardware"/><category scheme="http://www.blogger.com/atom/ns#" term="Linux"/><category scheme="http://www.blogger.com/atom/ns#" term="Tutorial"/><category scheme="http://www.blogger.com/atom/ns#" term="Ubuntu"/><title type='text'>One step forward, two steps back</title><content type='html'>In Feisty, agere et131x - Ethernet card of my LG P1 - was automatically installed.&lt;br /&gt;Today with Hardy 8.04 and new versions of kernel, there is no &#39;out of the box&#39;!&lt;br /&gt;&lt;br /&gt;One step forward, two steps back! Hrr&lt;br /&gt;&lt;br /&gt;To install it:&lt;br /&gt;&lt;br /&gt;Download et131x-1.2.3-2.tar.gz (or more recent ) &lt;a href=&quot;http://sourceforge.net/projects/et131x&quot;&gt;here&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;&lt;code&gt;$ sudo apt-get install build-essential linux-headers-$(uname -r)&lt;/code&gt;&lt;br /&gt;go to the unpackaged et131x folder&lt;br /&gt;&lt;code&gt;$ make&lt;br /&gt;$ sudo make modules_install&lt;br /&gt;$ insmod et131x.ko&lt;br /&gt;$ sudo depmod&lt;br /&gt;$ sudo modprobe et131x&lt;/code&gt;&lt;br /&gt;&lt;br /&gt;There might me some errors... &lt;span style=&quot;font-style: italic;&quot;&gt;close your eyes!&lt;/span&gt;&lt;br /&gt;Reboot.&lt;br /&gt;&lt;br /&gt;The audio card - Realtek LC880 - was never fixed. I only have audio on phones!&lt;br /&gt;&lt;br /&gt;Create new file:&lt;br /&gt;&lt;code&gt;$ sudo gedit /etc/modprobe.d/snd-hda-intel&lt;/code&gt;&lt;br /&gt;Paste and save:&lt;br /&gt;&lt;code&gt;options snd-hda-intel model=lg&lt;/code&gt;&lt;br /&gt;Reboot!&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-style: italic; font-weight: bold;&quot;&gt;Links:&lt;/span&gt;&lt;br /&gt;»Drivers: &lt;a href=&quot;http://sourceforge.net/projects/et131x&quot;&gt;et131x&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;/code&gt;&lt;/code&gt;</content><link rel='replies' type='application/atom+xml' href='https://linuxinside.blogspot.com/feeds/7646725162710349277/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://www.blogger.com/comment/fullpage/post/3731923312219132020/7646725162710349277?isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='https://www.blogger.com/feeds/3731923312219132020/posts/default/7646725162710349277'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/3731923312219132020/posts/default/7646725162710349277'/><link rel='alternate' type='text/html' href='https://linuxinside.blogspot.com/2008/04/one-step-forward-two-steps-back.html' title='One step forward, two steps back'/><author><name>Unknown</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3731923312219132020.post-1169009440832985644</id><published>2008-04-12T13:39:00.000-07:00</published><updated>2008-09-09T11:32:47.658-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Linux"/><category scheme="http://www.blogger.com/atom/ns#" term="Software"/><title type='text'>Pytube - download videos from Youtube</title><content type='html'>&lt;p style=&quot;text-align: center;&quot;&gt;&lt;img src=&quot;http://farm3.static.flickr.com/2045/2407742011_3d6a4b7832_o.png&quot; alt=&quot;&quot; height=&quot;85&quot; width=&quot;360&quot; /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: left;&quot;&gt;PyTubes is a multimedia converter program.&lt;/p&gt;&lt;a style=&quot;font-weight: bold;&quot; href=&quot;http://linuxinside.blogspot.com/2008/04/pytube-download-videos-from-youtube.html&quot;&gt;&lt;/a&gt;&lt;span class=&quot;fullpost&quot;&gt;&lt;p style=&quot;text-align: left; font-style: italic; font-weight: bold;&quot;&gt;Features:&lt;/p&gt;&lt;ul style=&quot;text-align: left;&quot;&gt;&lt;li&gt;Downloads videos from Youtube, GoogleVideos, Metacafe, MySpaceTV... And converts them to ogm, mpg, avi, flv, gif, mp4, 3gp, amv, mp3, ogg and wav files.&lt;/li&gt; &lt;li&gt;Encode Videos to formats previously mentioned.&lt;/li&gt; &lt;li&gt;Search Youtube&#39;s videos.&lt;/li&gt; &lt;li&gt;Multimedia Tools - Apply audio track to video files, Generate ringtones, Merge videos, Resize videos, Rotate videos.&lt;/li&gt;&lt;/ul&gt;&lt;p style=&quot;text-align: left;&quot;&gt;&lt;span style=&quot;font-weight: bold; font-style: italic;&quot;&gt;Screenshot:&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center;&quot;&gt;&lt;a title=&quot;Click to enlarge&quot; href=&quot;http://farm3.static.flickr.com/2142/2407768295_753e5ec332_o.png&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://farm3.static.flickr.com/2148/2407767801_5cbdab61d6_t.jpg&quot; alt=&quot;&quot; height=&quot;45&quot; width=&quot;100&quot; /&gt; &lt;img src=&quot;http://farm3.static.flickr.com/2142/2407768295_0697b22243_t.jpg&quot; alt=&quot;&quot; height=&quot;67&quot; width=&quot;100&quot; /&gt; &lt;img src=&quot;http://farm4.static.flickr.com/3023/2407768063_f29efbbdce_t.jpg&quot; alt=&quot;&quot; height=&quot;83&quot; width=&quot;100&quot; /&gt;&lt;/a&gt;&lt;/p&gt;&lt;span style=&quot;font-style: italic; font-weight: bold;&quot;&gt;Links:&lt;/span&gt;&lt;br /&gt;»Homepage: &lt;a href=&quot;http://bashterritory.com/pytube&quot;&gt;http://bashterritory.com/pytube&lt;/a&gt;&lt;em&gt;&lt;a title=&quot;Visit&quot; href=&quot;http://bashterritory.com/pytube&quot; target=&quot;_blank&quot;&gt;&lt;/a&gt;&lt;/em&gt;&lt;br /&gt;»Download page: &lt;a href=&quot;http://bashterritory.com/pytube/index.php?option=com_remository&amp;amp;Itemid=26&amp;amp;func=select&amp;amp;id=1&quot;&gt;http://bashterritory.com/&lt;/a&gt;&lt;br /&gt;&lt;/span&gt;</content><link rel='replies' type='application/atom+xml' href='https://linuxinside.blogspot.com/feeds/1169009440832985644/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://www.blogger.com/comment/fullpage/post/3731923312219132020/1169009440832985644?isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='https://www.blogger.com/feeds/3731923312219132020/posts/default/1169009440832985644'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/3731923312219132020/posts/default/1169009440832985644'/><link rel='alternate' type='text/html' href='https://linuxinside.blogspot.com/2008/04/pytube-download-videos-from-youtube.html' title='Pytube - download videos from Youtube'/><author><name>Unknown</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://farm3.static.flickr.com/2148/2407767801_5cbdab61d6_t.jpg" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3731923312219132020.post-6891557073783550391</id><published>2008-04-12T12:21:00.000-07:00</published><updated>2008-09-09T11:34:14.498-07:00</updated><title type='text'>Terminal History</title><content type='html'>I&#39;m a sudo addicted. :)&lt;br /&gt;&lt;br /&gt;&lt;code&gt;$ history|awk &#39;{a[$2]++ } END{for(i in a){print a[i] &quot; &quot; i}}&#39;|sort -rn|head&lt;/code&gt;&lt;br /&gt;&lt;br /&gt;&lt;code&gt;245 sudo&lt;br /&gt;34 cd&lt;br /&gt;24 ls&lt;br /&gt;23 ping&lt;br /&gt;19 sh&lt;br /&gt;13 cmake&lt;br /&gt;12 make&lt;br /&gt;9 ./pk2&lt;br /&gt;9 exit&lt;br /&gt;8 e-U&lt;/code&gt;</content><link rel='replies' type='application/atom+xml' href='https://linuxinside.blogspot.com/feeds/6891557073783550391/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://www.blogger.com/comment/fullpage/post/3731923312219132020/6891557073783550391?isPopup=true' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='https://www.blogger.com/feeds/3731923312219132020/posts/default/6891557073783550391'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/3731923312219132020/posts/default/6891557073783550391'/><link rel='alternate' type='text/html' href='https://linuxinside.blogspot.com/2008/04/terminal-history.html' title='Terminal History'/><author><name>serafim</name><uri>http://www.blogger.com/profile/09378997342964469679</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiL07MLFHCoe_48iLU9IIeVUwj5sOuepwYbRc3P2hEar6VhNaVJIa2bDhJciDBieUR03PDI0HLBD329T31l3W7zdYV9k3HUcaVifIo4cU8-lkIIOhwlOl7Tc9zcRESwlw/s220/306kq4.png'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3731923312219132020.post-1783911861382397939</id><published>2008-04-11T16:12:00.000-07:00</published><updated>2008-09-09T11:38:34.731-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Distribution"/><category scheme="http://www.blogger.com/atom/ns#" term="Linux"/><title type='text'>Linux Distribution Chooser</title><content type='html'>If you have doubt&#39;s about choosing the best Gnu/Linux distribution to you, &lt;a href=&quot;http://www.zegeniestudios.net/ldc/index.php&quot;&gt;this&lt;/a&gt; site can help.&lt;br /&gt;It will ask you some questions, inquiring you about your experience and preferences with Linux.&lt;br /&gt;&lt;br /&gt;If you wanna see some screenshots of the different distros, go &lt;a href=&quot;http://www.thecodingstudio.com/opensource/linux/screenshots/&quot;&gt;here&lt;/a&gt;!&lt;br /&gt;&lt;br /&gt;PS: if you make the test, let me know about the result!&lt;br /&gt;I got Ubuntu, Debian and Xubuntu! I already use Ubuntu :D !&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-style: italic; font-weight: bold;&quot;&gt;Links:&lt;/span&gt;&lt;br /&gt;»Linux Distribution Chooser: &lt;a href=&quot;http://www.zegeniestudios.net/ldc/index.php&quot;&gt;Homepage&lt;/a&gt;&lt;br /&gt;»Linux Screenshots: &lt;a href=&quot;http://www.thecodingstudio.com/opensource/linux/screenshots/&quot;&gt;The coding studio&lt;/a&gt;</content><link rel='replies' type='application/atom+xml' href='https://linuxinside.blogspot.com/feeds/1783911861382397939/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://www.blogger.com/comment/fullpage/post/3731923312219132020/1783911861382397939?isPopup=true' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='https://www.blogger.com/feeds/3731923312219132020/posts/default/1783911861382397939'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/3731923312219132020/posts/default/1783911861382397939'/><link rel='alternate' type='text/html' href='https://linuxinside.blogspot.com/2008/04/linux-distribution-chooser.html' title='Linux Distribution Chooser'/><author><name>Unknown</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3731923312219132020.post-5977167426424539486</id><published>2008-04-01T04:06:00.000-07:00</published><updated>2008-09-09T11:46:58.831-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="pidgin"/><title type='text'>Pidgin 2.4.1 (new)</title><content type='html'>&lt;p style=&quot;text-align: center;&quot;&gt;&lt;img src=&quot;http://farm4.static.flickr.com/3206/2379235387_59b7eb1aeb_o.png&quot; alt=&quot;Pidgin&quot; height=&quot;363&quot; width=&quot;334&quot; /&gt;&lt;/p&gt;&lt;span style=&quot;font-style: italic; font-weight: bold;&quot;&gt;Links:&lt;/span&gt;&lt;br /&gt;Homepage: &lt;a href=&quot;http://www.pidgin.im/&quot;&gt;Pidgin&lt;/a&gt;</content><link rel='replies' type='application/atom+xml' href='https://linuxinside.blogspot.com/feeds/5977167426424539486/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://www.blogger.com/comment/fullpage/post/3731923312219132020/5977167426424539486?isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='https://www.blogger.com/feeds/3731923312219132020/posts/default/5977167426424539486'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/3731923312219132020/posts/default/5977167426424539486'/><link rel='alternate' type='text/html' href='https://linuxinside.blogspot.com/2008/04/pidgin-241-new.html' title='Pidgin 2.4.1 (new)'/><author><name>Unknown</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3731923312219132020.post-2058502583706203875</id><published>2008-03-09T07:23:00.000-07:00</published><updated>2008-03-09T07:28:08.551-07:00</updated><title type='text'>Emesene - IM client</title><content type='html'>&lt;h4&gt;Index:&lt;/h4&gt; &lt;ul&gt;&lt;li&gt;&lt;a href=&quot;#about&quot;&gt;About&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;#screenshots&quot;&gt;Screenshots&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;#install&quot;&gt;Install&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;#conclusion&quot;&gt;Conclusion&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt; &lt;h4 id=&quot;about&quot;&gt;&lt;br /&gt;&lt;/h4&gt;&lt;h4 id=&quot;about&quot;&gt;About&lt;/h4&gt;&lt;br /&gt;Emesene is a  instant messenger (IM) client for the Windows Live Messenger (tm) network.&lt;br /&gt;It runs at Linux, Windows and Mac OSX.&lt;br /&gt;Is is very simple to use, has no ads, is compatible with Messenger Plus, allows file transfer, lots of plugins, etc...&lt;br /&gt;&lt;br /&gt;&lt;h4 id=&quot;screenshots&quot;&gt;Screenshots&lt;/h4&gt; &lt;div style=&quot;text-align: center;&quot;&gt;&lt;br /&gt;[screenshots - click]&lt;br /&gt;&lt;/div&gt; &lt;div style=&quot;text-align: center;&quot;&gt;&lt;a href=&quot;http://farm4.static.flickr.com/3187/2320397203_1556310e47_o.png&quot;&gt;&lt;img style=&quot;border: 0px solid ; width: 240px; height: 150px;&quot; alt=&quot;screenshot #1&quot; title=&quot;screenshot #1&quot; src=&quot;http://farm4.static.flickr.com/3187/2320397203_5dca44b462_m.jpg&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://farm3.static.flickr.com/2242/2320397211_5e8d203869_o.png&quot;&gt;&lt;img style=&quot;border: 0px solid ; width: 240px; height: 150px;&quot; alt=&quot;screenshot #2&quot; title=&quot;screenshot #2&quot; src=&quot;http://farm3.static.flickr.com/2242/2320397211_a751004c1a_m.jpg&quot; /&gt;&lt;/a&gt;&lt;a href=&quot;http://farm4.static.flickr.com/3115/2320397213_63292804f7_o.png&quot;&gt;&lt;img style=&quot;border: 0px solid ; width: 240px; height: 150px;&quot; alt=&quot;screenshot #3&quot; title=&quot;screenshot #3&quot; src=&quot;http://farm4.static.flickr.com/3115/2320397213_2bea0efa2c_m.jpg&quot; /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;&lt;h4 id=&quot;install&quot;&gt;Install&lt;/h4&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;&lt;span style=&quot;text-decoration: underline; font-weight: bold;&quot;&gt;Debian based systems:&lt;/span&gt;&lt;br /&gt;&lt;ol&gt;&lt;li&gt;Add repositories to source list:&lt;br /&gt;&lt;code&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;$ sudo gedit /etc/source.list&lt;/span&gt;&lt;br /&gt;&lt;/code&gt;&lt;br /&gt;Add:&lt;br /&gt;&lt;code&gt;&lt;/code&gt;&lt;code&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;deb http://apt.emesene.org/ ./&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;deb-src http://apt.emesene.org/ ./&lt;/span&gt;&lt;br /&gt;&lt;/code&gt;&lt;/li&gt;&lt;li&gt;Update&lt;br /&gt;&lt;code&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;$ sudo apt-get update&lt;/span&gt;&lt;br /&gt;&lt;/code&gt;&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Install&lt;br /&gt;&lt;code style=&quot;font-weight: bold;&quot;&gt;$ sudo apt-get install emesene&lt;br /&gt;&lt;/code&gt;&lt;br /&gt;&lt;/li&gt;&lt;/ol&gt; &lt;/li&gt;&lt;li&gt;&lt;span style=&quot;text-decoration: underline; font-weight: bold;&quot;&gt;Installation from tar.gz (latest stable archive)&lt;/span&gt;&lt;br /&gt;&lt;ol&gt;&lt;li&gt;Go to:&lt;br /&gt;&lt;a href=&quot;http://sourceforge.net/project/showfiles.php?group_id=168206&quot;&gt;http://sourceforge.net/project/showfiles.php?group_id=168206&lt;br /&gt;&lt;/a&gt;&lt;/li&gt;&lt;li&gt;Download the latest version (eg:):&lt;br /&gt;&lt;code&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;$ wget http://downloads.sourceforge.net/emesene/emesene-r999.tar.gz&lt;br /&gt;&lt;/span&gt;&lt;/code&gt;&lt;br /&gt;&lt;span style=&quot;font-family:mon;&quot;&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;&lt;/ol&gt; &lt;/li&gt;&lt;li&gt;&lt;span style=&quot;font-family:mon;&quot;&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;&lt;span style=&quot;text-decoration: underline;&quot;&gt;SVN version&lt;/span&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt; &lt;ol&gt;&lt;li&gt;Visit this page for instructions:&lt;br /&gt;&lt;a href=&quot;http://emesene.org/trac/wiki/SVN&quot;&gt;http://emesene.org/trac/wiki/SVN&lt;br /&gt;&lt;/a&gt;&lt;/li&gt;&lt;/ol&gt; &lt;/li&gt;&lt;/ul&gt;&lt;br /&gt;&lt;h4 id=&quot;conclusion&quot;&gt;&lt;br /&gt;&lt;/h4&gt;&lt;h4 id=&quot;conclusion&quot;&gt;Conclusion&lt;/h4&gt;&lt;br /&gt;I already tried Pidgin, Amsn but it&#39;s Emesene i like best.&lt;br /&gt;Is is simple, attractive design.&lt;br /&gt;It has lots of cool plugins, eg:&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Youtube video&#39;s screenshot before the link to it.&lt;/li&gt;&lt;li&gt;Countdown to specific date (I&#39;m using this one - countdown to christmas :D )&lt;/li&gt;&lt;li&gt;Messenger plus&lt;/li&gt;&lt;li&gt;GmailNotify&lt;/li&gt;&lt;li&gt;Etc.&lt;/li&gt;&lt;/ul&gt; Just try it and have your own idea about it..</content><link rel='replies' type='application/atom+xml' href='https://linuxinside.blogspot.com/feeds/2058502583706203875/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://www.blogger.com/comment/fullpage/post/3731923312219132020/2058502583706203875?isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='https://www.blogger.com/feeds/3731923312219132020/posts/default/2058502583706203875'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/3731923312219132020/posts/default/2058502583706203875'/><link rel='alternate' type='text/html' href='https://linuxinside.blogspot.com/2008/03/emesene-im-client.html' title='Emesene - IM client'/><author><name>Unknown</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://farm4.static.flickr.com/3187/2320397203_5dca44b462_t.jpg" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3731923312219132020.post-3551800008806787406</id><published>2008-03-08T16:40:00.000-08:00</published><updated>2009-09-26T08:12:28.141-07:00</updated><title type='text'>Openbox - introduction/customization</title><content type='html'>&lt;span style=&quot;font-weight: bold; font-style: italic;&quot;&gt;Overview:&lt;/span&gt;&lt;span style=&quot;font-style: italic;&quot;&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt; &lt;/span&gt;&lt;/span&gt;At the end your system may have this look:&lt;br /&gt;&lt;br /&gt;&lt;div style=&quot;text-align: center;&quot;&gt;[screenshots - click]&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;&lt;div style=&quot;text-align: center;&quot;&gt;&lt;a href=&quot;http://farm3.static.flickr.com/2243/2243840113_cc3f5532e9_o.png&quot;&gt;&lt;img style=&quot;border: 0px solid ; width: 240px; height: 150px;&quot; alt=&quot;screenshot #1&quot; src=&quot;http://farm3.static.flickr.com/2243/2243840113_f8f7decaa1_m.jpg&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://farm3.static.flickr.com/2035/2243847877_793e3e4778_o.png&quot;&gt;&lt;img style=&quot;border: 0px solid ; width: 240px; height: 150px;&quot; alt=&quot;screenshot #2&quot; src=&quot;http://farm3.static.flickr.com/2035/2243847877_0649012e4f_m.jpg&quot; /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/div&gt; &lt;span style=&quot;font-style: italic; text-decoration: underline;&quot;&gt;&lt;small&gt;&lt;br /&gt;&lt;/small&gt;&lt;/span&gt;&lt;span style=&quot;font-weight: bold; font-style: italic;&quot;&gt;&lt;/span&gt;&lt;span style=&quot;font-weight: bold; font-style: italic;&quot;&gt;Intro:&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Openbox is a windows manager (just like Metacity, sort of..), extremely light and customizable, known for its minimalistic appearance, as indicated for machines with poor performance.&lt;br /&gt;&lt;br /&gt;The Openbox allows perform the last/all* applications that are designed/made to Gnome/Kde without any need to run these (Gnome/Kde). You can also run the Openbox within the Gnome/Kde thus combining their features. It allows us to make the desktop cleaner and faster.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-weight: bold; font-style: italic;&quot;&gt;Installation:&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Check the &lt;a href=&quot;http://icculus.org/openbox/index.php/Openbox:Download&quot; target=&quot;_blank&quot;&gt;homepage&lt;/a&gt;, or install the version available in the repositories:&lt;br /&gt;&lt;code&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;# aptitude install openbox &lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;# aptitude install obconf openbox-themes #RECOMMENDED_EXTRAS&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;/code&gt;To run Openbox:&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Logout; &lt;/li&gt;&lt;li&gt;Choose the session type: (1) Gnome/Openbox; (2) openbox-kde.desktop or (3) Openbox Session; &lt;/li&gt;&lt;li&gt;Login. &lt;/li&gt;&lt;/ul&gt;&lt;br /&gt;Option (3) runs only the Openbox, but future Gnome/Kde&#39;s applications could be executed (eg: gnome-panel)&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(204, 0, 0);&quot;&gt;Note:&lt;/span&gt; I recommend that you only [re]login (at openbox session) when thou finish the tutorial completely!&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-weight: bold; font-style: italic;&quot;&gt;Customization: &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;If you choose option (3) above, you will find out that your desktop is empty, and no kind of bar is displayed. Don&#39;t stress out :D&lt;br /&gt;&lt;br /&gt;&lt;ol&gt;&lt;li&gt;&lt;span style=&quot;font-weight: bold; text-decoration: underline;&quot;&gt;Double the configuration files:&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;code&gt;$ mkdir -p ~/.config/openbox/&lt;br /&gt;$ cp /etc/xdg/openbox/rc.xml ~/.config/openbox/rc.xml&lt;br /&gt;$ cp /etc/xdg/openbox/menu.xml ~/.config/openbox/menu.xml&lt;/code&gt;&lt;br /&gt;&lt;br /&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;The &lt;span style=&quot;font-weight: bold;&quot;&gt;rc.xml&lt;/span&gt; file is responsible for the configuration of shortcuts, themes, virtual desktop, etc. .. While the &lt;span style=&quot;font-weight: bold;&quot;&gt;menu.xml&lt;/span&gt; file is only responsible for setting the menu that appears when you click with the right mouse button on the desktop - edit this file in text mode can be boring and complicated, ahead there is a solution easier.&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;&lt;/li&gt;&lt;li&gt;&lt;span style=&quot;font-weight: bold; text-decoration: underline;&quot;&gt;Alt+F2: &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;The shortcut &lt;span style=&quot;font-weight: bold;&quot;&gt;Alt + F2&lt;/span&gt; aka &lt;span style=&quot;font-weight: bold;&quot;&gt;gnome-panel-control - run-dialog&lt;/span&gt; does not work for Openbox. I think this command essential in any Linux distribution, so let&#39;s find an alternative solution: &lt;span style=&quot;font-weight: bold;&quot;&gt;gmrun&lt;/span&gt; - installation:&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;&lt;code style=&quot;font-weight: bold;&quot;&gt;# aptitude install gmrun&lt;/code&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt; &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Define Alt-F2 as gmrun&#39;s shortcut:&lt;br /&gt;&lt;code style=&quot;font-weight: bold;&quot;&gt;$ gedit ~/.config/openbox/rc.xml&lt;/code&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt; &lt;/span&gt;&lt;br /&gt;Add the following code before;&lt;span style=&quot;font-weight: bold;&quot;&gt;&lt;code&gt;&amp;lt;/keyboard&amp;gt; &lt;/code&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;code&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;&amp;lt;keybind key=&quot;A-F2&quot;&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;&amp;lt;action name=&quot;execute&quot;&amp;gt;&lt;/span&gt;  &lt;span style=&quot;font-weight: bold;&quot;&gt;&lt;br /&gt;&amp;lt;execute&amp;gt;gmrun&amp;lt;/execute&amp;gt;&lt;/span&gt; &lt;span style=&quot;font-weight: bold;&quot;&gt;&lt;br /&gt;&amp;lt;/action&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;&amp;lt;/keybind&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;/code&gt;&lt;br /&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;Note&lt;/span&gt;: If you noticed, the last shortcut existing in rc.xml is &#39;&lt;span style=&quot;font-weight: bold;&quot;&gt;W-e&lt;/span&gt;&#39;, which launches &lt;span style=&quot;font-weight: bold;&quot;&gt;Konqueror&lt;/span&gt;. I replaced this with &lt;span style=&quot;font-weight: bold;&quot;&gt;Nautilus&lt;/span&gt;. I like it best.&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;    &lt;code style=&quot;font-weight: bold;&quot;&gt;&amp;lt;keybind key=&quot;W-e&quot;&amp;gt;&lt;br /&gt;&amp;lt;action name=&quot;Execute&quot;&amp;gt;&lt;br /&gt;&amp;lt;startupnotify&amp;gt;&lt;br /&gt;&amp;lt;enabled&amp;gt;true&amp;lt;/enabled&amp;gt;&lt;br /&gt;&amp;lt;name&amp;gt;Nautilus&amp;lt;/name&amp;gt;&lt;br /&gt;&amp;lt;/startupnotify&amp;gt;&lt;br /&gt;&amp;lt;command&amp;gt;nautilus&amp;lt;/command&amp;gt;&lt;br /&gt;&amp;lt;/action&amp;gt;&lt;br /&gt;&amp;lt;/keybind&amp;gt;&lt;/code&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;Note2&lt;/span&gt;:&lt;br /&gt;In my case, i had re-login the session for the shortcuts work correctly.&lt;br /&gt;&lt;br /&gt;&lt;/li&gt;&lt;li&gt;&lt;span style=&quot;font-weight: bold; text-decoration: underline;&quot;&gt;Add a panel:&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;I think that all of us like to have some kind of panel. To see minimized windows, icon tray and some shortcuts.&lt;br /&gt;There are several alternatives such as: &lt;span style=&quot;font-weight: bold;&quot;&gt;pypanel&lt;/span&gt; ,&lt;span style=&quot;font-weight: bold;&quot;&gt; fbpanel&lt;/span&gt;, gnome-panel, xfce4-panel, etc.&lt;br /&gt;I&#39;ll choose &lt;span style=&quot;font-weight: bold;&quot;&gt;pypanel&lt;/span&gt;:&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;&lt;code&gt;$ aptitude install pypanel&lt;/code&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Pypanel Customization:&lt;br /&gt;The configuration file is ~/.pypanelrc. Before change/edit him I recommend to backup it:&lt;br /&gt;&lt;code style=&quot;font-weight: bold;&quot;&gt;$ cp ~/.pypanelrc ~/.pypanelrcbackup&lt;/code&gt;&lt;br /&gt;&lt;br /&gt;Now, take this code (link) a save it at:&lt;br /&gt;&lt;code style=&quot;font-weight: bold;&quot;&gt;$ gedit ~/.pypanelrc&lt;/code&gt;&lt;/li&gt;&lt;/ul&gt;&lt;br /&gt;&lt;/li&gt;&lt;li&gt;&lt;span style=&quot;font-weight: bold; text-decoration: underline;&quot;&gt;Add pypanel to startup(or some other application):&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;code&gt; &lt;span style=&quot;font-weight: bold;&quot;&gt;$ gedit ~/.config/openbox/autostart.sh&lt;/span&gt;&lt;br /&gt;&lt;/code&gt;&lt;br /&gt;Paste this text:&lt;br /&gt;&lt;blockquote style=&quot;font-weight: bold;&quot;&gt;&lt;code&gt;# Run the system-wide support stuff&lt;br /&gt;. $GLOBALAUTOSTART&lt;br /&gt;# Programs to launch at startup&lt;br /&gt;pypanel &amp;amp;&lt;br /&gt;#/opt/wicd/tray.py &amp;amp; #WICD&lt;br /&gt;#conky &amp;amp; #CONKY&lt;br /&gt;# all commands must end with: &quot; &amp;amp;&quot;&lt;/code&gt;&lt;/blockquote&gt;&lt;br /&gt;&lt;br /&gt;Follow the example to add some other applications.&lt;br /&gt;&lt;br /&gt;&lt;/li&gt;&lt;li&gt;&lt;span style=&quot;font-weight: bold; text-decoration: underline;&quot;&gt;Edit Openbox&#39;s theme:&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;As I earlier explain, it&#39;s possible to edit Openbox&#39;s theme at the file menu.xml. But there is a solution more user friendly: &lt;span style=&quot;font-weight: bold;&quot;&gt;obmenu&lt;/span&gt;. To install obmenu:&lt;br /&gt;&lt;br /&gt;&lt;code&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;$ wget http://switch.dl.sourceforge.net/sourceforge/obmenu/obmenu-1.0.tar.gz&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;$ tar xvzf obmenu-1.0.tar.gz&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;$ cd obmenu-1.0/&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;# python setup.py install&lt;/span&gt;&lt;br /&gt;&lt;/code&gt;&lt;br /&gt;Open obmenu:&lt;br /&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;&lt;code&gt;$ obmenu&lt;/code&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;The you can add/remove/edit any kind of shortcuts, etc.&lt;br /&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;Note:&lt;/span&gt; To add a new menu, in the end you need to add a shortcut at Openbox 3 menu. Watch with some attention the available examples..&lt;/li&gt;&lt;/ol&gt;&lt;br /&gt;&lt;span style=&quot;font-weight: bold; text-decoration: underline;&quot;&gt;Conclusion:&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;This tutorial gives you the main ideas how to customize your system. Of course the are more applications you might use at Openbox, but these were my choice.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-weight: bold; text-decoration: underline;&quot;&gt;Other references:&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;»&lt;a href=&quot;http://icculus.org/openbox/index.php/Main_Page&quot; target=&quot;_blank&quot;&gt;Openbox homepage&lt;/a&gt;&lt;br /&gt;»&lt;a href=&quot;http://pypanel.sourceforge.net/&quot; target=&quot;_blank&quot;&gt;Pypanel homepage&lt;/a&gt;&lt;br /&gt;»&lt;a href=&quot;http://obmenu.sourceforge.net/&quot; target=&quot;_blank&quot;&gt;Obmenu homepage&lt;/a&gt;&lt;br /&gt;»&lt;a href=&quot;http://wiki.archlinux.org/index.php/Openbox&quot; target=&quot;_blank&quot;&gt;Archlinux wiki - openbox&lt;/a&gt;&lt;br /&gt;»&lt;a href=&quot;http://wiki.debian.org/Openbox&quot; target=&quot;_blank&quot;&gt;Debian wiki - openbox&lt;/a&gt; some interesting key shortcuts.&lt;br /&gt;»&lt;a href=&quot;http://www.box-look.org/&quot; target=&quot;_blank&quot;&gt;Box-Look.org - themes&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;»&lt;a href=&quot;http://www.pixelgirlpresents.com/images/desktops/Fabien_Egot/Tree-Eater2560.jpg&quot; target=&quot;_blank&quot;&gt;Used wallpaper&lt;/a&gt;!&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-weight: bold; text-decoration: underline;&quot;&gt;My files:&lt;/span&gt;&lt;br /&gt;There might be some differences with the screenshot displayed.&lt;br /&gt;»&lt;a href=&quot;http://dotfiles.org/%7Euterrorista/.pypanelrc&quot; target=&quot;_blank&quot;&gt;http://dotfiles.org/~uterrorista/.pypanelrc&lt;/a&gt;&lt;br /&gt;»&lt;a href=&quot;http://dotfiles.org/%7Euterrorista/.autostart.sh&quot; target=&quot;_blank&quot;&gt;http://dotfiles.org/~uterrorista/.autostart.sh&lt;/a&gt;&lt;br /&gt;»&lt;a href=&quot;http://dotfiles.org/%7Euterrorista/menu.xml&quot; target=&quot;_blank&quot;&gt;http://dotfiles.org/~uterrorista/menu.xml&lt;/a&gt;&lt;br /&gt;»&lt;a href=&quot;http://dotfiles.org/%7Euterrorista/rc.xml&quot; target=&quot;_blank&quot;&gt;http://dotfiles.org/~uterrorista/rc.xml &lt;/a&gt;&lt;br /&gt;&lt;span style=&quot;font-style: italic;&quot;&gt;&lt;small&gt;&lt;/small&gt;&lt;/span&gt;</content><link rel='replies' type='application/atom+xml' href='https://linuxinside.blogspot.com/feeds/3551800008806787406/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://www.blogger.com/comment/fullpage/post/3731923312219132020/3551800008806787406?isPopup=true' title='11 Comments'/><link rel='edit' type='application/atom+xml' href='https://www.blogger.com/feeds/3731923312219132020/posts/default/3551800008806787406'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/3731923312219132020/posts/default/3551800008806787406'/><link rel='alternate' type='text/html' href='https://linuxinside.blogspot.com/2008/03/openbox-introductioncustomization.html' title='Openbox - introduction/customization'/><author><name>Unknown</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://farm3.static.flickr.com/2243/2243840113_f8f7decaa1_t.jpg" height="72" width="72"/><thr:total>11</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3731923312219132020.post-6612641292221167857</id><published>2008-03-07T18:55:00.000-08:00</published><updated>2008-03-07T19:42:25.991-08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Linux"/><category scheme="http://www.blogger.com/atom/ns#" term="Tutorial"/><title type='text'>Set the battery in conky correctly</title><content type='html'>Configure the battery at Conky can be a nightmare looking for this solution at web &#39;cus there isn&#39;t very information about it. I already had this problem...&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;ACPI battery number is given as argument, at &#39;funtions&#39; &lt;span style=&quot;font-weight: bold;&quot;&gt;battery&lt;/span&gt;, &lt;span style=&quot;font-weight: bold;&quot;&gt;battery_bar&lt;/span&gt; and &lt;span style=&quot;font-weight: bold;&quot;&gt;battery_percent&lt;/span&gt;. By default the argument is BAT0. But if it doen&#39;t work, let&#39;s find out the correct argument:&lt;br /&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Open the terminal and type:&lt;/li&gt;&lt;/ul&gt;&lt;code style=&quot;font-weight: bold;&quot;&gt;$ ls /proc/acpi/battery&lt;br /&gt;&lt;br /&gt;&lt;/code&gt;&lt;ul&gt;&lt;li&gt;There can be various kind of output:&lt;/li&gt;&lt;/ul&gt;&lt;code style=&quot;font-weight: bold;&quot;&gt;CMB0&lt;br /&gt;BAT1&lt;br /&gt;BAT0&lt;br /&gt;...etc&lt;/code&gt;&lt;br /&gt;My output was: &lt;span style=&quot;font-weight: bold;&quot;&gt;CMB0&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Open the .conkyrc file and edit to (examples):&lt;/li&gt;&lt;/ul&gt;&lt;code style=&quot;font-weight: bold;&quot;&gt;${battery CMB0}&lt;br /&gt;${battery_bar CMB0}&lt;br /&gt;${battery_percent CMB0}&lt;/code&gt;&lt;br /&gt;&lt;br /&gt;Obviously, replace &lt;span style=&quot;font-weight: bold;&quot;&gt;CMB0&lt;/span&gt; with the output you received earlier.</content><link rel='replies' type='application/atom+xml' href='https://linuxinside.blogspot.com/feeds/6612641292221167857/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://www.blogger.com/comment/fullpage/post/3731923312219132020/6612641292221167857?isPopup=true' title='6 Comments'/><link rel='edit' type='application/atom+xml' href='https://www.blogger.com/feeds/3731923312219132020/posts/default/6612641292221167857'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/3731923312219132020/posts/default/6612641292221167857'/><link rel='alternate' type='text/html' href='https://linuxinside.blogspot.com/2008/03/set-battery-in-conky-correctly.html' title='Set the battery in conky correctly'/><author><name>Unknown</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>6</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3731923312219132020.post-103931213377278293</id><published>2008-03-04T12:39:00.000-08:00</published><updated>2008-09-09T14:20:22.292-07:00</updated><title type='text'>Get new Gimp&#39;s version @ Ubuntu</title><content type='html'>&lt;img src=&quot;http://farm3.static.flickr.com/2040/2310313065_ca5b04a637_m.jpg&quot; height=&quot;200&quot; align=&quot;right&quot; width=&quot;150&quot; /&gt;Today i found out that Ubuntu (&amp;amp; family) don&#39;t have access to the latest version of Gimp through repositories.&lt;br /&gt;&lt;br /&gt;We&#39;re stuck with version 2.4.2 instead the new version 2.4.5.&lt;br /&gt;&lt;br /&gt;Only Hardy Heron (8.04) will have access to it..&lt;br /&gt;So lets make this happen sonner :D&lt;br /&gt;&lt;ul&gt;&lt;br /&gt;&lt;li&gt;Edit the souce list:&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;&lt;code style=&quot;font-weight: bold;&quot;&gt;$ sudo gedit /etc/apt/sources.list&lt;br /&gt;&lt;/code&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;And add:&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;&lt;code style=&quot;font-weight: bold;&quot;&gt;deb http://apt.schmidtke-hb.de gutsy main&lt;br /&gt;deb-src http://apt.schmidtke-hb.de gutsy main&lt;br /&gt;&lt;/code&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Save and close, return to the terminal and type:&lt;/li&gt;&lt;/ul&gt;&lt;code style=&quot;font-weight: bold;&quot;&gt;$ wget apt.schmidtke-hb.de/aptrepository.asc&lt;br /&gt;$ sudo apt-key add aptrepository.asc&lt;br /&gt;$ sudo apt-get update&lt;br /&gt;$ sudo apt-get upgrade&lt;br /&gt;&lt;/code&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;If you don&#39;t have Gimp yet installed, just type:&lt;/li&gt;&lt;/ul&gt;&lt;code&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;$ sudo apt-get install gimp&lt;/span&gt;&lt;/code&gt;&lt;br /&gt;&lt;br /&gt;That&#39;s it!&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-weight: bold; font-style: italic;&quot;&gt;Links:&lt;/span&gt;&lt;br /&gt;»Homepage: &lt;a href=&quot;http://www.gimp.org/&quot;&gt;Gimp&lt;/a&gt;</content><link rel='replies' type='application/atom+xml' href='https://linuxinside.blogspot.com/feeds/103931213377278293/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://www.blogger.com/comment/fullpage/post/3731923312219132020/103931213377278293?isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='https://www.blogger.com/feeds/3731923312219132020/posts/default/103931213377278293'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/3731923312219132020/posts/default/103931213377278293'/><link rel='alternate' type='text/html' href='https://linuxinside.blogspot.com/2008/03/get-new-gimps-version-ubuntu.html' title='Get new Gimp&#39;s version @ Ubuntu'/><author><name>Unknown</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://farm3.static.flickr.com/2040/2310313065_ca5b04a637_t.jpg" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3731923312219132020.post-5428149337227085127</id><published>2008-03-01T12:59:00.000-08:00</published><updated>2008-09-09T14:30:33.647-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Debian"/><category scheme="http://www.blogger.com/atom/ns#" term="Linux"/><title type='text'>Debian - NVIDIA drivers</title><content type='html'>A quick and easy tutorial about how to install NVIDIA drivers as simply as possible.&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-weight: bold; font-style: italic;&quot;&gt;Prerequisites:&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;As a starting point, download the &lt;a href=&quot;http://www.nvidia.com/object/unix.html&quot;&gt;latest stable drivers&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;Then you’ll need to install a few packages :&lt;br /&gt;&lt;br /&gt;&lt;code&gt;$ sudo apt-get install build-essential linux-headers-$(uname -r)&lt;/code&gt;&lt;br /&gt;Debian Sarge users have to replace&lt;span style=&quot;font-weight: bold;&quot;&gt; linux-headers&lt;/span&gt; with&lt;span style=&quot;font-weight: bold;&quot;&gt; kernel-headers&lt;/span&gt;.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-weight: bold; font-style: italic;&quot;&gt;Installation&lt;/span&gt;:&lt;br /&gt;&lt;br /&gt;First you’ll need to kill the X server. You can do that by switching to console #1 : press CTRL-ALT-F1 simultaneously.&lt;br /&gt;&lt;br /&gt;Once there, log in with your username and password.&lt;br /&gt;&lt;br /&gt;Stop the graphical login manager :&lt;br /&gt;&lt;br /&gt;&lt;code&gt;$ sudo /etc/init.d/gdm stop&lt;/code&gt;&lt;br /&gt;Then install the drivers :&lt;br /&gt;&lt;br /&gt;&lt;code&gt;$ sudo sh NVIDIA-Linux-x86-1.0-9755-pkg1.run&lt;/code&gt;&lt;br /&gt;and follow the installation process.&lt;br /&gt;&lt;br /&gt;Make sure you tell the installer to automatically modify your &lt;span style=&quot;font-weight: bold;&quot;&gt;/etc/X11/xorg.conf&lt;/span&gt; file so you’ll end up using the NVIDIA drivers.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-style: italic; font-weight: bold;&quot;&gt;Xorg.conf&lt;/span&gt;:&lt;br /&gt;&lt;br /&gt;If you haven’t, then you simply have to make a few changes to your &lt;span style=&quot;font-weight: bold;&quot;&gt;/etc/X11/xorg.conf&lt;/span&gt; file. Here they are. Debian Sarge users have to modify &lt;span style=&quot;font-weight: bold;&quot;&gt;/etc/X11/XF86Config-4&lt;/span&gt; instead.&lt;br /&gt;&lt;br /&gt;In &lt;span style=&quot;font-weight: bold;&quot;&gt;Section “Modules”&lt;/span&gt; comment the&lt;span style=&quot;font-weight: bold;&quot;&gt; dri&lt;/span&gt; and &lt;span style=&quot;font-weight: bold;&quot;&gt;GLcore&lt;/span&gt; modules :&lt;br /&gt;&lt;br /&gt;&lt;code&gt;#Load &quot;dri&quot;&lt;br /&gt;#Load &quot;GLcore&quot;&lt;/code&gt;&lt;br /&gt;In &lt;span style=&quot;font-weight: bold;&quot;&gt;Section “Device”&lt;/span&gt; make sure you use the NVIDIA driver :&lt;br /&gt;&lt;br /&gt;Driver &quot;nvidia&quot;&lt;br /&gt;&lt;br /&gt;And finally comment the whole &lt;span style=&quot;font-weight: bold;&quot;&gt;Section “DRI”&lt;/span&gt; :&lt;br /&gt;&lt;br /&gt;&lt;code&gt;#Section &quot;DRI&quot;&lt;br /&gt;#        Mode    0666&lt;br /&gt;#EndSection&lt;/code&gt;&lt;br /&gt;Here is an example xorg.conf file with the proper changes made.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-weight: bold; font-style: italic;&quot;&gt;X:&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Once done, load the NVIDIA module :&lt;br /&gt;&lt;br /&gt;&lt;code&gt;$ sudo modprobe nvidia&lt;/code&gt;&lt;br /&gt;And restart the graphical login manager, which will bring back X :&lt;br /&gt;&lt;br /&gt;&lt;code&gt;$ sudo /etc/init.d/gdm start&lt;/code&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-weight: bold; font-style: italic;&quot;&gt;Tips:&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;If you happen to update your kernel, then you don’t need to reinstall the whole NVIDIA driver, but only the kernel module. So running this command will do the trick :&lt;br /&gt;&lt;br /&gt;&lt;code&gt;$ sudo sh NVIDIA-Linux-x86-1.0-9755-pkg1.run -K&lt;/code&gt;</content><link rel='replies' type='application/atom+xml' href='https://linuxinside.blogspot.com/feeds/5428149337227085127/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://www.blogger.com/comment/fullpage/post/3731923312219132020/5428149337227085127?isPopup=true' title='10 Comments'/><link rel='edit' type='application/atom+xml' href='https://www.blogger.com/feeds/3731923312219132020/posts/default/5428149337227085127'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/3731923312219132020/posts/default/5428149337227085127'/><link rel='alternate' type='text/html' href='https://linuxinside.blogspot.com/2008/03/debian-nvidia-drivers.html' title='Debian - NVIDIA drivers'/><author><name>serafim</name><uri>http://www.blogger.com/profile/09378997342964469679</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiL07MLFHCoe_48iLU9IIeVUwj5sOuepwYbRc3P2hEar6VhNaVJIa2bDhJciDBieUR03PDI0HLBD329T31l3W7zdYV9k3HUcaVifIo4cU8-lkIIOhwlOl7Tc9zcRESwlw/s220/306kq4.png'/></author><thr:total>10</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3731923312219132020.post-3523883862508488554</id><published>2008-02-19T15:02:00.000-08:00</published><updated>2008-09-09T14:34:03.115-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Joke"/><title type='text'>Geek Joke</title><content type='html'>&lt;ol&gt;&lt;li&gt;Eight bytes walk into a bar. The bartender asks:&lt;br /&gt;» &quot;&lt;span style=&quot;font-style: italic;&quot;&gt;Can I get you anything?&lt;/span&gt;&quot;&lt;br /&gt;» &quot;&lt;span style=&quot;font-style: italic;&quot;&gt;Yeah&lt;/span&gt;,&quot; reply the bytes, &quot;&lt;span style=&quot;font-style: italic;&quot;&gt;Make us a double!&lt;/span&gt;&quot;.&lt;br /&gt;&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Two bytes are sitting in a bar. One says:&lt;br /&gt;» &quot;&lt;span style=&quot;font-style: italic;&quot;&gt;I&#39;m not feeling so well. I think I might have a parity error.&lt;/span&gt;&quot;&lt;br /&gt;» &quot;&lt;span style=&quot;font-style: italic;&quot;&gt;Yeah&lt;/span&gt;,&quot; says the other, &quot;&lt;span style=&quot;font-style: italic;&quot;&gt;I thought you looked a bit off.&lt;/span&gt;&quot;&lt;br /&gt;&lt;/li&gt;&lt;/ol&gt;</content><link rel='replies' type='application/atom+xml' href='https://linuxinside.blogspot.com/feeds/3523883862508488554/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://www.blogger.com/comment/fullpage/post/3731923312219132020/3523883862508488554?isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='https://www.blogger.com/feeds/3731923312219132020/posts/default/3523883862508488554'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/3731923312219132020/posts/default/3523883862508488554'/><link rel='alternate' type='text/html' href='https://linuxinside.blogspot.com/2008/02/geek-joke.html' title='Geek Joke'/><author><name>Unknown</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3731923312219132020.post-8731069064736789910</id><published>2008-02-17T14:12:00.000-08:00</published><updated>2008-02-17T14:33:56.021-08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Arch Linux"/><category scheme="http://www.blogger.com/atom/ns#" term="Customization"/><category scheme="http://www.blogger.com/atom/ns#" term="Tutorial"/><title type='text'>My fonts @ Arch Linux</title><content type='html'>&lt;span style=&quot;font-weight: bold;&quot;&gt;Screenshot:&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;div style=&quot;text-align: center;&quot;&gt;&lt;a href=&quot;http://farm3.static.flickr.com/2092/2272765312_79cd07573b_o.png&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://farm3.static.flickr.com/2092/2272765312_b4c166a846_m.jpg&quot; /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;Need to install:&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;code&gt;pacman -S artwiz-fonts ttf-ms-fonts&lt;/code&gt;&lt;br /&gt;# artwiz-fonts is not really necessary but is a &#39;nice pack&#39;.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;Attention:&lt;/span&gt;&lt;br /&gt;Installing ttf-ms-fonts gives me a damm big bug! My fonts at the login became huge. Size 100 at lest. Use at you own risk...</content><link rel='replies' type='application/atom+xml' href='https://linuxinside.blogspot.com/feeds/8731069064736789910/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://www.blogger.com/comment/fullpage/post/3731923312219132020/8731069064736789910?isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='https://www.blogger.com/feeds/3731923312219132020/posts/default/8731069064736789910'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/3731923312219132020/posts/default/8731069064736789910'/><link rel='alternate' type='text/html' href='https://linuxinside.blogspot.com/2008/02/my-fonts-arch-linux.html' title='My fonts @ Arch Linux'/><author><name>Unknown</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://farm3.static.flickr.com/2092/2272765312_b4c166a846_t.jpg" height="72" width="72"/><thr:total>0</thr:total></entry></feed>