<?xml version="1.0" encoding="ISO-8859-1"?>

<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/">
	<channel>
		<title>LinuxQuestions.org - Blogs - carl0ski</title>
		<link>http://www.linuxquestions.org/questions/blog.php?u=141100</link>
		<description>LinuxQuestions.org offers a free Linux forum where Linux newbies can ask questions and Linux experts can offer advice. Topics include security, installation, networking and much more.</description>
		<language>en</language>
		<lastBuildDate>Tue, 24 Nov 2009 11:14:58 GMT</lastBuildDate>
		<generator>vBulletin</generator>
		<ttl>60</ttl>
		<image>
			<url>http://e1h7.simplecdn.net/lqcdn/images/questions/images/misc/rss.jpg</url>
			<title>LinuxQuestions.org - Blogs - carl0ski</title>
			<link>http://www.linuxquestions.org/questions/blog.php?u=141100</link>
		</image>
		<item>
			<title>Truecrypt Ubuntu Hardy (linux kernel 2.6.24 +)</title>
			<link>http://www.linuxquestions.org/questions/blog.php?b=834</link>
			<pubDate>Tue, 01 Jan 2008 12:43:40 GMT</pubDate>
			<description><![CDATA[After hours of fiddling i found a method of installing Truecrypt 
 
What you'll need 
$sudo apt-get build-essentials dmsetup linux-sources-`uname -r`...]]></description>
			<content:encoded><![CDATA[<div><br />
After hours of fiddling i found a method of installing Truecrypt<br />
<br />
What you'll need<br />
$sudo apt-get build-essentials dmsetup linux-sources-`uname -r`<br />
$cd /usr/src<br />
$sudo tar -xvjpf linux-sources-`uname -r`.tar.bz2<br />
$sudo ln -s  linux-sources-`uname -r` /usr/src/linux<br />
<br />
#patch i needed in Gentoo emerge tree <br />
I needed to patch my kernel with the following<br />
<div style="margin:20px; margin-top:5px">
	<div class="smallfont" style="margin-bottom:2px">Code:</div>
	<pre class="bbcodeblock" dir="ltr" style="
		margin: 0px;
		margin-right: -99999px;
		padding: 3px;
		border: 1px inset;
		width: 98%;
		height: 498px;
		text-align: left;
		overflow: auto">diff -Nrup a/Linux/Kernel/Dm-target.c b/Linux/Kernel/Dm-target.c
--- Linux/Kernel/Dm-target.c	2007-04-24 18:32:06.000000000 +0200
+++ b/Linux/Kernel/Dm-target.c	2007-12-22 15:07:56.000000000 +0100
@@ -375,7 +375,11 @@ static void dereference_bio_ctx (struct 
 	if (!atomic_dec_and_test (&amp;bc-&gt;ref_count))
 		return;
 
+#if LINUX_VERSION_CODE &lt; KERNEL_VERSION(2,6,24)
 	bio_endio (bc-&gt;orig_bio, bc-&gt;orig_bio-&gt;bi_size, bc-&gt;error);
+#else
+	bio_endio (bc-&gt;orig_bio, bc-&gt;error);
+#endif
 	mempool_free (bc, tc-&gt;bio_ctx_pool);
 }
 
@@ -417,24 +421,35 @@ static void work_process (void *qdata)
 }
 
 
+#if LINUX_VERSION_CODE &lt; KERNEL_VERSION(2,6,24)
 static int truecrypt_endio (struct bio *bio, unsigned int bytes_done, int error)
+#else
+static int truecrypt_endio (struct bio *bio, int error)
+#endif
 {
 	struct bio_ctx *bc = (struct bio_ctx *) bio-&gt;bi_private;
 	struct target_ctx *tc = (struct target_ctx *) bc-&gt;target-&gt;private;
 	struct bio_vec *bv;
 	int seg_no;
 	
+#if LINUX_VERSION_CODE &lt; KERNEL_VERSION(2,6,24)
 	trace (1, &quot;end: sc=%llu fl=%ld rw=%ld sz=%d ix=%hd vc=%hd dn=%d er=%d\n&quot;,
 		(unsigned long long) bio-&gt;bi_sector, bio-&gt;bi_flags, bio-&gt;bi_rw, bio-&gt;bi_size, bio-&gt;bi_idx, bio-&gt;bi_vcnt, bytes_done, error);
+#else
+	trace (1, &quot;end: sc=%llu fl=%ld sz=%ld rw=%ld ix=%hd vc=%hd er=%d\n&quot;,
+		(unsigned long long) bio-&gt;bi_sector, bio-&gt;bi_flags, bio-&gt;bi_size, bio-&gt;bi_rw, bio-&gt;bi_idx, bio-&gt;bi_vcnt, error);
+#endif
 
 	if (error != 0)
 		bc-&gt;error = error;
 
+#if LINUX_VERSION_CODE &lt; KERNEL_VERSION(2,6,24)
 	if (bio-&gt;bi_size)
 	{
 		trace (2, &quot;Outstanding IO: %d\n&quot;, bio-&gt;bi_size);
 		return 1;
 	}
+#endif
 
 	if (bio_data_dir (bio) == READ)
 	{</pre>
</div>Save this as a text file named<br />
truecrypt2.6.24.patch<br />
<br />
Run <br />
#sudo  patch -p0 -i truecrypt2.6.24.patch<br />
<br />
It will now look as follows<br />
<div style="margin:20px; margin-top:5px">
	<div class="smallfont" style="margin-bottom:2px">Code:</div>
	<pre class="bbcodeblock" dir="ltr" style="
		margin: 0px;
		margin-right: -99999px;
		padding: 3px;
		border: 1px inset;
		width: 98%;
		height: 178px;
		text-align: left;
		overflow: auto">$ sudo  patch -p0 -i for2.6.23.patch
can't find file to patch at input line 4
Perhaps you used the wrong -p or --strip option?
The text leading up to this was:
--------------------------
|diff -Nrup a/Linux/Kernel/Dm-target.c b/Linux/Kernel/Dm-target.c
|--- carl/Linux/Kernel/Dm-target.c	2007-04-24 18:32:06.000000000 +0200
|+++ b/Linux/Kernel/Dm-target.c	2007-12-22 15:07:56.000000000 +0100
--------------------------
File to patch:</pre>
</div>File to patch enter the full path into the ture crypt source code<br />
<b>/home/carl/Desktop/truecrypt-4.3a-source-code/Linux/Kernel/Dm-target.c</b><br />
<br />
finally build truecrypt<br />
$cd /home/carl/Desktop/truecrypt-4.3a-source-code/Linux<br />
$sudo sh ./build.sh<br />
$sudo sh ./install.sh<br />
<br />
#load truecrypt module<br />
$sudo modprobe truecrypt<br />
<br />
All should be good to go</div>

]]></content:encoded>
			<dc:creator>carl0ski</dc:creator>
			<guid isPermaLink="true">http://www.linuxquestions.org/questions/blog.php?b=834</guid>
		</item>
		<item>
			<title>K9Copy: A gift from god - Backup DVD Disc/image or VOB files to x264 file with AC3 Sound</title>
			<link>http://www.linuxquestions.org/questions/blog.php?b=476</link>
			<pubDate>Wed, 10 Jan 2007 10:24:56 GMT</pubDate>
			<description>I saw this new x264 and felt in has evolved to a point it is a healthy choice for backing up my media 
 
My goal copy a DVD to a High Quality x264...</description>
			<content:encoded><![CDATA[<div>I saw this new x264 and felt in has evolved to a point it is a healthy choice for backing up my media<br />
<br />
My goal copy a DVD to a High Quality x264 AVI file without losing the original digital 6 channel sound.<br />
<br />
<b>Tools needed</b><br />
<br />
K9Copy<br />
Transcode<br />
x264<br />
Mplayer w/ Mencoder<br />
libdvdcss<br />
<br />
First thing load k9copy <br />
1- Put your DVD in you drive, open the DVD<br />
<br />
From here you can rip to mpeg-4 , shrink dvd to a dvd-r or fiddle around with some tweaks. The later is what i need<br />
2- Settings&gt;Configure k9copy&gt;mEncoder<br />
<br />
What we are doing here is creating a new template for ripping DVD to AVI. There are 3 sections<br />
<b>Label:</b> (descriptive name for template)<br />
<br />
<b>Video:</b> (Where you chose your Video format, it is Equivilent to -ovc &lt;codec&gt; option in mencoder) <br />
<br />
<b>Audio:</b> (Where you chose your Audio format, it is Equivilent to -oac &lt;codec&gt; option in mencoder) <br />
<br />
i chose to call my template High Quality.<br />
Video i chose x264<br />
Audio i chose copy   (since i want to purely copy the ac3 from the dvd)<br />
<br />
<b>My Choice</b><br />
<b>Label</b>: High Quality<br />
   Video: x264<br />
   Audio: copy<br />
<br />
<b>4-</b> Click Apply and look into the MPEG-4 settings on the left<br />
<br />
<b>5-</b> Video Codec: here you should see your label High Quality Select it <br />
(if it doesnt appear exit settings screen and try again)<br />
<br />
<b>6-</b> Choose you size and resolution and you down <br />
(click OK/Apply and hit the MPEG-4 button to begin)<br />
<br />
<b>7-</b> Put your feet up and relax<br />
<br />
<br />
<b>EndNote</b><br />
do black bars annoy you as much as you?<br />
one last step if you want to rid them <br />
<br />
Mplayer has a feature called autocrop<br />
try it<br />
<b>mplayer dvd://1 -vf cropdetect </b><br />
you'll notice the black bars top bottom left and right are gone. Whats even better it will tell you how to get rid of the permanently &gt; below<br />
<b>[CROP] Crop area: X: 1..719  Y: 70..505  (-vf crop=704:432:10:72).</b><br />
<br />
take this section<br />
<b>-vf crop=704:432:10:72</b><br />
 and tack it into you Mencoder setting in k9copy<br />
<br />
I added to the Audio Section so it looks like this<br />
<b>copy -vf crop=704:432:10:72</b></div>

]]></content:encoded>
			<dc:creator>carl0ski</dc:creator>
			<guid isPermaLink="true">http://www.linuxquestions.org/questions/blog.php?b=476</guid>
		</item>
		<item>
			<title><![CDATA[XGL / Compiz & KDE]]></title>
			<link>http://www.linuxquestions.org/questions/blog.php?b=329</link>
			<pubDate>Sat, 16 Sep 2006 13:03:43 GMT</pubDate>
			<description>XGL may be blasted as eye candy , that may be true but it is also very productive. 
The eye candy is in reality a side effect of the highly...</description>
			<content:encoded><![CDATA[<div>XGL may be blasted as eye candy , that may be true but it is also very productive.<br />
The eye candy is in reality a side effect of the highly responsive nature of hardware drawn dektops<br />
Windows move and scroll real time, Pages of text scroll by smoothly and dont grind down your machine.<br />
<br />
<br />
The Novell guide went off without a hitch<br />
http://www.novell.com/coolsolutions/feature/17174.html<br />
<br />
However some available option are out of date since it is fairly old<br />
the gentoo one has a more detailed &amp; upto date list.<br />
http://gentoo-wiki.com/Compiz<br />
<br />
<br />
my <br />
~/.kde/Autostart/compiz.desktop<br />
&lt;code&gt;[Desktop Entry]<br />
Encoding=UTF-8<br />
Exec=compiz --replace miniwin decoration transset wobbly fade minimize cube rotate zoom scale move neg resize place switcher trailfocus water &amp; gnome-window-decorator &amp;<br />
GenericName[en_US]=<br />
StartupNotify=false<br />
Terminal=false<br />
TerminalOptions=<br />
Type=Application<br />
X-KDE-autostart-after=kdesktop&lt;/code&gt;<br />
<br />
<br />
<br />
The top and bottom images are stored here<br />
/usr/share/compiz/<br />
<br />
<br />
My only grevance is the top and bottom bases have no productive purpose.</div>

]]></content:encoded>
			<dc:creator>carl0ski</dc:creator>
			<guid isPermaLink="true">http://www.linuxquestions.org/questions/blog.php?b=329</guid>
		</item>
		<item>
			<title>Are you a Linux Newbie? Fell off the Windows Ship Without a Paddle?</title>
			<link>http://www.linuxquestions.org/questions/blog.php?b=33</link>
			<pubDate>Thu, 12 Jan 2006 11:05:34 GMT</pubDate>
			<description><![CDATA[i just thought i'd make a quick list to aid in quickly understanding and feeling comfortable using Linux. 
Since my favourite Distro is Mandriva ,...]]></description>
			<content:encoded><![CDATA[<div>i just thought i'd make a quick list to aid in quickly understanding and feeling comfortable using Linux.<br />
Since my favourite Distro is Mandriva , and i find it quite easy to learn.<br />
I recommend it.<br />
<br />
<br />
Recommended Software<br />
<br />
KDE         equivilent to the icons and Startbar in Windows.<br />
<br />
Konquerer   Equivilant to Internet Explorer both can be used to browse the web and manage files on your Hardrive. Even rips audio CDs 'audiocd://'.<br />
<br />
Amarok      Similar to iTunes, it Is easy to use powerful music player, and like itunes allows you to sort music very thoroughly. Added ability to drag files in and out of amarok to Konquerer.<br />
<br />
Ksysguard   Windows Task Manager<br />
<br />
Kmix        Windows Sound Volume Manager<br />
<br />
Kcontrol    Equivilent of Control Panel (kcontrol can configure every shortcut, icon, colour, how your desktop looks sounds feels acts) <br />
<br />
Mandriva Control Centre    Windows Control Panel features add/remove software/hardware, configure Hardware, Login Settings(Usernames)<br />
<br />
<br />
<br />
<br />
How it Works<br />
<br />
/           equivlent to C:/ drive in windows it is the heart of your system (is it helps just imagine there is a letter at the start.)<br />
<br />
/home       equivilent to Documents And Settings in Windows, This folder contains a folder for each user and stores all you personal settings, Documents and program history.<br />
<br />
<br />
/etc        Windows Registry, like the registry etc stores startup settings and hardware configurations<br />
<br />
<br />
/bin<br />
/lib        is probably most like c:/Windows/System directory it keeps core applications, and extensions.<br />
<br />
<br />
/usr        Program Files: /usr directory tends to store most software you install for personal use including media players and browsers.<br />
<br />
/tmp        c:\windows\temp Linux however uses it differently purely delete immediately data only.<br />
<br />
/var        c:\windows\temp Linux uses the /var folder to temporarily store information for currently open programs, it generally isnt deleted since it caches software and aids in quick loading.<br />
<br />
now anything contained within<br />
/mnt/          is equivilent to drives available in &quot;My Computer&quot; excluding c:\<br />
All descriptive names in /mnt/ can be changed to your liking,<br />
the second word is the mount point it can be changed in the text file  /etc/fstab<br />
<br />
/mnt/floppy    is a:\ in windows<br />
/mnt/hdd       can be any other harddrives in you system<br />
/mnt/cdrom     is your first cdrom generally d:\ in windows<br />
/mnt/cdrom2    is your second cdrom generally e:\ in windows<br />
<br />
<br />
finally <br />
Swap        c:\pagefile.sys  unlike windows pagefile.sys linux swap is stored on a dedicated slice of you Harddrive, this allows it to run quickly efficently and doesnt fragment with other files (consistant performance).</div>

]]></content:encoded>
			<dc:creator>carl0ski</dc:creator>
			<guid isPermaLink="true">http://www.linuxquestions.org/questions/blog.php?b=33</guid>
		</item>
		<item>
			<title><![CDATA[Handy Recommended KDE Knowledge  "Please Add"]]></title>
			<link>http://www.linuxquestions.org/questions/blog.php?b=82</link>
			<pubDate>Wed, 04 Jan 2006 12:04:10 GMT</pubDate>
			<description>*Handy Hotkeys* 
    * Alt-ctrl-ESC : Launch Xkill mouse point (next window you click, dies :) 
    * Ctrl-ESC : Launch Task Manager 
    *...</description>
			<content:encoded><![CDATA[<div><b>Handy Hotkeys</b><br />
    * Alt-ctrl-ESC : Launch Xkill mouse point (next window you click, dies :)<br />
    * Ctrl-ESC : Launch Task Manager<br />
    * Alt-LeftMouse Button : Allows you to drag any window by moving mouse around freely<br />
    * Alt-RightMouse Button: Allows you to resize any window by moving mouse around freely<br />
<br />
<br />
<b>Emergency Global Keys </b><br />
<br />
    * Alt-Sys-E : send the terminate signal to all process<br />
    * Alt-Sys-I : stop all process (kill signal)<br />
    * Alt-Sys-U : put filesystems into 'read only' mode<br />
    * Alt-Sys-B : Reboot<br />
    * Alt-Sys-O : Switch off<br />
    * Alt-Sys-R : put the keyboard into raw mode<br />
    * Alt-Sys-S : instantly sync all hards disks<br />
    * Alt-Ctrl-Backspace : Kill X/KDE<br />
<br />
<br />
<b>Customised HotKeys in KDE</b><br />
Kde as you'd expect has numerous options for using your keyboard<br />
One of which is setting a key or string of keys to open programs<br />
    * Right click any Program shortcut on your desktop/KDE menu &gt; Edit Item &gt; Current Shortcut key<br />
    * Also can be found here &gt; KControl &gt; Accessibility &gt; Keyboard Shortcuts &gt; Command Shortcuts<br />
<br />
    * Don't Forget the Option &quot;Multi Key Mode&quot; allows more powerful shortcuts.<br />
      first key pressed launches a little menu, with list of actions.<br />
<br />
ie    set F1 , Z   hide Window border<br />
      set F1 , X   maximize Window <br />
      set F1 , F   Launch Firefox (set Under 'Command Shortcuts' keys as shown above)<br />
    <br />
<b>now press F1 , a menu is displayed</b><br />
Hide Window Border Z  Maximize Window X,  Launch Firefox F</div>

]]></content:encoded>
			<dc:creator>carl0ski</dc:creator>
			<guid isPermaLink="true">http://www.linuxquestions.org/questions/blog.php?b=82</guid>
		</item>
		<item>
			<title><![CDATA[Some interesting 'powercommands' in linux (i didnt know any of them)]]></title>
			<link>http://www.linuxquestions.org/questions/blog.php?b=61</link>
			<pubDate>Thu, 22 Dec 2005 11:35:26 GMT</pubDate>
			<description>I felt the need to read through a big book about Bash commands so far here are some of my favourites 
 
*Alias command : allows assigning a long line...</description>
			<content:encoded><![CDATA[<div>I felt the need to read through a big book about Bash commands so far here are some of my favourites<br />
<br />
<font size="15"><b>Alias command : allows assigning a long line of commands to a short phrase (alias shortcut='lengthycommand')</b></font><br />
<br />
bittorrent-curses --maxport 6666 --minport 7777 --maxuploadrate 10 (a pain in the but to type)<br />
but 'bit' isnt<br />
<br />
#alias bit='bittorrent-curses --maxport 6666 --minport 7777 --maxuploadrate 10'<br />
#bit suse.torrent <br />
is now the same as <br />
#bittorrent-curses --maxport 6666 --minport 7777 --maxuploadrate 10 suse.torrent<br />
<br />
<br />
<br />
<font size="15"><b>!! : automatically add the last command you typed</b></font><br />
#ls /usr/src/<br />
lists /usr/src<br />
<br />
#!!linux<br />
lists /usr/src/linux<br />
<br />
<br />
<br />
<font size="15"><b>TPUT Command allows you to alter terminal display.</b></font><br />
for example <br />
setb # &quot;changes the background  colour of you terminal screen&quot;<br />
setf # &quot;changes the font  colour of you terminal screen&quot;<br />
0-7 is support 0= black 7=white 2= green<br />
<br />
smul    &quot;underlines all you text&quot;<br />
rmul    &quot;removes underlines of all you text<br />
<br />
i made root permanently underlined green text with black backgroud by adding:<br />
tput setb 0<br />
tput setf 2<br />
tput smul<br />
<br />
to the file /etc/bashrc<br />
<br />
<br />
<br />
<font size="15"><b>Constantly change into a directory deep deep somewhere on your hdd? i do<br />
cd /home/carl0ski/.kde/apps/</b></font><br />
sure ~ variable helps but<br />
<br />
CDPATH &quot;a very powerful variable allows you to add directories to global access&quot;<br />
#export CDPATH=:.:/home/carl0ski/.kde/<br />
<br />
now no matter where you are if you type cd apps guess where you end up :)<br />
/home/carl0ski/.kde/apps#<br />
<br />
<br />
more to follow<br />
<br />
<b>Cut</b><br />
I hate it when posting a config file that it takes up muliple pages because of unneccessary # comments<br />
<br />
<b>Section &quot;ServerFlags&quot;<br />
    #DontZap # disable &lt;Crtl&gt;&lt;Alt&gt;&lt;BS&gt; (server abort)<br />
    #DontZoom # disable &lt;Crtl&gt;&lt;Alt&gt;&lt;KP_+&gt;/&lt;KP_-&gt; (resolution switching)<br />
    AllowMouseOpenFail # allows the server to start up even if the mouse does not work<br />
EndSection</b><br />
<br />
<br />
in this example  i fetch info from xorg.conf send it to<br />
cut , which -d looks for the # character and fetches everything before that (1st column) last that info is sent to<br />
tr  where -s shrinks extra spaces into one &quot;&quot; &quot; &quot;<br />
<br />
cat /etc/X11/xorg.conf | cut -d '#' -f 1| tr -s &quot;&quot; &quot; &quot;<br />
<br />
<b><br />
Section &quot;ServerFlags&quot;<br />
    AllowMouseOpenFail<br />
EndSection<br />
</b><br />
<br />
<br />
<b>Pause equivilant in linux bash<br />
SLEEP tseconds</b><br />
#sleep 3; ls /<br />
<br />
wait 3 seconds then list contents of / directory<br />
<br />
<br />
<b>Enter information into a prompt in linux bash<br />
( commands, text, passwords etc )</b><br />
<br />
(sleep 3; echo username; sleep 3; echo password; sleep 5; echo ping 127.0.0.1; sleep 3; echo &quot;exit&quot;) | telnet hostname<br />
<br />
<br />
Bash Rename Files (including spaces)<br />
in this example i am renaming all file names<br />
replacing  ed,  s0, 4e with Ed, S0, 4E<br />
<br />
<b>for i in *; do echo ${i};  a=`echo ${i}|replace ed Ed|replace s0 S0|replace 4e 4E`; mv -T &quot;${i}&quot; &quot;${a}&quot;; done</b><br />
<br />
Source<br />
ed - s04e13<br />
<br />
Destination<br />
Ed - S04E13<br />
<br />
<br />
#store the Mplayer autocrop settings to $crop<br />
#I wrote this line to help with Video encoding and mplayer playback<br />
#<br />
crop=$((sleep 5; echo &quot;q&quot;)| mplayer /media/Videos/Films/The.Fifth.Element.1997.CD1.mkv -ss 600 -vf cropdetect|cut -d '(' -f 2|cut -d ')' -f 1|grep crop|tail -1)  <br />
<br />
#after the sleep period all commands in the brackets () will be launched through the pipe |<br />
(sleep 5; echo &quot;i've waited 5 seconds&quot;)|vi<br />
<br />
#This will load VI text editor after 5 seconds &quot;i've waited 5 seconds&quot; will be typed into VI.<br />
</div>

]]></content:encoded>
			<dc:creator>carl0ski</dc:creator>
			<guid isPermaLink="true">http://www.linuxquestions.org/questions/blog.php?b=61</guid>
		</item>
		<item>
			<title>Fedora Core 4 (New Meaning to Dependancy hell)</title>
			<link>http://www.linuxquestions.org/questions/blog.php?b=53</link>
			<pubDate>Wed, 21 Dec 2005 00:15:03 GMT</pubDate>
			<description>i want to do something very simple  
but fedora makes it rediculously difficult, 
in a sense almost working against me. 
 
i want to install this rpm...</description>
			<content:encoded><![CDATA[<div>i want to do something very simple <br />
but fedora makes it rediculously difficult,<br />
in a sense almost working against me.<br />
<br />
i want to install this rpm<br />
fglrx64_6_8_0-8.16.20-1.x86_64.rpm<br />
<br />
dependancy hell is the result <font color="Red">(i actually thought someone made this up since Mandrake never had it)</font><br />
<br />
Yum is flakey at best it lacks, speed efficiency and user friendliness.<br />
yum install <br />
yum localinstall <br />
refuse to install it<br />
<blockquote>Total download size: 47 M<br />
Is this ok [y/N]: y<br />
Downloading Packages:<br />
unsigned package fglrx64_6_8_0-8.16.20-1.x86_64.rpm<br />
[root@carlos ~]#           </blockquote><font color="Red">In comparison urpmx<br />
urpmi - &quot;installs remote.rpms local.rpms anything in one step&quot;<br />
urpme - &quot;removes stated package and its dependencies&quot;<br />
</font><br />
<br />
rpm -i <br />
as i expected gives redundacy hell<br />
<br />
Add Remove Software is an extremely flakey piece of software.<br />
Lacks flexibility and a stand out bug/issue with it programming allows you to remove denpendencies,<br />
without automatically removing or warning of those rpms that depend on them.<br />
<br />
<font color="Red">In comparison RPMdrake allows this and APT-get on SuSE is also fair more polished. although lack easy to use groups as in Fedora, the groups allow you install any program available in the Repos as RedHat calls them</font><br />
<br />
<br />
Conclusion<br />
<br />
Suse and Mandriva are definetly the right choice <br />
Fedora isnt really suited to anyone who wishes to install software on it or plain use it for anything bar a server.<br />
Permanent (locked) office station or kiosk would suit it.<br />
but personal computer destroy the disc and burn it (piro).<br />
<br />
</div>

]]></content:encoded>
			<dc:creator>carl0ski</dc:creator>
			<guid isPermaLink="true">http://www.linuxquestions.org/questions/blog.php?b=53</guid>
		</item>
		<item>
			<title>Today URPMI S$%# itself and Fedora X86_64 DVD just happened to around. Good Idea??</title>
			<link>http://www.linuxquestions.org/questions/blog.php?b=51</link>
			<pubDate>Tue, 20 Dec 2005 11:21:10 GMT</pubDate>
			<description>The lesson i learned today is dont delete the entire /var cache directory  
apparently it causes problems 
 
 
To fix it i was going to quickly use...</description>
			<content:encoded><![CDATA[<div>The lesson i learned today is dont delete the entire /var cache directory <br />
apparently it causes problems<br />
<br />
<br />
To fix it i was going to quickly use mandriva repair/update <br />
<br />
but Fedora was sitting there staring at me.<br />
<br />
Am i happy? <br />
not so far <br />
Fedora core 4<br />
1. come with KDE 3.4.0 (bit outdated and .0 isnt ever a favoured version)<br />
2. Install took a very long time 30mins (equililent install in Mandriva x86_64 is 15mins)<br />
<br />
i'll post more after i locate what Fedora uses instead of URPMI<br />
<br />
#updatedb<br />
#locate &quot;urpmi alternative&quot;<br />
</div>

]]></content:encoded>
			<dc:creator>carl0ski</dc:creator>
			<guid isPermaLink="true">http://www.linuxquestions.org/questions/blog.php?b=51</guid>
		</item>
		<item>
			<title>Me and my IrritATIng motherboard drivers</title>
			<link>http://www.linuxquestions.org/questions/blog.php?b=44</link>
			<pubDate>Thu, 15 Dec 2005 10:38:30 GMT</pubDate>
			<description>IrratATIng 
 
ATI Xpress 200 i found to be truely magnificent piece of equipment , however the conducter is lazy. 
 
Today i found my way to the ATI...</description>
			<content:encoded><![CDATA[<div>IrratATIng<br />
<br />
ATI Xpress 200 i found to be truely magnificent piece of equipment , however the conducter is lazy.<br />
<br />
Today i found my way to the ATI site (/me shudders) and followed my nose through to ATI Xpress 200 Linux X86_64 drivers<br />
I though fantastic and downloaded the latest 8.19 South Bridge Drivers for ATI motherboards with GFX.<br />
ATI Customer Care &gt; Drivers and Software &gt; Linux &gt; Linux x86_64 &gt; Motherboards with ATI Graphics &gt; RADEON &gt;<br />
<br />
Foolishly i downloaded this 50 MB file twice and installed it countless times in every position you could imagine (and a rude response from ATI customer hate department in the middle somewhere).<br />
<br />
<br />
I went back to the ATI site and in a slow and pain staking process went through that rediculously long list in the left frame,<br />
(which happens not to be a collapsible tree format and linux half way down)<br />
i found the previous  drivers section. https://support.ati.com/ics/support/KBList.asp?folderID=1017<br />
<br />
Despite the fact the newest were marked as Xpress 200 compatible on the download page they weren't according to the Previous Drivers list.<br />
<br />
# ATI Proprietary Linux x86_64 Display Driver for XFree86 / X.Org Version 8.20.8<br />
# ATI Proprietary Linux x86_64 Driver 8.13.3 for Radeon Xpress 200 Series<br />
<br />
You Must L00k through the Previous drivers and locate the ones that are labelled with the &quot;for Radeon Xpress 200 Series&quot; tag.<br />
<br />
<br />
<br />
The moral of the story?<br />
Whoever educated ATI in Website Design should give up his day job.<br />
<br />
Why someone hasnt hacked the ATI site and redisned it for them is beyond me.<br />
<br />
When someone deems the differnce between their motherboard products and ATI Xpress 200<br />
as not important.<br />
Is a lunatic<br />
<br />
</div>

]]></content:encoded>
			<dc:creator>carl0ski</dc:creator>
			<guid isPermaLink="true">http://www.linuxquestions.org/questions/blog.php?b=44</guid>
		</item>
		<item>
			<title>Athlon64X2 + Xpress 200 Upgrade equates to Uplate</title>
			<link>http://www.linuxquestions.org/questions/blog.php?b=43</link>
			<pubDate>Thu, 15 Dec 2005 10:06:39 GMT</pubDate>
			<description>I Recently ploped down the cash on a MS-RS482M4 to accomidate a Athlon 64 X2. 
Replacing an honourable Athlon XP (may its ashes rest in peace) 
 
I...</description>
			<content:encoded><![CDATA[<div>I Recently ploped down the cash on a MS-RS482M4 to accomidate a Athlon 64 X2.<br />
Replacing an honourable Athlon XP (may its ashes rest in peace)<br />
<br />
I installed Mandriva 2006 X86_64 on my new beast with a few hiccups.<br />
<br />
First for some bizarre reason the Kernel on the install disc doesnt boot past IDE and SATA controllers unless<br />
# noapic <br />
is passed to the kernel like so<br />
# linux noapic<br />
<br />
that isnt a big deal however whenever noapic is passed in the kernel almost all onboard components do not work<br />
#Realtek 10/100<br />
#Realtek 7.1 HD ac97 <br />
#USB ports.<br />
definetly do not work when noapic is passed.<br />
<br />
but heres where things get strange once installation is finished <br />
you must NOT! add noapic or nolocalapic as the computer will not boot if there is a USB device plugged and NIC will not connect ever!<br />
<br />
but once i got past here all smooth sailing,<br />
Well allllmost!! :(<br />
<br />
<br />
to be concluded</div>

]]></content:encoded>
			<dc:creator>carl0ski</dc:creator>
			<guid isPermaLink="true">http://www.linuxquestions.org/questions/blog.php?b=43</guid>
		</item>
		<item>
			<title>Athlon 64 are so Fast even the time flies by.</title>
			<link>http://www.linuxquestions.org/questions/blog.php?b=42</link>
			<pubDate>Thu, 15 Dec 2005 09:52:05 GMT</pubDate>
			<description>an issue floating around with some Athlon 64 processors 
 
the date wizzes by rapidly  
what a nightmare  
imagine waking up 9 december and seeing it...</description>
			<content:encoded><![CDATA[<div>an issue floating around with some Athlon 64 processors<br />
<br />
the date wizzes by rapidly <br />
what a nightmare <br />
imagine waking up 9 december and seeing it is December 26 <br />
arghhhhhhhh crap!<br />
<br />
My Resolution:<br />
took a hell of lot experimenting but<br />
append<br />
'no_timer_check notsc'  to your Bootloader<br />
<br />
<br />
(/etc/lilo.conf) mine looks like this<br />
image=/boot/vmlinuz<br />
	label=&quot;linux&quot;<br />
	root=/dev/hda5<br />
	initrd=/boot/initrd.img<br />
	append=&quot;no_timer_check notsc splash=silent apm=off&quot;<br />
	vga=791</div>

]]></content:encoded>
			<dc:creator>carl0ski</dc:creator>
			<guid isPermaLink="true">http://www.linuxquestions.org/questions/blog.php?b=42</guid>
		</item>
	</channel>
</rss>
