GNU | Linux

About.Linux-FC6 History

Hide minor edits - Show changes to markup

July 30, 2008, at 08:40 PM by 72.53.91.38 -
Changed line 258 from:
  1. Run: $ cedega Path_to_Unziped_Files/VisualBoyAdvace.exe
to:
  1. Run: $ cedega Path_to_Files/VisualBoyAdvace.exe
July 30, 2008, at 08:39 PM by 72.53.91.38 -
Changed lines 209-210 from:

(:cell align=center valign=top:)- Minor sound clipping

to:

(:cell align=center valign=top:)

  • Minor sound clipping
Changed line 215 from:

Note: Do not install the Office Assistant, it will make your installation unstable.

to:
  • Note: Do not install the Office Assistant, it will make your installation unstable.
Deleted lines 216-218:

(:cell valign=top:)- PowerPoint crashes while editing but presentations are ok. (:cell valign=top align=center width=210px:)Microsoft Office 2000 on Linux: Word (:cellnr valign=top:)Age of Mythology

Added lines 218-221:
  • PowerPoint crashes while editing but presentations are ok.

(:cell valign=top align=center width=210px:)Microsoft Office 2000 on Linux: Word (:cellnr valign=top:)Age of Mythology (:cell valign=top:)

July 30, 2008, at 08:35 PM by 72.53.91.38 -
Changed lines 214-215 from:

Notes:

  • Do not install the Office Assistant, it will make your installation unstable.
to:

Note: Do not install the Office Assistant, it will make your installation unstable.

July 30, 2008, at 08:34 PM by 72.53.91.38 -
Changed line 206 from:

(:cellnr valign=top:)Microsoft Office 2000

to:

(:cellnr valign=top:)Duke Nukem 3D (eDuke32)

Added lines 208-212:

(:cell valign=top:)Running smoothly (:cell align=center valign=top:)- Minor sound clipping (:cell valign=top align=center:)Duke Nukem 3D on Linux (:cellnr valign=top:)Microsoft Office 2000 (:cell valign=top:)

Changed line 217 from:

(:cell valign=top:)+ PowerPoint crashes while editing but presentations are ok.

to:

(:cell valign=top:)- PowerPoint crashes while editing but presentations are ok.

July 30, 2008, at 07:42 PM by 72.53.91.38 -
Changed line 141 from:
  1. Complete the Windows System Software installation. If the Windows Scripting download hangs, download it from here and save it to the sys directory. You can install it later by issuing $ wine scr56en.exe on that directory.
to:
  1. Complete the Windows System Software installation. If the Windows Scripting download hangs, you can get the executable from here. Save it to the sys directory and install it later by issuing $ wine scr56en.exe in that directory.
July 30, 2008, at 07:41 PM by 72.53.91.38 -
Changed line 141 from:
  1. Complete the Windows System Software installation.
to:
  1. Complete the Windows System Software installation. If the Windows Scripting download hangs, download it from here and save it to the sys directory. You can install it later by issuing $ wine scr56en.exe on that directory.
July 16, 2008, at 09:49 PM by 72.53.91.38 -
Changed lines 85-86 from:

In order to set and maintain the state of the backlight when the lid is closed, you can create a daemon and call it with laptop-mode-tools . This is specially handy if some of your applications (usually games) like to turn the panel backlight back on when resetting the video resolution or when going into fullscreen.

to:

In order to set and maintain the state of the backlight when the lid is closed, you can create a daemon and call it with laptop-mode-tools. This is specially handy if some of your applications (usually games) like to turn the panel backlight back on when resetting the video resolution or when going into fullscreen.

July 16, 2008, at 09:46 PM by 72.53.91.38 -
Changed line 115 from:
 LIGHT_ON=$(sudo /usr/sbin/radeontool light | grep “looks off”)
to:
 LIGHT_ON=$(/usr/sbin/radeontool light | grep “looks off”)
July 01, 2008, at 09:11 PM by 72.53.91.38 -
Changed lines 61-62 from:

You can determine the state of the switch by doing:

to:

You can determine the state of the lid switch by doing:

Changed lines 67-68 from:

You can use radeontool to turn on/off the backlight of the LCD panel. This tool is available in the dries repository. You can also download the source here. After installing both the laptop-mode-tools and radeontool packages, I created the following script:

to:

You can turn on/off the backlight of the LCD panel with radeontool. This tool is available from the dries repository. You can also download the source here. After installing both the laptop-mode-tools (also in the dries repository) and radeontool packages, I created the following script:

