View Single Post
Old 02-28-2017, 11:13 PM   #7
AvatarKava
Junior Member
 
Join Date: Aug 2015
Posts: 3
Default

Quote:
Originally Posted by Maverick View Post
DisplayLink Linux Support Tool 1.2.17 is defintely the name of my unzipped package sitting on my Desktop
Not sure if you're coming from Windows or another platform, but in the interest of trying to connect a few 'why' dots for you:

Code:
chmod +x /Desktop/DisplayLink Linux Support Tool 1.2.17
Two issues here:
  1. /Desktop would be the equivalent of saying C:\Desktop - which won't work. You should be using /home/maverick/Desktop or something equivalent (whatever your username is). Alternatively you can use ~/Desktop as a shortcut (~ is an alias for your home directory).
  2. If a file or folder name has spaces, you need to do something so the OS knows it's a space in the name and not just another parameter for the command you're giving it. You can either escape the spaces with a backslash or wrap the whole path in quotes.

This is a really good primer for learning about the command line, if you want to get a bit more comfortable: http://linuxcommand.org/

TL;DR = try something like this:
Code:
chmod +x ~/Desktop/DisplayLink\ Linux\ Support\ Tool\ 1.2.17

Last edited by AvatarKava; 02-28-2017 at 11:15 PM.
AvatarKava is offline   Reply With Quote