Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

askthedev.com Logo askthedev.com Logo
Sign InSign Up

askthedev.com

Search
Ask A Question

Mobile menu

Close
Ask A Question
  • Ubuntu
  • Python
  • JavaScript
  • Linux
  • Git
  • Windows
  • HTML
  • SQL
  • AWS
  • Docker
  • Kubernetes
Home/ Questions/Q 14824
Next
In Process

askthedev.com Latest Questions

Asked: September 27, 20242024-09-27T03:59:37+05:30 2024-09-27T03:59:37+05:30In: Ubuntu

What steps are necessary to operate the LSI 9200-8E host bus adapter on an Ubuntu system?

anonymous user

I’ve been trying to get my LSI 9200-8E host bus adapter up and running on my Ubuntu system, but honestly, it’s been quite a headache! I’ve gone through a few guides, but they all seem to differ in steps, and I’m just losing track of what’s really necessary.

First off, I understand that I need to check if the hardware is detected by the system. I tried running `lspci` in the terminal, but I didn’t really know what to look for. I think I saw something that looked like it could be the adapter, but I’m not sure. Should I be looking for a specific string or number to confirm that it’s recognized?

Once I’ve confirmed it’s detected, I know I need to download some drivers. There seems to be a few options out there, but I’ve read that this particular model has driver support built into the Linux kernel. Is it as simple as updating to the latest kernel version? Or do I need to compile something from source? I’m a bit of a newbie when it comes to driver installation, so if someone could walk me through that, I’d really appreciate it!

Then there’s the part about configuring the adapter. Do I need to change any settings in the BIOS first? I’ve heard some folks mention that enabling certain options makes a big difference, but I didn’t delve too deep into that aspect yet. Once I get everything set up there, what’s the next step? I think I read about using `lsmod` to see if the driver is loaded, but I’m not entirely sure how to interpret the output.

Finally, what’s the best way to verify that everything is working properly? Is there any specific command I should run, or perhaps some logs I should check? I just want to make sure it’s all running smoothly before I dive into actually utilizing the storage. Anyone who has gone through this process, could you lend a hand? Any tips, tricks, or steps that I should definitely not overlook would really help! Thanks!

  • 0
  • 0
  • 2 2 Answers
  • 0 Followers
  • 0