Changed lines 89-90 from:

Add the following lines to the /etc/acpi/actions/lm_lid.sh script:

to:

Add the following lines at the end of the /etc/acpi/actions/lm_lid.sh script:

July 01, 2008, at 09:05 PM by 72.53.91.38 -
Changed lines 83-84 from:

You can also use the script below as a daemon to maintain the state of the backlight. This is necessary if some of your applications (usually games) like to turn the backlight on when resetting the video resolution or going into fullscreen.

to:

Turn panel backlight off when lid closes

In order to set and maintain the state of the backlight when the lid is closed, you can create a daemon and call it with laptop-mode-tools . This is specially handy if some of your applications (usually games) like to turn the panel backlight back on when resetting the video resolution or when going into fullscreen.

Step 1

Add the following lines to the /etc/acpi/actions/lm_lid.sh script:

Added lines 92-104:

LID_CLOSED=$(cat /proc/acpi/button/lid/LID/state | grep open) if [ “$LID_CLOSED” = “” ]; then

 /usr/sbin/blightoffd &

else

 /usr/sbin/radeontool light on

fi @]

Step 2

Save the following script as /usr/sbin/blightoffd

[@

Changed line 108 from:
  1. Turns off panel backlight when computer lid is closed.
to:
  1. Keeps panel backlight off when computer lid is closed.
Changed lines 110-116 from:
  1. Does not interfere with manual light toggle

ON_OPEN=1

while [ 1 ]; do

to:

LID_CLOSED=$(cat /proc/acpi/button/lid/LID/state | grep open)

while [ “$LID_CLOSED” = “” ]; do

 LIGHT_ON=$(sudo /usr/sbin/radeontool light | grep “looks off”)
 if [ “$LIGHT_ON” = “” ]; then
   /usr/sbin/radeontool light off
 fi
 sleep 1
Changed lines 121-138 from:
 if [ “$LID_CLOSED” = “” ]; then
   LIGHT_ON=$(radeontool light | grep “looks off”)
   if [ “$LIGHT_ON” = “” ]; then
     radeontool light off
     echo “Turned back panel light off”
   fi
   if [ “$ON_OPEN” -eq 0 ]; then
     ON_OPEN=1
   fi
 else
   if [ “$ON_OPEN” -eq 1 ]; then
     radeontool light on
     echo “Turned back panel light on”
     ON_OPEN=0
   fi
 fi
 sleep 1
to:
Added line 125:
July 01, 2008, at 08:22 PM by 72.53.91.38 -
Changed lines 38-39 from:

Update (April 20, 2008): The most recent driver for the Radeon M300 card from ATI includes AIGLX support and offers improved overall performance. Use that driver instead of the one available from the Livna repository. However, if the latest ATI driver doesn’t really cut it for you, then download version 8.476, which works pretty well (right click, save as…).

to:

Update (April 20, 2008): The most recent driver for the Radeon M300 card from ATI includes AIGLX support and offers improved overall performance. Use that driver instead of the one available from the Livna repository. However, if the latest ATI driver doesn’t really cut it for you, then download version 8.476, which worked pretty well for me (right click, save as…).

July 01, 2008, at 08:21 PM by 72.53.91.38 -
Changed lines 38-39 from:

Update (April 20, 2008): The most recent driver for the Radeon M300 card from ATI includes AIGLX support and offers improved overall performance. Use that driver instead of the one available from the Livna repository. However, if you find the latest ATI driver unstable, you can download version 8.476 (which works pretty well) from here.

to:

Update (April 20, 2008): The most recent driver for the Radeon M300 card from ATI includes AIGLX support and offers improved overall performance. Use that driver instead of the one available from the Livna repository. However, if the latest ATI driver doesn’t really cut it for you, then download version 8.476, which works pretty well (right click, save as…).

July 01, 2008, at 08:07 PM by 72.53.91.38 -
Changed lines 72-73 from:

LIGHT=$(/usr/sbin/radeontool light | grep “looks on”)

to:

LIGHT=$(radeontool light | grep “looks on”)

Changed line 75 from:
       /usr/sbin/radeontool light on
to:
       radeontool light on
Changed line 77 from:
       /usr/sbin/radeontool light off
to:
       radeontool light off
Changed line 100 from:
   LIGHT_ON=$(sudo /usr/sbin/radeontool light | grep “looks off”)
to:
   LIGHT_ON=$(radeontool light | grep “looks off”)
Changed line 102 from:
     sudo /usr/sbin/radeontool light off
to:
     radeontool light off
Changed line 110 from:
     sudo /usr/sbin/radeontool light on
to:
     radeontool light on
July 01, 2008, at 08:05 PM by 72.53.91.38 -
Changed lines 72-73 from:

LIGHT=$(radeontool light | grep “looks on”)

to:

LIGHT=$(/usr/sbin/radeontool light | grep “looks on”)

Changed line 75 from:
       radeontool light on
to:
       /usr/sbin/radeontool light on
Changed line 77 from:
       radeontool light off
to:
       /usr/sbin/radeontool light off
July 01, 2008, at 08:04 PM by 72.53.91.38 -
Changed lines 61-62 from:

You can use radeontool to turn on/off the backlight of the LCD panel. This tool is available in the dries repository. You can also download the source here. After installing both the laptop-mode-tools and radeontool packages, I created the following script:

to:

You can determine the state of the switch by doing:

Added lines 64-69:

cat /proc/acpi/button/lid/LID/state @]

