User:Meeg: Difference between revisions

From OLPC
Jump to navigation Jump to search
No edit summary
No edit summary
 
(12 intermediate revisions by 2 users not shown)
Line 1: Line 1:
==To do==
*Hide RTNETLINK message
*Make Debian package
==My profile==
{"__aid__":[],"__nid__":[0,23,196,5,36,95],"__pic__":0,"__typ__":[],"dorm":"East Campus","name":"Sho Uemura","nick":"Meeg","room":"H303","sex":"male"}
==Notes==
The Cerebro package in the latest Joyride builds (joyride-2130 or later) is largely equivalent to what you get by manually installing Cerebro from the git repository.

Version of your installed Cerebro package: "yum info cerebro"

Version in git: in your /root/cerebro folder, "git-log"

Assuming these match, the following things (needed for the study but not for Cerebro functionality) are done by /root/cerebro/install.sh but not by the Cerebro package:
*Add ypod's ssh key to your authorized_keys
*Set Cerebro to start at boot
*Add trackclient.py to your rc.local

setup_cerebro.sh in my public is a script based on install.sh (cut out the actions redundant with the package and added the git stuff) that you can use to do this. Note that if you do this, cerebroui will be in your path, whereas install.sh puts it in your home directory.
<!--
===Using Cerebro package===
You must have joyride-2130 or newer ("cat /etc/issue" to check).

In a terminal:
<pre>
su -
wget http://web.mit.edu/meeg/Public/setup_cerebro.sh
bash setup_cerebro.sh
</pre>
Reboot.

"cerebroui" will start the UI.
==keeper.py==
self.buddy['ip'] = os.popen('ifconfig eth0|grep "inet addr"|cut -d: -f2|cut -d\ -f1').readline().strip()
-->

Latest revision as of 06:50, 25 July 2008

To do

  • Hide RTNETLINK message
  • Make Debian package

My profile

{"__aid__":[],"__nid__":[0,23,196,5,36,95],"__pic__":0,"__typ__":[],"dorm":"East Campus","name":"Sho Uemura","nick":"Meeg","room":"H303","sex":"male"}

Notes

The Cerebro package in the latest Joyride builds (joyride-2130 or later) is largely equivalent to what you get by manually installing Cerebro from the git repository.

Version of your installed Cerebro package: "yum info cerebro"

Version in git: in your /root/cerebro folder, "git-log"

Assuming these match, the following things (needed for the study but not for Cerebro functionality) are done by /root/cerebro/install.sh but not by the Cerebro package:

  • Add ypod's ssh key to your authorized_keys
  • Set Cerebro to start at boot
  • Add trackclient.py to your rc.local

setup_cerebro.sh in my public is a script based on install.sh (cut out the actions redundant with the package and added the git stuff) that you can use to do this. Note that if you do this, cerebroui will be in your path, whereas install.sh puts it in your home directory.