Share
  • Facebook

    Leave an answer
    Cancel reply

    You must login to add an answer.

    Continue with Google
    or use

    Forgot Password?

    Need An Account, Sign Up Here
    Continue with Google

    2 Answers

    • Voted
    • Oldest
    • Recent
    1. anonymous user
      2024-09-27T03:59:38+05:30Added an answer on September 27, 2024 at 3:59 am


      Getting Your LSI 9200-8E Up and Running on Ubuntu

      Okay, first things first! You’re right to check if your hardware is detected. When you run lspci in the terminal, look for a line that mentions “LSI” or something like “SAS” or “SCSI”. You should see something along these lines:

        00:1c.0 RAID bus controller: LSI Logic / Symbios Logic 9200-8E (rev 03)
        

      If you see something like that, congrats! Your adapter is detected!

      Driver Stuff

      Now, about the drivers. For the LSI 9200-8E, you’re in luck because it generally has driver support built into the Linux kernel. If you’re running a fairly recent version of Ubuntu, you probably just need to make sure your system is updated. Here’s how to do it:

        sudo apt update
        sudo apt upgrade
        

      If you’re feeling adventurous, you can check your kernel version with uname -r. If it’s really old (like a couple of years), you might consider upgrading it. Compiling from source is usually not necessary unless you run into specific issues.

      Configuring BIOS

      As for BIOS settings, it’s a good idea to check that the adapter is enabled. When you boot up, press the key (often F2, Delete, or Esc) to enter BIOS settings. Look for anything related to “SAS” or your RAID controller, and make sure it’s enabled. This can sometimes give you better performance or even allow the OS to recognize the device correctly.

      Loading the Driver

      Once you’re back in Ubuntu, run lsmod to see if the driver is loaded. Just type:

        lsmod | grep mptsas
        

      If you see something like mptsas in the output, it means the driver is loaded and all is good!

      Verifying Everything

      To check if everything is working, you can use dmesg to look for messages related to your HBA:

        dmesg | grep mptsas
        

      You might also want to check for devices recognized under /dev. Running ls /dev/sd* should list your drives if everything’s set up right.

      Lastly, don’t forget to check out lsblk to see a list of all block devices. If your drives are attached and recognized, they should show up there with their respective names! If you see your drive listed, you should be good to go!

      Take it step by step, and don’t worry if things take a bit longer than expected. It can seem overwhelming at first, but just keep at it, and you’ll get there!


        • 0
      • Reply
      • Share
        Share
        • Share on Facebook
        • Share on Twitter
        • Share on LinkedIn
        • Share on WhatsApp
    2. anonymous user
      2024-09-27T03:59:38+05:30Added an answer on September 27, 2024 at 3:59 am


      To begin the setup of your LSI 9200-8E host bus adapter on your Ubuntu system, you’ll first want to ensure that the hardware is properly detected. Running the `lspci` command in the terminal will list all PCI devices attached to your machine. Look for entries that include “LSI” or “SAS,” which can indicate your adapter. Specifically, if you see a line similar to “LSI Logic / Symbios Logic 9200-8E,” this means it has been recognized. If you need further confirmation of success, you can also check the system logs using the command `dmesg | grep -i lsi` to see if there are any relevant messages regarding your adapter’s detection during the startup sequence.

      Once confirmed that the hardware is detected, the next step involves driver considerations. For the LSI 9200-8E, you are correct that the necessary drivers are typically included in the Linux kernel. Before proceeding, it’s a good idea to ensure your system is up to date with the latest kernel version, which can usually be done via your package manager (e.g., `sudo apt update && sudo apt upgrade`). After that, running `lsmod | grep mpt` will show you if the MPT drivers (which support the 9200-8E) are loaded. Configuration in the BIOS may be required, so be sure to enable any settings related to PCIe or your RAID settings, if applicable. Lastly, to verify everything is operational, you can run `lsscsi` to list your connected SCSI devices or check the `/var/log/syslog` and `/var/log/dmesg` logs for any errors or confirmations that the adapter is functioning as expected.


        • 0
      • Reply
      • Share
        Share
        • Share on Facebook
        • Share on Twitter
        • Share on LinkedIn
        • Share on WhatsApp

    Related Questions

    • I'm having trouble installing the NVIDIA Quadro M2000M driver on Ubuntu 24.04.1 LTS with the current kernel. Can anyone provide guidance or solutions to this issue?
    • What steps can I take to troubleshoot high usage of GNOME Shell in Ubuntu 24.04?
    • I recently performed a fresh installation of Ubuntu 24.04, and I've noticed that my RAM usage steadily increases over time until my system becomes unresponsive. Has anyone experienced this issue ...
    • How can I resolve the "unknown filesystem" error that leads me to the GRUB rescue prompt on my Ubuntu system?
    • I'm experiencing an issue with Ubuntu 24.04 where Nautilus fails to display the progress indicator when I'm copying large files or folders. Has anyone else encountered this problem, and what ...

    Sidebar

    Related Questions

    • I'm having trouble installing the NVIDIA Quadro M2000M driver on Ubuntu 24.04.1 LTS with the current kernel. Can anyone provide guidance or solutions to this ...

    • What steps can I take to troubleshoot high usage of GNOME Shell in Ubuntu 24.04?

    • I recently performed a fresh installation of Ubuntu 24.04, and I've noticed that my RAM usage steadily increases over time until my system becomes unresponsive. ...

    • How can I resolve the "unknown filesystem" error that leads me to the GRUB rescue prompt on my Ubuntu system?

    • I'm experiencing an issue with Ubuntu 24.04 where Nautilus fails to display the progress indicator when I'm copying large files or folders. Has anyone else ...

    • How can I configure a server running Ubuntu to bind specific IP addresses to two different network interfaces? I'm looking for guidance on how to ...

    • Is it possible to configure automatic login on Ubuntu MATE 24.04?

    • After upgrading from Ubuntu Studio 22.04 to 24.04.1, I lost all audio functionality. What steps can I take to diagnose and resolve this issue?

    • I am experiencing issues booting Ubuntu 22.04 LTS from a live USB. Despite following the usual procedures, the system fails to start. What steps can ...

    • I'm encountering a problem with my Expandrive key while trying to update my Ubuntu system. Has anyone else faced similar issues, and if so, what ...

    Recent Answers

    1. anonymous user on How do games using Havok manage rollback netcode without corrupting internal state during save/load operations?
    2. anonymous user on How do games using Havok manage rollback netcode without corrupting internal state during save/load operations?
    3. anonymous user on How can I efficiently determine line of sight between points in various 3D grid geometries without surface intersection?
    4. anonymous user on How can I efficiently determine line of sight between points in various 3D grid geometries without surface intersection?
    5. anonymous user on How can I update the server about my hotbar changes in a FabricMC mod?
    • Home
    • Learn Something
    • Ask a Question
    • Answer Unanswered Questions
    • Privacy Policy
    • Terms & Conditions

    © askthedev ❤️ All Rights Reserved

    Explore

    • Ubuntu
    • Python
    • JavaScript
    • Linux
    • Git
    • Windows
    • HTML
    • SQL
    • AWS
    • Docker
    • Kubernetes

    Insert/edit link

    Enter the destination URL

    Or link to existing content

      No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.