<?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: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-212915250286777612</id><updated>2011-11-27T15:29:52.283-08:00</updated><category term='Linux Software'/><category term='Linux Configs'/><category term='Linux Desktops'/><category term='Linux Hardware'/><title type='text'>Virtual Disaster</title><subtitle type='html'></subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://linuxbased.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/212915250286777612/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://linuxbased.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>Patrick Cantu</name><uri>http://www.blogger.com/profile/03080234782913328819</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>6</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-212915250286777612.post-8971275002769969704</id><published>2007-02-10T22:11:00.000-08:00</published><updated>2007-02-08T20:47:15.619-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Linux Hardware'/><title type='text'>A New System, A New Way</title><content type='html'> Well I finnaly got my system!!! Now I can do what I wanted to do in the begining, make video tutorials. Screenshots are a good way to display stuff but they sometimes lack what you wanna get thru to the user. For instance my screenshot of screen tabs. Yes it shows what I'm talking about but has users not knowing what they really do. As a result people don't fully understand what they are looking at. Anyways here are the specs of my new system.&lt;br /&gt;&lt;ul&gt;&lt;li&gt;AMD Athlon 64 Processor 4000+&lt;/li&gt;&lt;li&gt;1 Gigabyte DDR2 Ram&lt;/li&gt;&lt;li&gt;Nvidia GeForce 6600V+ 512MB/DDR2 PCI-Express&lt;li&gt;Biostar GeForce6100-M9 Mainboard&lt;/li&gt;&lt;li&gt;Sony DVD-R/RW Burner&lt;/li&gt;&lt;li&gt;400 Gigabyte SATA Hard Drive&lt;/li&gt;&lt;li&gt;A Huge CPU Fan (I have to get a picture of it)&lt;/ul&gt;May not be much but it's better than the crappy Dell I was using!&lt;br /&gt;So I guess I'll get started on my videos !!!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/212915250286777612-8971275002769969704?l=linuxbased.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://linuxbased.blogspot.com/feeds/8971275002769969704/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=212915250286777612&amp;postID=8971275002769969704' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/212915250286777612/posts/default/8971275002769969704'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/212915250286777612/posts/default/8971275002769969704'/><link rel='alternate' type='text/html' href='http://linuxbased.blogspot.com/2007/02/new-system-new-way.html' title='A New System, A New Way'/><author><name>Patrick Cantu</name><uri>http://www.blogger.com/profile/03080234782913328819</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-212915250286777612.post-5897155542391709565</id><published>2007-02-01T17:35:00.000-08:00</published><updated>2007-02-01T18:51:25.033-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Linux Configs'/><title type='text'>Bash Aliases</title><content type='html'>Ok I know most Linux users know what &lt;a href="http://www.gnu.org/software/bash/"&gt;bash&lt;/a&gt; is, but do we actually use it to its full extent? Bash is very powerful but today I'll keep it simple. Aliases are a great way to either raname or string together commands. Basicly you can execute common commads with arguements or simply rename a command to better suite you. I use them for the simplest of commands. Not to mention this makes it easier to remember more difficult commands Anyways look at mine to get a example of what i mean.&lt;br /&gt;&lt;code&gt;&lt;br /&gt;#These are my root commands, useful for common package manager tasks&lt;br /&gt;alias pkgupgrade='pacman3 -Syu'&lt;br /&gt;alias pkginstall='pacman3 -S'&lt;br /&gt;alias pkgremove='pacman3 -Rsc'&lt;br /&gt;alias pkgsearch='pacman3 -Ss'&lt;br /&gt;alias pkgaur='makepkg -i'&lt;br /&gt;alias pkgclean='pacman3 -Scc'&lt;br /&gt;alias pkgpretend='pacman3 -Sp'&lt;br /&gt;alias Env-update='source /etc/profile'&lt;br /&gt;alias aurdir='cd /var/abs/local'&lt;br /&gt;&lt;br /&gt;#Here are my $USER aliases&lt;br /&gt;alias Screen='screen'&lt;br /&gt;alias dead-screen='killall screen ; screen -wipe'&lt;br /&gt;alias mp3blaster='mp3blaster -f /tmp/irssiblaster'&lt;br /&gt;alias musicmove='mv ~/Downloads/*.mp3 /mnt/storage/Music/'&lt;br /&gt;alias moviemove='mv ~/Downloads/*.mpg /mnt/storage/Video/'&lt;br /&gt;alias convert='mp32ogg *.mp3 &amp;&amp; rm *.mp3'&lt;br /&gt;&lt;/code&gt;&lt;br /&gt;Now I know some of you are thinking that the commands I use for my root are londer than the actual command. Well they aren't! I'll tell ya why, I actually save keystrokes due to tab completion. For instance I would type 'pkgi (tab)' and viola "pkginstall" appears!!! See there is a method to my madness. There are even easier ways to exucute commands that bash offers called "functions", but at the moment I'm not familiar with them sorry. I'll update this post when I learn more.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/212915250286777612-5897155542391709565?l=linuxbased.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://linuxbased.blogspot.com/feeds/5897155542391709565/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=212915250286777612&amp;postID=5897155542391709565' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/212915250286777612/posts/default/5897155542391709565'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/212915250286777612/posts/default/5897155542391709565'/><link rel='alternate' type='text/html' href='http://linuxbased.blogspot.com/2007/02/bash-aliases.html' title='Bash Aliases'/><author><name>Patrick Cantu</name><uri>http://www.blogger.com/profile/03080234782913328819</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-212915250286777612.post-1801776715511872366</id><published>2007-01-31T20:08:00.000-08:00</published><updated>2007-01-31T21:30:36.271-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Linux Configs'/><title type='text'>Screen Tabs</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_LwmBw0X2sN0/RcF6sRQOCuI/AAAAAAAAAAM/KOkuEpnr48s/s1600-h/screentabs.png"&gt;&lt;img style="float:right; margin:0 0 10px 10px;cursor:pointer; cursor:hand;" src="http://3.bp.blogspot.com/_LwmBw0X2sN0/RcF6sRQOCuI/AAAAAAAAAAM/KOkuEpnr48s/s320/screentabs.png" border="0" alt=""id="BLOGGER_PHOTO_ID_5026433560086448866" /&gt;&lt;/a&gt;&lt;br /&gt;Well enough of my ranting about gnome lets get some work done. Lets make &lt;a href="www.gnu.org/software/screen/ "&gt;Screen&lt;/a&gt; functional.&lt;br /&gt;Here is what I can screen tabs. Rather than using hotkeys to switch between screens you can now see all open screen sessions and switch to them with the F&lt;number&gt; keys. (If you choose to do so.) &lt;br /&gt;&lt;code&gt;&lt;br /&gt;# binding the F1 - F8 keys to the first 8 screens, F11 = previous | F12 = next&lt;br /&gt;  bindkey -k k1 select 0&lt;br /&gt;  bindkey -k k2 select 1&lt;br /&gt;  bindkey -k k3 select 2&lt;br /&gt;  bindkey -k k4 select 3&lt;br /&gt;  bindkey -k k5 select 4&lt;br /&gt;  bindkey -k k6 select 5&lt;br /&gt;  bindkey -k k7 select 6&lt;br /&gt;  bindkey -k k8 select 7&lt;br /&gt;  bindkey -k F2 next&lt;br /&gt;  bindkey -k F1 prev&lt;br /&gt;&lt;br /&gt;# Optional name and command to execute&lt;br /&gt;screen -t irssi 1 irssi &lt;br /&gt;screen -t mp3 2 mp3blaster&lt;br /&gt;screen -t linux 3&lt;br /&gt;screen -t linux 4&lt;br /&gt;screen -t user 5&lt;br /&gt;screen -t admin 6 su&lt;br /&gt;&lt;br /&gt;# Display $USER and screen titles in a neat way :P&lt;br /&gt;caption always "%{=b dy}{ %{= dm}${USER} %{=b dy}}%={ %?%{= dc}%-Lw%?%{+b dy}(%{-b r}%n:%t%{+b dy})%?(%u)%?%{-dc}%?%{= dc}%+Lw%? %{=b dy}}" &lt;br /&gt;&lt;/code&gt;&lt;br /&gt;&lt;br /&gt;There are pros and cons of using screen this way.&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;Good:&lt;/span&gt; Run multiple screens with one command. Have the screen titles in constant view. Keybindings are always great!&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;Bad:&lt;/span&gt; If you want only one screen session you'll always have the number you put in screenrc. If you assign a command to execute it will execute each and everytime you run screen. If your a KDE user the "F1" key is already reserved. The same might go for other Desktop's.&lt;br /&gt;Also I know there is a application called &lt;a href="http://pubwww.fhzh.ch/~mgloor/screenie.html"&gt;Screenie&lt;/a&gt;, that is a wrapper for screen. It can manage screen but does it in a different way. Visit the link for more info.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/212915250286777612-1801776715511872366?l=linuxbased.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://linuxbased.blogspot.com/feeds/1801776715511872366/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=212915250286777612&amp;postID=1801776715511872366' title='3 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/212915250286777612/posts/default/1801776715511872366'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/212915250286777612/posts/default/1801776715511872366'/><link rel='alternate' type='text/html' href='http://linuxbased.blogspot.com/2007/01/screen-tabs.html' title='Screen Tabs'/><author><name>Patrick Cantu</name><uri>http://www.blogger.com/profile/03080234782913328819</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_LwmBw0X2sN0/RcF6sRQOCuI/AAAAAAAAAAM/KOkuEpnr48s/s72-c/screentabs.png' height='72' width='72'/><thr:total>3</thr:total></entry><entry><id>tag:blogger.com,1999:blog-212915250286777612.post-2255501715729232511</id><published>2007-01-31T19:32:00.000-08:00</published><updated>2007-01-31T19:53:02.947-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Linux Desktops'/><title type='text'>Giving Up Gnome</title><content type='html'>Ok I tried my best to use Gnome. Just it's .... well very dumb. What I mean is that everything is disorginized and confusing. Trying to get Nautilus to do simple things such as set the background wallpaper required searching the net for a script or application to do it. Yes I know you can go to the settings and do it there but in my opinion thats counter productive. Thats another step I must take to perform a simple task. Anyways aside from that i wanted a terminal that could be hidden like &lt;a href="http://yakuake.uv.ro/"&gt;YaKuake&lt;/a&gt; with a programable hot-key.&lt;br /&gt;While searching I did find one but it was outdated and not compatible with the current version of gnome. So to make a long painful story short I've gone back to KDE. In a earlier post I made a statement saying KDE has too much for a default desktop, yes I know. Thanks to &lt;a href="http://www.kdemod.ath.cx/"&gt;KDEmod&lt;/a&gt; however I've changed my mind! These guys are fellow Archer's that wanted to make KDE more lean and customized for Arch Linux users. Check out the link to find out more. As a result I can install only the applications I need, rather than get everything and the kitchen sink. I guess once you go KDE you dont go back.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/212915250286777612-2255501715729232511?l=linuxbased.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://linuxbased.blogspot.com/feeds/2255501715729232511/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=212915250286777612&amp;postID=2255501715729232511' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/212915250286777612/posts/default/2255501715729232511'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/212915250286777612/posts/default/2255501715729232511'/><link rel='alternate' type='text/html' href='http://linuxbased.blogspot.com/2007/01/giving-up-gnome.html' title='Giving Up Gnome'/><author><name>Patrick Cantu</name><uri>http://www.blogger.com/profile/03080234782913328819</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-212915250286777612.post-4313825864821293259</id><published>2007-01-30T21:43:00.000-08:00</published><updated>2007-01-31T21:49:14.107-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Linux Software'/><title type='text'>A Fix For Sakura</title><content type='html'>Gnome is turning out fine with the exception of a few applications.&lt;br /&gt;The default terminal, gnome-terminal, is slow and a little to heavy. As a result I went looking for a alternative and stumbled upon &lt;a href="http://pleyades.net/david/sakura.php"&gt;sakura&lt;/a&gt;. Sakura is a light, fast vte and gtk based terminal. There was one problem though. Irssi and sakura weren't playing nice with each other. Thats ok though cause after writting the author he responded quickly with a fix. All I had to do was edit and comment out these lines in the source code. After that a simple "makepkg -e -f -i" got things compiling without fail. (I'll explain what that command is in a later post.)&lt;br /&gt;&lt;blockquote&gt;if (topage &lt;= gtk_notebook_get_n_pages(GTK_NOTEBOOK(sakura.notebook)))  gtk_notebook_set_current_page(GTK_NOTEBOOK(sakura.notebook), topage);             return TRUE;&lt;/blockquote&gt;&lt;br /&gt;This fixes the problem of using &lt;a href="http://www.irssi.org/"&gt;irssi&lt;/a&gt;, and sakura. Sakura's reserve for the "alt+number" to switch tabs interfered with irssi's use of the same keys to switch windows. With the simple fix above sakura and irssi are working flawlessly together. Thanks to David Gomez, the author of sakura for such a quick response!!!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/212915250286777612-4313825864821293259?l=linuxbased.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://linuxbased.blogspot.com/feeds/4313825864821293259/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=212915250286777612&amp;postID=4313825864821293259' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/212915250286777612/posts/default/4313825864821293259'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/212915250286777612/posts/default/4313825864821293259'/><link rel='alternate' type='text/html' href='http://linuxbased.blogspot.com/2007/01/fix-for-sakura.html' title='A Fix For Sakura'/><author><name>Patrick Cantu</name><uri>http://www.blogger.com/profile/03080234782913328819</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-212915250286777612.post-9207991022941597260</id><published>2007-01-27T12:55:00.002-08:00</published><updated>2007-01-27T14:23:57.175-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Linux Desktops'/><title type='text'>Back To Gnome</title><content type='html'>Well I'm back on &lt;a href="http://www.gnome.org/"&gt;Gnome&lt;/a&gt; after a good run with &lt;a href="http://www.kde.org/"&gt;KDE&lt;/a&gt;.  Nothing against KDE just that in a default install there's well .... a little too much. For instance you have 3 variations of the same application. An easy, medium and hard versions so to speak. But since I use vim/gvim, I personally have no use of Kate. Now I'm not bad mouthing KDE it is a great desktop.&lt;br /&gt;Just that it's too much for me. A defualt Gnome install for me is very modular (at least on &lt;a href="http://www.archlinux.org/"&gt;Arch&lt;/a&gt; Linux). &lt;br /&gt;I was very surprised to see how far Gnome has come, and to also see how far it still needs to go.&lt;br /&gt;I won't start rambling about what I think they need to do. Anyways I am happy with Gnome for the time being.&lt;br /&gt;Another reason I chose Gnome is due to &lt;a href="http://beagle-project.org/"&gt;Beagle&lt;/a&gt;.&lt;br /&gt;Yes  I know it has &lt;a href="http://www2.blogger.com/www.mono-project.com/"&gt;Mono&lt;/a&gt; as a dependancy but when you do cross development you really stop caring.&lt;br /&gt;Anyways since &lt;a href="http://kat.mandrivia.org/"&gt;Kat&lt;/a&gt; got scraped and &lt;a href="http://www2.blogger.com/www.vandenoever.info/software/strigi/"&gt;Strigi&lt;/a&gt; is still in development Beagle is the only alternative. I do hope that Strigi becomes a competitor to Beagle, but in the meantime I'm using Beagle.&lt;br /&gt;Having brought up the positives of Gnome, it's time to start being fair.&lt;br /&gt;I still use &lt;a href="http://basket.kde.org/"&gt;Basket-Notes&lt;/a&gt; since &lt;a href="http://www.beatniksoftware.com/tomboy/"&gt;Tomboy&lt;/a&gt; lacks the features that Basket has. Although I'm using both of them so I can make a definate answer Basket seems to be winning at the moment.&lt;br /&gt;The transition hasn't been easy though. Having to look for replacements to certain applications has been a tough one.&lt;br /&gt;Instance, replacing amarok, I went thru 3 music players till I remembered &lt;a href="http://www.exaile.org/"&gt;Exaile&lt;/a&gt;.&lt;a href="http://listengnome.free.fr/"&gt;&lt;br /&gt;Listen&lt;/a&gt; and a few others either crashed or are just plain featureless.&lt;br /&gt;I'm still looking to replace gnome-terminal but haven't had any luck yet.&lt;br /&gt;Well back to the search to make Gnome more usuable for me!!!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/212915250286777612-9207991022941597260?l=linuxbased.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://linuxbased.blogspot.com/feeds/9207991022941597260/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=212915250286777612&amp;postID=9207991022941597260' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/212915250286777612/posts/default/9207991022941597260'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/212915250286777612/posts/default/9207991022941597260'/><link rel='alternate' type='text/html' href='http://linuxbased.blogspot.com/2007/01/back-to-gnome.html' title='Back To Gnome'/><author><name>Patrick Cantu</name><uri>http://www.blogger.com/profile/03080234782913328819</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry></feed>
