0

New user to Ubuntu 14.04, and having trouble trying to create desktop icons. When I drag and drop it tells me :

Error while copying.

There was an error getting information about “/”.

Unable to get past this, not sure of the commands to do it through terminal screen.

Any ideas?

3 Answers3

1

To create a launcher on the desktop, run this command:

 gnome-desktop-item-edit /home/<username>/Desktop --create-new

this starts the GUI application for creating new launcher.

In the command field, enter the name of the application, such as nautilus, or select executable from /usr/bin or any other directory.

girardengo
  • 4,965
  • 1
  • 26
  • 31
  • This worked after I installed the gnome utitity. Thanks. Is there not a way to do a drag and drop operation? Very new to linux sytems and have seen it done on videos. Does 14.04 not support this? I will make sure to keep this command handy... – Dhartman3076 Apr 27 '14 at 00:20
0

Try to create your desktop icons with symbolic-link in terminal by this command.

ln -s target_path link_path , where your desktop path will be something like this

ln -s target_path ~/Desktop/icon_name

0

If you are DnD'ing from a location you don't own like /usr/share/applications you can't as DnD is a move. So just copy & paste

doug
  • 17,026