![]() |
Re: Introducing BlueMaemo
Unfortunately, the BlueTooth applet in Intrepid's GNOME is a bit broken. Intrepid just came out, so expect some rough edges to be fixed. If you know what package the KDE program you're using is in you could install that package on Ubuntu and use this applet in Ubuntu's GNOME.
Or follow this procedure: first, install the package bluez-compat using your package manager. Now, put BlueTooth on the N810 visisble. Then use hcitool to scan. After you got the BlueTooth address, write it down (in case for usage next time). Now use hidd to connect. One could put something like Code:
#!/bin/bash Then chmod this +x And put this on the desktop or in ~/bin Then you can easily make it work. |
Re: Introducing BlueMaemo
Thanks it works !
i didn"t get the double dash !! |
Re: Introducing BlueMaemo
IT IS ANSOME !
here is my script on my computer : Code:
#!/bin/bash Code:
myuser ALL = NOPASSWD: /usr/bin/hidd i run on my tablet : Code:
]sudo bluemaemo & sleep 10 && ssh myuser@mycomputer_ip /home/myuser/software/scripts/bluemaemo.sh so fun :) Thanks guys. |
Re: Introducing BlueMaemo
Good one.
Here is a guide to set up SSH RSA keys (don't have to contain a password, but that is recommended). You have to set this up on the NIT. I suppose some people use Windows or MacOS X on their computer. It'd be interesting if there are some command line utilities for setting this up remotely on these OSes. A guide like the one by Kytrix is appreciated. |
Re: Introducing BlueMaemo
I've never been able to get past this step.
ssh-copy-id -i ~/.ssh/id_rsa.pub username@host I've tried the command both from the server (my tablet using username@host being my laptop or desktop). And vice versa my laptop or desktop to the server (thus username@host being my tablet). Neither works.. |
Re: Introducing BlueMaemo
you have to clean on server files .ssh/authorized_keys and authorized_keys2 if never used before
in state of ssh-copy-id you can scp your key.pub from client to .ssh/ on server then connect on server and do : cat key.pub > authorized_keys sometimes it's authorized_keys2 on the client do cleaning in .ssh/know_hosts .. duplicate keys can doing mess. .. try to connect and look at /var/log/auth.log on server on client do ssh -vv user@server and look messages you can also try a DSA key by : ssh-keygen -r dsa first times it's sometimes not easy to get it works, but after it works like a charm ! Kytrix. |
Re: Introducing BlueMaemo
Kytrix you are using > this means the file is erased. You need to use >> in case the user already made her own authorized_keys. In general, one doesn't have to delete these unless one knows what one is doing.
Quote:
|
Re: Introducing BlueMaemo
Hmm, not sure if it's using it though (Pubkeyauthentication is set to yes in the ssdh_config).And I did copy the key (though manually by hand over [opened text editors for both and copied and pasted]. I just don't know if it's actually using it or not.
|
Re: Introducing BlueMaemo
Aha. Then, ssh -v to the host, and check what it says. Or read the syslog on the sshd host.
|
Re: Introducing BlueMaemo
Code:
vforviktor@vendetta-laptop:~$ ssh user@192.168.1.104 -v -p 666 I'm guessing that it's not working since it's trying the next authentication method? And on a sidenote: Bah, stupid Vista. I uninstalled the drivers for my bluetooth dongle, and now it won't reinstall. |
Re: Introducing BlueMaemo
is anyone having problems running ssh in the new ubuntu 8.10? Before, everything worked fine, but now it says that the display can not be found and stuff. I am not trying to x-forward, just use normal ssh to control the computer! I WANT it to run on the server, not the nokia, but nothing works.
$ ssh -l name@ip firefox cannot find display (or something like that) I have dsa keys already setup, and they work... Nothing works, but I have not tried cmd line apps yet... It would be great if i could get the auto connect to work... |
Re: Introducing BlueMaemo
There was problem with somes keys,
look at your host messages (/var/log/auth i guess) if you get a message like 48:de:55:22:xx:yy:zz:yy:xx:yy:zz:yy::88:e8:87:47 blacklisted (see ssh-vulnkey(1)) that's you need to re-create your key on client and re-send on host. Kytrix |
Re: Introducing BlueMaemo
Quote:
|
Re: Introducing BlueMaemo
Quote:
Unless... you're trying to start an application from the ssh command line, and have it run on your primary computer's display? |
Re: Introducing BlueMaemo
maybe he just want to launch firefox on remote computer Xorg ...
|
Re: Introducing BlueMaemo
Quote:
But, does anyone use the new ubuntu and have these problems? Is it to do with the new Xorg configuration (or lack thereof)? Code:
ssh thesandlord@172.16.10.13 Edit: I don't want to hijack this thread, and I don't think its a tablet problem, so... |
Re: Introducing BlueMaemo
No, it has nothing to do with Ubuntu.
I told you: DISPLAY=:0.0 firefox Now, listen. |
Re: Introducing BlueMaemo
Quote:
I guess I'll check if logging is enabled in sshd_config. Don't know why I'm doing all this hehe.. I still gotta plug in the bluetooth dongle into my laptop when I wanna use it. |
Re: Introducing BlueMaemo
The DISPLAY worked, even though it is horribly slow... Due to a number of problems, im switching back to 8.04 or Mint, in which Bluemaemo work perfectly, ssh did not need all this complicated stuff, networking actually allowed static IP...
|
Re: Introducing BlueMaemo
8.10 just came out. Give it some time. Any new software release has rough edges. 8.10 (+ GNOME) also has some issues with BlueTooth. People report issues with suspend to RAM (I can confirm).
If you SSH into a computer it should not have a DISPLAY variable set. You have to do this manually. It should not be horribly slow, and this shouldn't have anything to do with SSH because the command is running remotely. Does it work fast when you run the application local? If you put ssh -fXT user@ip DISPLAY=:0.0 $1 in script.sh, chmod +x, and then ./script.sh firefox you have no TTY is assigned and the command is forked into the background. It then runs remotely, and shows on remote screen. If you'd add the -X flag to the ssh command you'd run it local without assigning TTY, forking in background. You can also add -C for compression (but overhead on lil NIT might or might not be worth it; I don't know). You can also run QtNX a client for running remote X applications with low latency, heavy compression, and resuming on the server. Its like a 'screen for X' with the speed of RDP. Latter 2 are for showing the application on the NIT running the app remotely. PS: If you run nothing on the remote computer except a plain X server with no apps running, and you fire up Firefox, a lot of libraries have to be loaded. This takes some time. If you'd already run GNOME (with GTK2, and a lot of other libraries) many of these libraries are already loaded. [This is only true for shared libraries; but that is the case here.] |
Re: Introducing BlueMaemo
There is a way to get bluemaemo work over wifi ?
.. maybe another program can do that ? .. because i would use it on a computer without bluetooth (not want a dongle too) Kytrix. |
Re: Introducing BlueMaemo
Quote:
|
Re: Introducing BlueMaemo
thats, imo, a strength of bluetooth over wifi or wusb. it defines specific protocols/profiles for different things.
with wifi or (w)usb, there is just the "cable", the rest one need to come up with each time more or less. still, i think intel was working on turning wifi into some kind of bluetooth using multiple ad-hoc connections. im not sure if they plan to include profiles tho... |
Re: Introducing BlueMaemo
Sure would be suh-weet if it worked with Mac ;)
|
Re: Introducing BlueMaemo
Anybody know of anyway to make it reconnect? I know that reconnect will be added to the program, but I figure there has to be some BT managing software for Vista that makes it automatically reconnect. Love this app, but it isn't really useful or practical without being able to reconnect.
|
Re: Introducing BlueMaemo
Can I use this as a tv remote? If so, what kinda of TV does it support? Thanks
|
Re: Introducing BlueMaemo
Quote:
|
Re: Introducing BlueMaemo
Feature Request: Add Vertical Scroll Bar to Keyboard Mode
It would be great if there was a scroll bar in the keyboard mode, just like the one that is in the mouse mode. This would be especially useful when doing internet browsing, because you often have to scroll down when viewing longer web pages. Since the keyboard mode already has a small "touchpad" area for mouse movement, you could really just use this one mode for lots of web browsing behaviors. Added to Garage feature request list: https://garage.maemo.org/tracker/ind...=765&atid=2867 |
Re: Introducing BlueMaemo
Quote:
thanks, peter |
Re: Introducing BlueMaemo
Quote:
Just wondering though. Is anyone using this together with thier phone? |
Re: Introducing BlueMaemo
Quote:
|
Re: Introducing BlueMaemo
Hey so...I just tried it on my Mac and it worked beautifully...I just had to lie to it and say the question mark was to the left of right shift.
Did something change? Is my Mac just special? EDIT: Keyboard and mouse work fine. Connection must be initiated from the machine (as expected). The only drawback so far is that I'm unsure if it's possible/how to send a Command key with it, as lot's of things are easier with that key...I think Macs treat Meta/Windows keys as Cmd, so not sure if the N810/Bluemaemo can send it. Otherwise, though it's great. Works well for FrontRow, and saved me buying an Apple Remote. |
Re: Introducing BlueMaemo
Quote:
Cheers. |
Re: Introducing BlueMaemo
Quote:
Which version of Mac OS are you using ? Can you explain the steps that you done, in order to help other Mac users ? Best regards, |
Re: Introducing BlueMaemo
In my S60 phone (Nokia E71) I have BlueTooth set up (they can tether, send/receive files, use GPS). Now I fire up wireless keyboard on the phone. BlueTooth is enabled. Then it says. Cannot connect. And BlueMaemo always says waiting for connection. What am I doing wrong?
|
Re: Introducing BlueMaemo
Sorry it took me so long to respond, I've been busy.
I connected it to my machine (white MacBook) running 10.5.6, uh, normally. FWIW, I hadn't previously paired the MacBook and the N810. I just tried it again from scratch, and the steps to do so are as follows: 1. Turn bluetooth on on both devices. Set the N810 discoverable. 2. In the Mac Bluetooth menu (ie, from the menu bar) click "Set Up Bluetooth Device." 3. On the N810, start BlueMaemo. 4. On the Mac, it will ask what type of device. I chose "Any Device." It will search; choose the N810 and enter a passkey. Shortly, the passkey dialog should appear in front of BlueMaemo on the N810. Enter your passkey. 5. Click "Continue" on the Mac dialog box. It may ask you if you want to use the N810 as a headest (why?) or a remote control for the computer. I left remote control checked but unchecked headset. I think that pretty much does it. The first time I did it (I think maybe I chose "Keyboard" instead of "Any Device") it went and asked me to hit the key to the right of the left shift and the left of the right shift (to which I pressed Z and ? on the N810 keyboard). This second time, starting again from scratch, it didn't, but both keyboard and mouse work fine. To reconnect it, you have to first start BlueMaemo then click on the Mac Bluetooth menu and go N810 > Connect. I hope this helps other Mac users out there to use this awesome program! Thanks for writing it! It saved me buying an Apple Remote and it's WAY cooler...Now I just wish I could make my own layouts for it (I want one to control Logic/Garageband!). EDIT - noticed one thing, not sure if this is normal or not. When in the Keyboard view with the onscreen keyboard and small mousing area, both OSK and N810 hard keyboard work. But in any of the other views (eg, the bigger mousing area view), the hard keyboard doesn't work. Is this just me? Or is this just how it works for the moment? If so, that would be a great improvement, so we 810 users could make the most of both screen and keyboard. |
Re: Introducing BlueMaemo
Quote:
|
Re: Introducing BlueMaemo
Is there going to be the revision in BlueMaemo which will allow reconnect option ?
I thought the developer was going to bring out the version with reconnect option - been quite a long wait now ... Without the reconnect option BlueMaemo is not really exploring its full potential. |
Re: Introducing BlueMaemo
Quote:
|
Re: Introducing BlueMaemo
This appeared in my Mac directions post above, but is (I think) worth re-asking:
Is it normal/expected behavior that the N810 hard keyboard doesn't work when the program is in the mouse mode? If it is, that's a change I would suggest; that way those of us with hard keyboards can make the most of the screen/keyboard real estate. If not, then something isn't working. Now, when it's in keyboard mode, where there's a small mousing area and an on-screen keyboard, the hardware keyboard also works, but half of the screen is wasted with the (very nice) on-screen keyboard. |
All times are GMT. The time now is 13:50. |
vBulletin® Version 3.8.8