Results 1 to 10 of 10

Thread: Installing UT2k4

  1. #1
    Member registered user
    Join Date
    Nov 2004
    Posts
    32

    Installing UT2k4

    Dvd editors edition...

    Ive got a "linux-installer.sh"
    how can I open it and install?

    has nothing to do with apt-get does it?

  2. #2
    Senior Member registered user
    Join Date
    Mar 2003
    Location
    Portland, OR USA
    Posts
    568
    There should be a "readme" text file somewhere that you should read - who knows, it may want you to install it as root or as a regular user, or discuss installation options.

    But in general, it's really easy. Go to a terminal, get root, mount the DVD if it isn't already, cd to the directory, and type

    ./linux-installer.sh

    to run the installer.

  3. #3
    Member registered user
    Join Date
    Nov 2004
    Posts
    32
    It says permission denied....?

    im using root console..



    There was no help files at all, a simple "readme" with the basics...(and was NO help for linux)
    and a PDF manual...
    Other than that nothing at all relating to linux...

    Why would it say permission denied if Im using a root console?

    Wrong command?
    I typed cd /cdrom
    and then a apth to the installer , "./linux-installer.sh"

  4. #4
    Senior Member registered user
    Join Date
    Feb 2004
    Posts
    949
    It would if your trying to install while still on the cd.

    I've tried the demo and you can choose the install path with it.
    If you can with the full version too, trty installing to your home directory.

  5. #5
    Member registered user
    Join Date
    Nov 2004
    Posts
    32
    Got it installed, had to be under Root session...but

    The game starts, the splash screen come up, and it closes...never enters the game...

    checked the consoel and it had this error...

    "
    root@KnoppixBox:~# ut2004
    Xlib: extension "XFree86-DRI" missing on display ":0.0".
    WARNING: ALC_EXT_capture is subject to change!
    Xlib: extension "XiG-SUNDRY-NONSTANDARD" missing on display ":0.0".
    Either GL_EXT_bgra or glDrawRangeElements not supported- bailing out.

    History:

    Exiting due to error
    root@KnoppixBox:~#


    """

  6. #6
    Senior Member registered user
    Join Date
    Mar 2003
    Location
    Portland, OR USA
    Posts
    568
    Well, at least one part of that is clear, except if you've got an NVidea video card.

    Edit /etc/X11/XF86Config-4 using your favorite text editor, look for a line in the "Modules" section that looks like this:

    # Load "dri"

    and edit out the "#" in front of it. Save the file. Log out of X windows, then log back in and try it again.

    I read somewhere that NVidia doesn't use the DRI module (it certainly doesn't on my computer), so you don't want to enable it if you have an NVidia card.

    And that's about as much as I can contribute, so I'm bailing out of this topic!

  7. #7
    Member registered user
    Join Date
    Nov 2004
    Posts
    32
    Quote Originally Posted by eco2geek
    Well, at least one part of that is clear, except if you've got an NVidea video card.

    Edit /etc/X11/XF86Config-4 using your favorite text editor, look for a line in the "Modules" section that looks like this:

    # Load "dri"

    and edit out the "#" in front of it. Save the file. Log out of X windows, then log back in and try it again.

    I read somewhere that NVidia doesn't use the DRI module (it certainly doesn't on my computer), so you don't want to enable it if you have an NVidia card.

    And that's about as much as I can contribute, so I'm bailing out of this topic!

    Will my Nvidia card most likely need drivers to play graphic intensive games? ...UT2k4, CoD, AA...

    Only games I have, and If I could get those to work Id be doin great..

    Ive got an XFX Nvidia card, they have linux support but the drivers page just links me up to the official Nvidia site...
    Nvidia didnt have Debian drivers (they had drivers for every version of mandrake and red hat though)


    Here is my graphic card...
    http://www.xfxforce.com/product_view.php?sku=PVT36LUA

    Linux IA32

    Linux AMD64

    Linux IA64

    FreeBSD


    Im assuming Id be using IA32 (32bit?)...On a P4

    ere is the graphics drivers from Nvidia...
    http://www.nvidia.com/object/linux_d..._1.0-4191.html

    I downloaded the First Tar file, but I couldnt figure out how to install em'.

    If anyone has used those drivers for their Nvidia card, could you give me some pointers...?

    Thanks

  8. #8
    Senior Member registered user
    Join Date
    Feb 2004
    Posts
    949
    You might want to try these, http://www.nvidia.com/object/linux.html. They are in a singal "run" file.

    you've got a Nvidia graphics card you'll need to install Nvidia 3D drivers with 2.6 kernel support after booting into 2.6 so download them and configure your /etc/X11/XF86Config-4 file if necessary prior to rebooting.


    Get the latest official Nvidia driver with kernel 2.6 support from here:

    http://www.nvidia.com/object/linux.html




    Installing the nVidia 3D driver:


    1) You'll most likely need to have the nvidia installer compile the driver so make sure you have the 2.6 kernel source installed in /usr/src/linux (if you're following this document then you already do). Also, remember that the linux in /usr/src/linux should be just a link to the kernel-source directory for your running kernel.


    2) You'll need to logout of X before installing the driver, do this by opening a terminal and typing init 3, or init 1 (mine was init 1 but most ditro's use init 3 for logging in without X). Next, login as root, cd to the directory where you downloaded the nvidia intaller to, type ls and hit enter, type sh NV, hit the [tab] key then enter.


    Configure XF86Config-4:


    If this is your first time insalling the official nvidia driver then you'll need to follow the steps below. It's much easier to do these steps while logged into KDE/Gnome/etc... before you log out of X to run the installation routine, otherwise you'll need to know how to use the non graphical Vim text editor.

    1) Open a console and make a backup of your XF86Config-4 file with:

    cd /etc/X11
    cp XF86Config-4 XF86Config-4-orig


    2) Open your /etc/X11/XF86Config-4 file with a text editor. Under section "Module" make sure you have the following line:

    Load "glx"

    If you have these lines, remove them:

    Load "dri"
    Load "GLcore"

    Now scroll down to the "Graphics device section" and change:

    Driver "nv"

    To:

    Driver "nvidia"


    3) Make the above changes, save, exit, reboot to your new kernel and cross your fingers.


    Install Error's:

    You must have the appropriate kernel source that matches your running kernel and a .config file in /usr/src/linux or nvidia won't compile.

    If you receive any errors while running the nvidia installer then check this file:

    /var/log/nvidia-installer.log

  9. #9
    Member registered user
    Join Date
    Nov 2004
    Posts
    32
    Quote Originally Posted by eco2geek
    Well, at least one part of that is clear, except if you've got an NVidea video card.

    Edit /etc/X11/XF86Config-4 using your favorite text editor, look for a line in the "Modules" section that looks like this:

    # Load "dri"

    and edit out the "#" in front of it. Save the file. Log out of X windows, then log back in and try it again.

    I read somewhere that NVidia doesn't use the DRI module (it certainly doesn't on my computer), so you don't want to enable it if you have an NVidia card.

    And that's about as much as I can contribute, so I'm bailing out of this topic!

    I think its already disabled....
    heres a copy/paste

    """
    Section "Module"
    Load "ddc" # ddc probing of monitor
    Load "GLcore"
    Load "dbe"
    Load "dri"
    Load "extmod"
    Load "glx"
    Load "bitmap" # bitmap-fonts
    Load "speedo"
    Load "type1"
    Load "freetype"
    Load "record"
    EndSection
    """"


    Quote Originally Posted by fyrebyrd10
    You might want to try these, http://www.nvidia.com/object/linux.html. They are in a singal "run" file.
    Link was down...

  10. #10
    Senior Member registered user
    Join Date
    Feb 2004
    Posts
    949
    Worked for me when I posted that.

Similar Threads

  1. installing knoppix vs installing Linux from scratch
    By jza in forum Hdd Install / Debian / Apt
    Replies: 1
    Last Post: 05-03-2003, 11:30 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  


(New) AMD Ryzen 7 5700X 8 Core 16 Thread AM4 Unlocked 3.4 GHz CPU OEM Tray picture

(New) AMD Ryzen 7 5700X 8 Core 16 Thread AM4 Unlocked 3.4 GHz CPU OEM Tray

$169.99



Intel Core i9-9900K SRG19 3.60GHz 16MB 8-Core LGA1151 B Grade CPU Processor picture

Intel Core i9-9900K SRG19 3.60GHz 16MB 8-Core LGA1151 B Grade CPU Processor

$175.00



Lenovo ThinkCentre M920S Sff Intel Core i5 8600 8GB 256GB SSD Windows 11 Pro picture

Lenovo ThinkCentre M920S Sff Intel Core i5 8600 8GB 256GB SSD Windows 11 Pro

$94.99



8-core 10-core GPU baseboard 8654 to PCIE 5.0x16 GPU expansion baseboard picture

8-core 10-core GPU baseboard 8654 to PCIE 5.0x16 GPU expansion baseboard

$377.77



AMD Ryzen 7 7800X3D 8-Core 16-Thread 4.2GHz/5.0GHz Socket AM5 picture

AMD Ryzen 7 7800X3D 8-Core 16-Thread 4.2GHz/5.0GHz Socket AM5

$275.00



AMD Ryzen 7 9800X3D 8-Core AM5 CPU 4.7GHz 96MB L3 8MB L2 100MHz picture

AMD Ryzen 7 9800X3D 8-Core AM5 CPU 4.7GHz 96MB L3 8MB L2 100MHz

$389.99



AMD Ryzen 7 9800X3D - (Zen 5, 8-Core 5.2 GHz, Socket AM5) NEW IN BOX picture

AMD Ryzen 7 9800X3D - (Zen 5, 8-Core 5.2 GHz, Socket AM5) NEW IN BOX

$380.00



Intel Core i9-9900K Coffee Lake 8-Core, 16-Thread, 3.6 GHz (LGA 1151) picture

Intel Core i9-9900K Coffee Lake 8-Core, 16-Thread, 3.6 GHz (LGA 1151)

$189.99



Apple MacBook Air 13.6” M2 8GB 256GB SSD 2022 MLY33LL/A 8‑Core CPU 8‑Core GPU picture

Apple MacBook Air 13.6” M2 8GB 256GB SSD 2022 MLY33LL/A 8‑Core CPU 8‑Core GPU

$529.95



CHUWI 15.6'' Laptop Computer Intel Core 8GB RAM 512GB SSD WiFi Windows 11 picture

CHUWI 15.6'' Laptop Computer Intel Core 8GB RAM 512GB SSD WiFi Windows 11

$269.99