LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Newbie (https://www.linuxquestions.org/questions/linux-newbie-8/)
-   -   ubuntu 10.10 wine help (https://www.linuxquestions.org/questions/linux-newbie-8/ubuntu-10-10-wine-help-913221/)

10101010 11-12-2011 03:37 PM

ubuntu 10.10 wine help
 
hello im running ubuntu10.10 and im trying to run a .exe setup through wine and it keeps telling me that its blocked this is what it says -The file '/home/dylan/Desktop/Setup_MagicISO.exe' is not marked as executable. If this was downloaded or copied from an untrusted source, it may be dangerous to run. - can enyone help?

Jenni 11-12-2011 03:53 PM

not marked as executable sounds like you may need to change the permissions to allow it to be executable.. if you open a terminal and type
Code:

cd ~/Desktop/
then type
Code:

ls -l Setup_MagicISO.exe
it should show you the file permissions, it should look something like this:

Code:

-rw-r--r-- 1 jenni users ...
the first 4 characters are what are important for now, in the above example "-rw-" you want that to be
"-rwx" for this file I think, if that's not what it says, then do the following:
Code:

chmod 744 Setup_MagicISO.exe
and see if that fixes the problem.

10101010 11-12-2011 04:04 PM

when i type cd ~/desktop/ it says no such directory

Jenni 11-12-2011 04:04 PM

Linux command line is case sensitive - desktop and Desktop are not the same thing

10101010 11-12-2011 04:07 PM

it still says the same thing....dose it matter if im in root?

Jenni 11-12-2011 04:12 PM

You should not be root when you do that, cd ~/ brings you to the current user's home directory, so for that to work as I said you need to be logged in as the user who has the file in their /home/Desktop directory.

If that didn't work try
Code:

cd /home/dylan/Desktop/
your original post gives that as the path to this file, unless you moved it it should work.

10101010 11-12-2011 04:20 PM

ok how do i leave root? (i just installed ubuntu yesterday) and another web site sed to go in to root

Jenni 11-12-2011 04:22 PM

In ubuntu normally by default you're locked out of root, if you did get in to root typing
Code:

exit
should get you out though

yanayun 11-12-2011 07:25 PM

Static ttyUSB ttyACM port
 
I have many modem,

Modem1 --> /dev/ttyUSB1
Modem2 --> /dev/ttyUSB0
Modem3 --> /dev/ttyUSB9
Modem4 --> /dev/ttyUSB2
Modem5 --> /dev/ttyUSB6
Modem6 --> /dev/ttyUSB5
Modem7 --> /dev/ttyUSB3
Modem8 --> /dev/ttyUSB8

after reboot, all port will change to different configuration, ex:

Modem1 --> /dev/ttyUSB9
Modem2 --> /dev/ttyUSB2
Modem3 --> /dev/ttyUSB1
Modem4 --> /dev/ttyUSB0
Modem5 --> /dev/ttyUSB5
Modem6 --> /dev/ttyUSB6
Modem7 --> /dev/ttyUSB8
Modem8 --> /dev/ttyUSB3


i don't want my port change after reboot, it's must static ttyUSB port.
can enyone help?


All times are GMT -5. The time now is 05:46 PM.