Mint 10 can't find file but i can see the file (closed)

Quick to answer questions about finding your way around Linux Mint as a new user.
Forum rules
There are no such things as "stupid" questions. However if you think your question is a bit stupid, then this is the right place for you to post it. Stick to easy to-the-point questions that you feel people can answer fast. For long and complicated questions use the other forums in the support section.
Before you post read how to get help. Topics in this forum are automatically closed 6 months after creation.
Locked
hellofu

Mint 10 can't find file but i can see the file (closed)

Post by hellofu »

im trying to compile and run a new driver for Rosewill RNX-N150PC Wifi card. im following the link instructions from the url at the bottem.
http://ubuntuforums.org/showthread.php?t=1608095

i have made the driver then try to exacute this

Code: Select all

sudo modprobe rt3562sta.ko
it then states error can find file
i know where the file is but the file requires root access.

what do i do?
Last edited by LockBot on Wed Dec 28, 2022 7:16 am, edited 2 times in total.
Reason: Topic automatically closed 6 months after creation. New replies are no longer allowed.
viking777

Re: Mint 10 can't find file but i can see the file

Post by viking777 »

This is all guesswork, but I would guess that wherever you have compiled the driver is not in your PATH variable in which case what I would do is to provide the full path to the 'modprobe' command. So if for example you compiled the driver in /opt/ralink I would try

sudo modprobe /opt/ralink/rt3562sta.ko

I don't know if this will work but it is worth a try. If it doesn't work the alternatives are to move the file to somewhere that is in you PATH variable:

Code: Select all

echo $PATH
will tell you where those locations are.

Or lastly my least favourite option would be to add the location of your file to your PATH variable for which you need the 'set' command.
Locked

Return to “Beginner Questions”