Showing results 1 to 25 of 56 @ 0.37 seconds. Search: Posts Made By: cmdowns
Forum: General 2009-05-21, 20:08
Replies: 7
Views: 4,173
Posted By qwerty12
Re: Can I open a specific file through Personal Menu?

^ should work :)

It's --dest - not -dest
The '<'s and the '>'s were placeholders - sorry for not making that clear
The path requires the '/' as a *nix path usually has, the '//'s are part of the...
Forum: General 2009-05-21, 06:44
Replies: 7
Views: 4,173
Posted By qwerty12
Re: Can I open a specific file through Personal Menu?

Name: <Dunno :) >
Command to execute: run-standalone.sh dbus-send --print-reply --dest=com.nokia.osso_pdfviewer /com/nokia/osso_pdfviewer com.nokia.osso_pdfviewer.mime_open string:'file://<path to...
Forum: General 2009-03-11, 23:20
Replies: 8
Views: 5,060
Posted By attila77
Re: How hard would it be to compile Quantum GIS via Scratch Box?

Consider that GIS software is fairly CPU and memory intensive, and without specially prepared datasets (like Map does), it will be very, very slow. The missing/emulated FPU is not helping either for...
Forum: General 2009-03-11, 23:18
Replies: 8
Views: 5,060
Posted By Matan
Re: How hard would it be to compile Quantum GIS via Scratch Box?

It might be as simple as "make", and it might be a lot more complicated. You can't know until you try. Install the SDK exactly according to the instructions:
...
Forum: General 2008-08-27, 09:31
Replies: 5
Views: 5,199
Posted By yerga
Re: Where to download PyBluez?

PyBluez is in the extras repository and the package is called python2.5-bluez: http://repository.maemo.org/extras/pool/diablo/free/p/pybluez/
Forum: General 2008-08-26, 22:36
Replies: 5
Views: 5,199
Posted By MattZTexasu
Re: Where to download PyBluez?

I don't think think this is going to happen. From reading the documentation, it looks like PyBluez is a binding for specific c libraries that don't exist on maemo.

I haven't used easy...
Forum: General 2008-07-12, 18:43
Replies: 2
Views: 3,359
Posted By Duncan
Re: Does Xterm's Find support wildcards?

On a Linux system the shell expands wildcards before passing them to the program. (The DOS command line works differently and leaves it up to the programs to interpret the arguments.)

That means...
Forum: General 2008-07-12, 17:10
Replies: 1
Views: 2,117
Posted By yerga
Re: PyGame problem, can anyone help?

Change this line screen = pygame.display.set_mode((640, 480), 0, 32)
for the following one: screen = pygame.display.set_mode((640, 480), 0, 16)

The error is saying: "Maximum supported bitdepth is...
Forum: General 2008-07-12, 16:21
Replies: 2
Views: 3,359
Posted By ace
Re: Does Xterm's Find support wildcards?

Try putting your expression in single quotes, i.e. 'pygame*'.
Forum: General 2008-07-12, 01:28
Replies: 11
Views: 2,648
Posted By GeneralAntilles
Re: Can anyone help me update these mystery apps?

