HardwareLogic

Go Back   HardwareLogic > Specific Hardware > Software & OSs
Home Forums Rules All AlbumsBlogs Subscriptions Register Mark Forums Read

Software & OSs Operating Systems, Anti-Virus, Utilities and Programs.

Reply
 
LinkBack Thread Tools
Old February 20th, 2007   #1
 
Jafo's Avatar
 
Join Date: Nov 2006
Location: Georgia, USA
Posts: 176
Default Another Ubuntu Question (Kernel)

I was looking at some guides to install Beryl/Xgl/Compiz, and the first thing the guides say is to make sure the kernel matches the processor as the first step. BerylXglOnDapper - Ubuntu Document Storage Facility

How do I go about knowing the kernel I have? I have an AMD 64 4000+ but how do I find out the kernel that matches? That seems to be the step left out or maybe I'm just an idiot (take your pick). I am new to linux (Ubuntu).



AMD Athlon 64 Processor 4000+
Asus A8N-SLI Deluxe
4 GB DDR SDRAM
2 eVGA GeForce 7800 GT 256 MB
2 Seagate Barracuda 7200 (200GB each)
Thermaltake Tsunami
Windows XP SP2


Jafo is offline   Reply With Quote
Old February 20th, 2007   #2
Modder-ator
 
gvblake22's Avatar
 
Join Date: Dec 2005
Location: Tempe Desert
Posts: 6,356
Blog Entries: 1
Default Re: Another Ubuntu Question (Kernel)

I'm by no means a Linux guru either (we have yurimxpxman for that), but I think it is referring to 32-bit and 64-bit versions depending on the features of your processor. In your case, you have an Athlon 64 that is a 64-bit processor so you should be able to use the 64-bit version.



gvblake22 is offline   Reply With Quote
Old February 21st, 2007   #3
Banned
 
yurimxpxman's Avatar
 
Join Date: Jun 2006
Location: /home/yurimxpxman
Posts: 1,695
Default Re: Another Ubuntu Question (Kernel)

Quote:
Originally Posted by Jafo View Post
I was looking at some guides to install Beryl/Xgl/Compiz, and the first thing the guides say is to make sure the kernel matches the processor as the first step. BerylXglOnDapper - Ubuntu Document Storage Facility

How do I go about knowing the kernel I have? I have an AMD 64 4000+ but how do I find out the kernel that matches? That seems to be the step left out or maybe I'm just an idiot (take your pick). I am new to linux (Ubuntu).
Well, to answer your question, the command is uname -a. However, this really isn't necessary. Blake was right on the money when he said they're referring to the CPU architecture, and not the kernel version.

But regardless of your kernel's CPU architecture, Beryl will perform best after you perform the following:
  • Install the nVidia drivers from the System Tools section of the Add/Remove wizard (Applications > Add/Remove).
  • Follow this guide:

    Quote:
    Creating the script

    Open a terminal. Execute:
    Code:
    gedit ./beryl-install-script
    
    Now, copy and paste the following script into the window:

    Code:
    #!/bin/bash
    if [ $UID -gt 0 ]; then
     echo "You must run this script as root.";
    else
     cp /etc/apt/sources.list /etc/apt/sources.list.backup.beryl-script
     cp /etc/X11/xorg.conf /etc/X11/xorg.conf.backup.beryl-script
     echo "deb Repository containing nVidia binary drivers for Ubuntu Edgy edgy stable" >> /etc/apt/sources.list
     wget http://nvidia.limitless.lupine.me.uk...pine.me.uk.gpg -O- | apt-key add -
     aptitude -y update && aptitude -y install linux-restricted-modules-$(uname -r) nvidia-glx
     nvidia-xconfig --add-argb-glx-visuals
     echo "deb Ubuntu Beryl Repository edgy main" >> /etc/apt/sources.list
     wget http://ubuntu.beryl-project.org/root@lupine.me.uk.gpg -O- | apt-key add -
     aptitude -y update && aptitude -y dist-upgrade
     aptitude -y install beryl emerald emerald-themes
     echo "[Desktop Entry]
     Encoding=UTF-8
     Name=Beryl Manager
     GenericName=3D Window Manager
     Comment=Beryl Manager daemon
     Icon=/usr/share/icons/hicolor/scalable/apps/beryl-manager.svg
     Exec=beryl-manager
     Terminal=false
     Type=Application
     Categories=GTK;GNOME;Application;Utility;
     StartupNotify=true
     X-Ubuntu-Gettext-Domain=beryl-manager" > /etc/xdg/autostart/beryl-manager.desktop
     cp /etc/xdg/autostart/beryl-manager.desktop /usr/share/applications/beryl-manager.desktop
     cp /etc/xdg/autostart/beryl-manager.desktop ~/Desktop/beryl-manager.desktop
     echo -e "\n\nBeryl is now installed.\n\nTo run Beryl on Ubuntu startup, please add beryl-manager to your\nstartup programs (System > Preferences > Sessions, and click on\nthe \"startup programs\" tab). Afterwards, please reboot.\n\nBackups of /etc/apt/sources.list and /etc/X11/xorg.conf were made:\n    /etc/apt/sources.list.backup.beryl-script\n    /etc/X11/xorg.conf.backup"
    fi;
    
    Subsequently, save the file and close gedit.

    Running the script

    Run the following commands:
    Code:
    sudo chmod +x ./beryl-install-script
    sudo ./beryl-install-script
    
yurimxpxman is offline   Reply With Quote
Reply

  HardwareLogic > Specific Hardware > Software & OSs

Tags
kernel, question, ubuntu


Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Ubuntu Problems Jackster Software & OSs 15 January 29th, 2008 06:20
Linux Ubuntu help!!!! Yellowhello Software & OSs 3 June 18th, 2007 05:09
Ubuntu .bz2 file Jafo Software & OSs 2 February 20th, 2007 19:05
Ubuntu Linux halutzparilla Software & OSs 16 November 15th, 2006 12:20
Ubuntu 6.06 Jokerswild Software & OSs 7 July 26th, 2006 06:27


All times are GMT -8. The time now is 20:19.


Powered by vBulletin® Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
SEO by vBSEO 3.2.0
© HardwareLogic 2005 - 2008. All Rights Reserved


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49