You can use radeontool to turn on/off the backlight of the LCD panel. This tool is available in the dries repository. You can also download the source here. After installing both the laptop-mode-tools and radeontool packages, I created the following script:

[@

Changed lines 83-105 from:

Wine

Does your brand new Windows system refuses to install that awesome application you loved in Windows 98? Well, I bet you can run it with Wine! Wine is an Open Source implementation of the Windows API on top of X and Linux. This means that Wine allows you to run Windows applications on Linux!

Note: You should complete the winetools setup before installing any Windows application. This will ensure a stable Windows environment. I installed both Wine and Winetools from rpm.

  • Wine Version: 0.9.2
  • Winetools Version: wt0.9jo

Winetools Setup

  1. Type winetools on a console window.
  2. Complete the Base Setup.
  3. If the Microsoft Foundation Classes 4.x download hangs, save the files mfc40.dll and mfc42.dll to the sys directory in your $HOME/winetools folder. You can get the dll files here
  4. Complete the Windows System Software installation.
  5. Complete the Microsoft TrueType core fonts installation.
  6. If the font installation hangs, you can download the files directly from here.

Using the KDE Print System with Wine

Step 1:

Edit the win.ini file in your C:\Windows directory, located in $HOME/.wine/drive_c/windows, to make kprinter the default printer. Add or change the following entries:

to:

You can also use the script below as a daemon to maintain the state of the backlight. This is necessary if some of your applications (usually games) like to turn the backlight on when resetting the video resolution or going into fullscreen.

Changed lines 86-90 from:

[windows] device=KDE Print System,WINEPS.DRV,KDE:

[devices] KDE Print System=WINEPS.DRV,KDE:

to:
  1. !/bin/bash

  2. Turns off panel backlight when computer lid is closed.
  3. Does not interfere with manual light toggle

ON_OPEN=1

while [ 1 ]; do

 LID_CLOSED=$(cat /proc/acpi/button/lid/LID/state | grep open)
 if [ “$LID_CLOSED” = “” ]; then
   LIGHT_ON=$(sudo /usr/sbin/radeontool light | grep “looks off”)
   if [ “$LIGHT_ON” = “” ]; then
     sudo /usr/sbin/radeontool light off
     echo “Turned back panel light off”
   fi
   if [ “$ON_OPEN” -eq 0 ]; then
     ON_OPEN=1
   fi
 else
   if [ “$ON_OPEN” -eq 1 ]; then
     sudo /usr/sbin/radeontool light on
     echo “Turned back panel light on”
     ON_OPEN=0
   fi
 fi
 sleep 1

done

Changed lines 120-121 from:

Step 2:

Add to $HOME/.wine/system.reg:

to:

Wine

Does your brand new Windows system refuses to install that awesome application you loved in Windows 98? Well, I bet you can run it with Wine! Wine is an Open Source implementation of the Windows API on top of X and Linux. This means that Wine allows you to run Windows applications on Linux!

Note: You should complete the winetools setup before installing any Windows application. This will ensure a stable Windows environment. I installed both Wine and Winetools from rpm.

  • Wine Version: 0.9.2
  • Winetools Version: wt0.9jo

Winetools Setup

  1. Type winetools on a console window.
  2. Complete the Base Setup.
  3. If the Microsoft Foundation Classes 4.x download hangs, save the files mfc40.dll and mfc42.dll to the sys directory in your $HOME/winetools folder. You can get the dll files here
  4. Complete the Windows System Software installation.
  5. Complete the Microsoft TrueType core fonts installation.
  6. If the font installation hangs, you can download the files directly from here.

Using the KDE Print System with Wine

Step 1:

Edit the win.ini file in your C:\Windows directory, located in $HOME/.wine/drive_c/windows, to make kprinter the default printer. Add or change the following entries:

Added lines 144-153:

[windows] device=KDE Print System,WINEPS.DRV,KDE:

[devices] KDE Print System=WINEPS.DRV,KDE: @]

