Is ist possible to sync Windows mobile devices with limpus

Joined
Aug 20, 2008
Messages
1
Reaction score
0
hello - i have an artemis or mda compact 3 with windows mobile 2006 - there is a program Synce - but i am too stupid to install this program on my one - please help!!!!

greezzz tix
 
You could try this guide
/!\ Packages for Fedora 8 are currently in updates-testing. To install them add --enablerepo=updates-testing to the yum commands below to install the packages.

Mandatory connection tools

This software is required for a basic connection to work, so that you can send files to and from your device.

$ sudo yum install odccm

odccm is installed as a system service but disabled by default. You can start it with

$ sudo service odccm start

If odccm should be started automatically add it to the desired runlevel via chkconfig

$ sudo chkconfig --level 35 odccm on

Note for Fedora 9 with wm5/6: Before going further try the following:

1.

$ sudo yum install synce-sync-engine symce-gnome synce-kde synce-software-manager synce-trayicon librapi

2.

on the wm-5/6 pda, in Settings -> Connections -> USB Settings, select "Transmission As Network Interface".
3. connect the wm-5/6 (I.E. put it in the cradle)
4. run the command "pls", this should list the files on your device and prove your connection is up.
5.

Gnome users: in the "Applications->System Tools" menu, you will find "synce-trayicon", run it, and a nice PDA icon will show up in the desktop notification area, ("Explore with File Manager" (synce-gnomevfs) will not work because Nautilus doesn't use gnomevfs anymore, it was replaced by gvfs.)
6.

If you want to access the internet on your device through the linux box, run sync-engine, which should allow this automagically.

You are done, enjoy! The older vdccm is also available via

$ sudo yum install vdccm

Some devices may need a patched kernel. For your convenience a dkms based package is provided that will automatically install and upgrade the kernel. It can be downloaded fromhttp://fedora.lowlatency.de/review/ ... noarch.rpm and installed via (pick f8 or f9 depending on your fedora version):

$ sudo yum install dkms
$ sudo rpm -Uhv synce-usb-rndis-lite-dkms-0.11-1.fc8.noarch.rpm
OR
$ rpm -Uhv http://fedora.lowlatency.de/review/sync ... noarch.rpm

Synchronization Support

If you want to use synchronization features of the device install synce-sync-engine:

$ sudo yum install synce-sync-engine

Finished

SynCE is now installed. You can progress to the next step of the SynceInstallation.

link to the article is here
http://www.synce.org/moin/SynceInstallation/Fedora
 
thanks. it was all going well until step...

Code:
sudo rpm -Uhv synce-usb-rndis-lite-dkms-0.11-1.fc8.noarch.rpm

when I get...
Code:
[user@localhost Downloads]$ sudo rpm -Uhv synce-usb-rndis-lite-dkms-0.11-1.fc8.noarch.rpm
Preparing...                ########################################### [100%]
   1:synce-usb-rndis-lite-dk########################################### [100%]

Creating symlink /var/lib/dkms/synce-usb-rndis-lite-dkms/0.11-1.fc8/source ->
                 /usr/src/synce-usb-rndis-lite-dkms-0.11-1.fc8

DKMS: add Completed.

Error! Your kernel source for kernel 2.6.23.9lw cannot be found at
/lib/modules/2.6.23.9lw/build or /lib/modules/2.6.23.9lw/source.
You can use the --kernelsourcedir option to tell DKMS where it's located.

Error! Could not locate cdc_ether.ko for module synce-usb-rndis-lite-dkms in the DKMS tree.
You must run a dkms build for kernel 2.6.23.9lw (i686) first.
error: %post(synce-usb-rndis-lite-dkms-0.11-1.fc8.noarch) scriptlet failed, exit status 1

also when i try to start the tray icon i get an error in a message box saying

Code:
can't start dccm which is needed to communicate with the phone

I dont even know how i can install dccm or even where to start looking

any ideas?? I was so close
 
for DKMS you have to do that :

Code:
 wget# [url]ftp://[email protected]/Aspire_One_Linpus_Linux/Aspire_One_Source/linux-2.6.23.9lw.zip[/url]
unzip -x linux-2.6.23.9lw.zip
sudo mv linux-2.6.23.9/ /usr/src/linux-2.6.23.9
sudo ln -s /usr/src/linux-2.6.23.9 /usr/src/linux-2.6.23.9lw

But i've tried to compile the rndis module, it failed... Look here :
http://suzukube.blogspot.com/

:/ Really don't know if it will work....

PS : When i write W#GET i have an 404 error on the forum :/
 
Same error with the kernel source. The kernel has no RNDIS entries. We have to rebuilt the kernel with the "is wireless" module...

This is why everything Bug :

I know that bug well. I actually consider it a feature, because it makes it clear that you have the wrong kernel settings. Otherwise cdc_ether compiles without windows mobile and everything else fails silently.

Basically, there is a section like this:

#if defined(CONFIG_USB_NET_RNDIS_HOST) || defined(CONFIG_USB_NET_RNDIS_HOST_MODULE)
// you need this
#else
// but you're getting this
#endif

So if you enable CONFIG_USB_RNDIS_HOST_MODULE in your kernel config, this should build OK. This is default on most distros, with Gentoo the old exception i'm so far aware of. I guess Debian armel has a smaller kernel by default?

We could just remove the #ifdef, but we are trying to stay somewhat in sync with the kernel.

John

I've tried to recompile the kernel but it was not easy at all... I never found the CONFIG_USB_RNDIS_HOST_MODULE in the linpus kernel!but it is in the Ubuntu Kernel... Strange :roll:
 
Back
Top