Is there a way to execute a specific script or open a file with a particular program when inserting a USB stick on Ubuntu like the autorun.inf
file in Windows ? If not, is there another way ?
EDIT:
According to the answer I got I have created a file in the USB root folder named autorun
with the above contents:
#!/bin/sh
xdg-open myText.txt
I have also created a file named autorun.inf
with the above contents:
[autorun]
icon=icon.ico
The autorun.inf
file specifies the USB icon.
From the above autorun files only the autorun.inf
seems to work. The autorun
script file, when executed it displays the above message.
Am I doing something wrong or there are some more parameters to be configured in order to run the script ?
P.S: The files myText.txt and icon.ico are placed in the USB root folder.
Moreover, the autorun
and autorun.inf
file mode bits have been set to 755, using :
cd /path/to/usbFolder
chmod 755 autorun
chmod 755 autorun.inf
[autorun]
icon=icon.ico
? – pgmank Jun 30 '15 at 02:09#!/bin/sh
. Sorry if this was irritating. The line above was just to show the content of the fileautorun
. – Germar Jun 30 '15 at 19:13cat
command on the top. I also tried to opengedit
but the same error message appeared. Also, if autorun.inf is supported on Ubuntu, could it also open a script apart from setting the usb icon ? – pgmank Jun 30 '15 at 20:56autorun.inf
can not run a script (open=...
doesn't work). – Germar Jun 30 '15 at 21:05autorun.inf
that are supported by Ubuntu if any ? – pgmank Jun 30 '15 at 21:29chmod 755 autorun
? Everything else looks good and does work in here without problems. – Germar Jun 30 '15 at 21:55autorun
andautorun.inf
to 755 and still the same error message appears – pgmank Jul 01 '15 at 01:30Software
isRun Software
underSystem Settings
>Details
>Removable Media
- would it still prompt and ask you whether you would like to run the software? That prompt should appear only when the value ofSoftware
isAsk what to do
, doesn't it? In other words: I think that having the value ofRun Software
forSoftware
should run the software without any questions or prompts. – Dor Sep 16 '16 at 11:21Run Software
.. as can be seen in the image. So in your case it should execute the software w/o asking.. – Dor Oct 11 '16 at 08:57