How to copy a folder from /home/kevin to /opt
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.