Tuesday, May 7, 2024
 Popular · Latest · Hot · Upcoming
18
rated 0 times [  18] [ 0]  / answers: 1 / hits: 74439  / 3 Years ago, sat, july 24, 2021, 2:52:30

I have a new computer installed with Ubuntu 12.04. Then I want to install wireless driver named compat-wireless-3.5-3. Before that, the driver folder to /home/kevin.



I want to install it on /opt directory. Before install the driver, i want to copy the driver folder from /home/kevin to /opt. I try to use ordinary copy (Right Click Copy Paste), but the paste is blured.

After that, i tried using this on terminal:



sudo cp /home/kevin/compat-wireless-3.5-3 /opt


But I get this error:



cp: omitting directory `home/kevin/compat-wireless-3.5-3'


What does the command mean? I can't copy the driver folder until now.


More From » drivers

 Answers
5

You have to use the -r flag when copying directories, in other words,



sudo cp -r /home/kevin/compat-wireless-3.5-3 /opt


-r means the directory will be copied recursively, content first, then the directory itself.


[#34985] Monday, July 26, 2021, 3 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
assionortly

Total Points: 423
Total Questions: 121
Total Answers: 115

Location: Chad
Member since Wed, Sep 30, 2020
4 Years ago
;