No, you don't see these unless you're in Red Pill (which you really shouldn't be, if there are issues that need to be pounded out, you should use apt and dpkg), so turn Red Pill off and move on (if...
Forum: Development 2008-06-06, 18:00
Replies: 48
Views: 25,138
Posted By jethro.itt
Re: Sucess! Now what?

Bluetooth readily provides a cable-free replacement for a standard serial port. From a low-level point of view there are similarities to how USB devices emulate a serial port.

You can use the...
Forum: Development 2008-05-06, 20:47
Replies: 48
Views: 25,138
Posted By Benson
Re: Bulding USB to serial kernel module

I don't know if it's enough power, but the 770 supplies no power; hence power injectors for anything. The N800 supplies some power, so it may work; if not, a powered hub is usually the best choice.
Forum: Newbie 2008-05-04, 19:44
Replies: 16
Views: 17,950
Posted By RogerS
Re: Can someone please help me install a kernel module?

I am not having this problem.

I don't expect to have this problem.

Nonetheless, I found reading this entire thread compelling. More than that: inspiring, even. First, for cmdown's persistence...
Forum: Newbie 2008-05-04, 17:23
Replies: 16
Views: 17,950
Posted By Johnx
Re: Can someone please help me install a kernel module?

You're definitely missing a module (or more than one). The clue is in the dmesg output you posted:

Based on this, I would guess that the module you need has usb and serial in the name. Maybe...
Forum: Newbie 2008-05-03, 17:58
Replies: 16
Views: 17,950
Posted By Johnx
Re: Can someone please help me install a kernel module?

quick insmod primer:
insmod isn't installing the driver so much as loading it. Put the driver (also known as a kernel module) wherever you want. Traditionally, the place to put it is somewhere under...
Forum: Newbie 2008-05-03, 17:11
Replies: 16
Views: 17,950
Posted By qwerty12
Re: Can someone please help me install a kernel module?

That means you used the right command but another module may need inserting. Run the insmod again and run dmesg straight after and paste the last line here.
Forum: Newbie 2008-05-03, 17:02
Replies: 16
Views: 17,950
Posted By qwerty12
Re: Can someone please help me install a kernel module?

mkdir /lib/modules/`uname -r`
cd to wherever the ftdi_sio.ko is
mv ftdi_sio.ko /lib/modules/`uname -r`
Forum: Newbie 2008-05-03, 16:44
Replies: 16
Views: 17,950
Posted By qwerty12
Re: Can someone please help me install a kernel module?

The module shouldn't really be in /usr/bin but if you put it there:

insmod /usr/bin/ftdi_sio.ko or insmod /usr/bin/drivers/usb/serial/ftdi_sio.ko

Make sure you are root.

(although, I use...
Forum: Newbie 2008-05-03, 16:25
Replies: 16
Views: 17,950
Posted By briand
Re: Can someone please help me install a kernel module?

um...

as root (ie: at the # prompt), type

insmod drivers/usb/serial/ftdi_sio.ko
Forum: Newbie 2008-04-30, 08:35
Replies: 2
Views: 1,840
Posted By Khertan
Re: python doc strings from xterm python?

try with iPython ... interactiv help work.
Forum: Newbie 2008-04-30, 07:25
Replies: 2
Views: 1,840
Posted By Duncan
Re: python doc strings from xterm python?

It looks like Python has been compiled for maemo without the doc strings. Also the interactive 'help' command is missing. It's a pity given how useful both of these are for beginners.
Forum: Development 2008-04-20, 07:34
Replies: 48
Views: 25,138
Posted By jethro.itt
Re: Bulding USB to serial kernel module

Looks like D-rock's example directly references a serial port device under /dev. Unless you have the exactly same brand and model of USB-to-Serial adapter, the device name under /dev is different.
...
Forum: Newbie 2008-04-18, 17:03
Replies: 24
Views: 11,896
Posted By briand
Re: Ultimate linux CLI noob question: "How to create a plain text file within xterm?"

The example was meant to draw a graphic image on the reader's mind. I have no knowledge of any such technique that would work to avoid a toll, and I would heartily recommend against experimentation...
Forum: Newbie 2008-04-16, 19:25
Replies: 24
Views: 11,896
Posted By jldiaz
Re: Ultimate linux CLI noob question: "How to create a plain text file within xterm?"

Background about paths

In order to execute a program (any program, not just python programs) from the CLI, you have to write the full path to that program. You can write an absolute path (which...
Forum: Newbie 2008-04-16, 19:07
Replies: 24
Views: 11,896
Posted By briand
Re: Ultimate linux CLI noob question: "How to create a plain text file within xterm?"

no offense, but this is quite possibly the worst advice you can give to someone who admits to being unfamiliar with the command line interface.

it may, for instance, be possible to avoid automated...
Showing results 1 to 25 of 56



 
Forum Jump

All times are GMT. The time now is 18:39.