Hello peeps
I just bought a WiFi dongle
The name if the dongle is Realtek 8188eus
I want to use it but don’t understand how to install the drivers.
The Linux folder in the driver CD which is given shows this:
You should probably read the readme.txt and ReleaseNotes.pdf files first.
However: There is a script install.sh in the folder, so what you should probably do, is to create a folder (say wireless) in your home folder /home/your_username and copy the contents of the Linux folder into it.
Then open a terminal and type:
sudo /home/your_username/wireless/install.sh and hit ENTER
That should do the trick. If everything works fine, you can delete the wireless folder afterwards.
Unix (and Unix-like systems like Linux) shells do not check the current directory for executables before checking the PATH environment variable, and Unix systems tend not to include ./ in the PATH for security reasons. By having to specify
./executable
rather than just
executable
the user is saying, “yes, I do want to run this executable in the current directory”