Arch Linux: Difference between revisions

From cchtml.com
No edit summary
m (Reverted edits by 203.122.32.204 (Talk) to last revision by 69.124.171.80)
Line 1: Line 1:
[http://www.articlesbase.com/supplements-and-vitamins-articles/my-weight-loss-experience-with-the-acai-berry-diet-1726693.html Acai Berry], [http://ezinearticles.com/?Acai-Berry---How-I-Lost-30-Pounds-in-Under-30-Days-Using-The-Acai-Berry&id=1998407 Acai Berry Detox] dietary supplement and a good source of fiber is higher than the property make this detoxification process effectively. Fibers are popular with the toxin binding, detaching the accumulation of toxic your colon and intestinal walls are easier to them out of the water body as part of fecal waste. Furthermore, detoxification is very effective, and its effect is almost completely eliminate all toxins from accumulating in your system, while helping you reduce the pressure because of the efficient use of toxic waste, weighing approximately nine fifty-five pounds, depending on the regular use of unhealthy foods.
Installing and using fglrx drivers on Arch Linux should be a piece of cake, as the distro provides pre-built packages in its official repos, accessible through the pacman package manager.


Another great thing about [http://www.buzzle.com/articles/the-facts-and-half-truths-about-the-acai-berry-diet.html Acai Berry] is that it is a good source of amino acids that make it useful for people who want to accumulation of muscle mass and regular exercise in the gym. [http://www.acaiberryinformations.com/ Acai Berry Supplements] detox diet can help to increase metabolism and burn calories faster during exercise, in place since the incredible amount of extra pounds on your body on the road.
The installation instructions I've taken straight from Arch's own wiki page, linked below in the External Resources section.
 
==Installation==
 
 
 
===Before you start===
You'll need to install the necessary programs
{{Box Terminal|
<nowiki>#</nowiki> pacman -S xf86-input-evdev<br />
<nowiki>#</nowiki> pacman -S xf86-input-mouse<br/>
<nowiki>#</nowiki> pacman -S xf86-input-keyboard<br/>
<nowiki>#</nowiki> /etc/rc.d/hal start<br/>
<nowiki>#</nowiki> pacman -Rd libgl
}}
<br/>
{{Box Terminal|
<nowiki>#</nowiki> yaourt -Sy catalyst catalyst-utils<br/>
<nowiki>#</nowiki> aticonfig --initial     
}}
 
 
 
====Notes====
 
* These packages contain '''only''' the kernel module, and depend on the <code>catalyst-utils</code> package.  The <code>catalyst-utils</code> package is kernel-independent and provides the libraries and utilities for Xorg, including ATI's own <code>libGL.so</code>.
* After installing the package, you'll need to either <code>source /etc/profile</code> or log out, then back in to set up the environment properly.
* If you run both <code>kernel26</code> and <code>kernel26beyond</code> then install both catalyst module packages.  They won't conflict with one another.
 
=== Custom Kernels ===
 
To install catalyst for a custom kernel, you'll need to build your own <code>catalyst-$kernel</code> package, containing the kernel module compiled specifically for your kernel.
 
If you are at all uncomfortable or inexperienced making packages, read up Arch's [http://wiki.archlinux.org/index.php/ABS ABS] wiki page first so things go smoothly.
 
==== Obtaining PKGBUILD ====
Obtain the <code>PKGBUILD</code> and <code>catalyst.install</code> files from CVS or ABS.  Either:
 
* Visit http://www.archlinux.org/packages.php?id=10416 and click "View CVS Entries" to find them, or
* Run <code>abs</code> as root and locate the files in <code>/var/abs/extra/modules/catalyst</code>.
 
==== Editing the PKGBUILD and building ====
Three changes need to be made here:
 
'''First''', change
    pkgname=catalyst
to
    pkgname=catalyst-KERNEL_NAME
where KERNEL_NAME is whatever you want (custom, mm, themostawesomekernelever)
 
'''Second''', remove <code>kernel26</code> from the dependencies list.
 
'''Third''', change
    _kernver=2.6.15-ARCH
to
    _kernver=`uname -r`
(or directly insert the output of uname -r '''when running your custom kernel''' there)
 
Finally, build and install the package.  (<code>makepkg -i</code> or <code>makepkg</code> followed by <code>pacman -A pkgname.pkg.tar.gz</code>)
 
==== Notes ====
 
* No changes need to be made to the <code>catalyst-utils</code> package, which is completely kernel-independent. '''All''' you need to do is compile a kernel module.
* To build and run the catalyst kernel module with 2.6.16 kernels, patches are needed!  Check out the cvs entries for catalyst in testing for the required patch.
 
==Related Resources==
* [http://www.archlinux.org Arch Linux Homepage]
* [http://bbs.archlinux.org Arch Linux Forums]
* http://wiki.archlinux.org/index.php/ATI
 
{{VCT}}
[[Category:Distributions]]

Revision as of 01:29, 21 October 2010

Installing and using fglrx drivers on Arch Linux should be a piece of cake, as the distro provides pre-built packages in its official repos, accessible through the pacman package manager.

The installation instructions I've taken straight from Arch's own wiki page, linked below in the External Resources section.

Installation

Before you start

You'll need to install the necessary programs

Terminal Command

# pacman -S xf86-input-evdev
# pacman -S xf86-input-mouse
# pacman -S xf86-input-keyboard
# /etc/rc.d/hal start
# pacman -Rd libgl


Terminal Command

# yaourt -Sy catalyst catalyst-utils
# aticonfig --initial


Notes

  • These packages contain only the kernel module, and depend on the catalyst-utils package. The catalyst-utils package is kernel-independent and provides the libraries and utilities for Xorg, including ATI's own libGL.so.
  • After installing the package, you'll need to either source /etc/profile or log out, then back in to set up the environment properly.
  • If you run both kernel26 and kernel26beyond then install both catalyst module packages. They won't conflict with one another.

Custom Kernels

To install catalyst for a custom kernel, you'll need to build your own catalyst-$kernel package, containing the kernel module compiled specifically for your kernel.

If you are at all uncomfortable or inexperienced making packages, read up Arch's ABS wiki page first so things go smoothly.

Obtaining PKGBUILD

Obtain the PKGBUILD and catalyst.install files from CVS or ABS. Either:

Editing the PKGBUILD and building

Three changes need to be made here:

First, change

   pkgname=catalyst

to

   pkgname=catalyst-KERNEL_NAME

where KERNEL_NAME is whatever you want (custom, mm, themostawesomekernelever)

Second, remove kernel26 from the dependencies list.

Third, change

   _kernver=2.6.15-ARCH

to

   _kernver=`uname -r`

(or directly insert the output of uname -r when running your custom kernel there)

Finally, build and install the package. (makepkg -i or makepkg followed by pacman -A pkgname.pkg.tar.gz)

Notes

  • No changes need to be made to the catalyst-utils package, which is completely kernel-independent. All you need to do is compile a kernel module.
  • To build and run the catalyst kernel module with 2.6.16 kernels, patches are needed! Check out the cvs entries for catalyst in testing for the required patch.

Related Resources


Distribution Neutral Steps

Verifying | Configuring | Troubleshooting