View Single Post
Posts: 189 | Thanked: 171 times | Joined on Jul 2011
#15
Originally Posted by marmistrz View Post
I dun know whether Nokia will be on the case were distibuting their software... Lets hope not. Its free of charge so there should be no problem (as Nokia is abandoning Meego either)

Anyway, I came across a package binutils2.22 in devel, so I think theres no use in pushing my build as its older.

After all, we could use libstdc++6 in preenv too if it was ported as nfs hp or asphalt 6 uses newer one I bet.
I meant image to try themselves
I am assuming rsync is not available for the N9, if it is then please try it instead
If the MyDocs folder still exists on the N9 then this could work:
Code:
sudo su #(or whatever to be root :D )
dd if=/dev/zero of=/home/user/MyDocs/meego-image bs=1024 count=2097152
mkfs.ext3 /home/user/MyDocs/meego-image
export MEEGO_ROOT="/mnt/meego_root"
mkdir $MEEGO_ROOT
mount -o loop /home/user/MyDocs/meego-image $MEEGO_ROOT
cd $MEEGO_ROOT
cp -rf /bin ./
cp -rf /etc ./
cp -rf /home ./
cp -rf /lib ./
cp -rf /var ./
cp -rf /sbin ./
cp -rf /opt ./
cp -rf /usr ./
umount $MEEGO_ROOT
then copy to your N900 and install easydebian. Then
Code:
export MEEGO_ROOT="/mnt/meego_root"
mkdir $MEEGO_ROOT
mount -o loop /home/user/MyDocs/meego-image $MEEGO_ROOT
cd $MEEGO_ROOT
qchroot 'none' ./ /bin/ash #or whatever the binary is, I believe this qchroot command is correct :)
That should get you running and then running any required apps or services should be trivial/simple. Good luck and someone PLEASE try.