Step 2:

Add to $HOME/.wine/system.reg: [@

July 01, 2008, at 06:45 PM by 72.53.91.38 -
Changed lines 38-39 from:

Update (April 20, 2008): The most recent driver for the Radeon M300 card from ATI includes AIGLX support and offers improved overall performance. Use this driver instead of the one available from the Livna repository. However, if you find the latest ati driver unstable, you can download version 8.476 (which works well) from here.

to:

Update (April 20, 2008): The most recent driver for the Radeon M300 card from ATI includes AIGLX support and offers improved overall performance. Use that driver instead of the one available from the Livna repository. However, if you find the latest ATI driver unstable, you can download version 8.476 (which works pretty well) from here.

Added lines 261-266:

Open a new konqueror tab from command line

kfmclient newTab <URL> "text/html"
July 01, 2008, at 06:40 PM by 72.53.91.38 -
Changed lines 38-39 from:

Update (April 20, 2008): The most recent driver for the Radeon M300 card from ATI includes AIGLX support and offers improved overall performance. Use this driver instead of the one available from the Livna repository.

to:

Update (April 20, 2008): The most recent driver for the Radeon M300 card from ATI includes AIGLX support and offers improved overall performance. Use this driver instead of the one available from the Livna repository. However, if you find the latest ati driver unstable, you can download version 8.476 (which works well) from here.

July 01, 2008, at 06:30 PM by 72.53.91.38 -
Changed lines 29-30 from:

Update (June 30, 2008): The mirror above finally died, however, the packages do not seem to be necessary anymore with the 2.6.22.14–72.fc6 kernel. Installing the package ipw2200-firmware from the fedora repositories seems to have solved the problem.

to:

Update (June 30, 2008): The mirror above finally died, however, the packages do not seem to be necessary anymore with the 2.6.22.14–72.fc6 kernel. Installing the package ipw2200-firmware from the fedora repositories seems to have been sufficient.

June 30, 2008, at 03:06 PM by 72.53.91.38 -
Changed line 18 from:
  • Kernel: 2.6.20–1.2948_fc6
to:
  • Kernel: 2.6.20–1.2948_fc6 Update (June 30, 2008): 2.6.22.14–72.fc6
Changed lines 25-28 from:
  • ipw2200-1.2.1-47.fc6.i386.rpm
  • ipw2200-firmware-3.0-9.at.noarch.rpm
  • ipw2200-kmdl-2.6.20-1.2948.fc6-1.2.1-47.fc6.i686.rpm
to:
  • ipw2200-1.2.1-47.fc6.i386.rpm
  • ipw2200-firmware-3.0-9.at.noarch.rpm
  • ipw2200-kmdl-2.6.20-1.2948.fc6-1.2.1-47.fc6.i686.rpm

Update (June 30, 2008): The mirror above finally died, however, the packages do not seem to be necessary anymore with the 2.6.22.14–72.fc6 kernel. Installing the package ipw2200-firmware from the fedora repositories seems to have solved the problem.

June 11, 2008, at 11:10 AM by 142.150.154.107 -
Changed lines 235-236 from:

Post Flash Videos with FFmpeg and FlowPlayer

to:

Post Flash Videos Online with FFmpeg and FlowPlayer

June 11, 2008, at 08:54 AM by 142.150.154.107 -
Changed lines 235-236 from:

Posting Flash Videos with FFmpeg and FlowPlayer

to:

Post Flash Videos with FFmpeg and FlowPlayer

June 11, 2008, at 08:54 AM by 142.150.154.107 -
Changed lines 269-270 from:

[Integrate Firefox with KDE→http://gentoo-wiki.com/HOWTO_Integrate_Firefox_with_KDE]

to:

Integrate Firefox with KDE

June 11, 2008, at 08:53 AM by 142.150.154.107 -
Added lines 269-270:

[Integrate Firefox with KDE→http://gentoo-wiki.com/HOWTO_Integrate_Firefox_with_KDE]