Page 1 of 1
kano os integration
Posted: Mon May 26, 2014 2:14 am
by ric96
Is there a way to integrate kano os with raspbian?
Re: kano os integration
Posted: Mon May 26, 2014 6:17 am
by riklaunim
Change wallpaper, install the same apps and you have it.
Re: kano os integration
Posted: Mon May 26, 2014 6:31 am
by ShiftPlusOne
what do you mean by 'integrate'?
Re: kano os integration
Posted: Mon May 26, 2014 4:05 pm
by ric96
ShiftPlusOne wrote:what do you mean by 'integrate'?
kano is build upon raspbian
what i mean is make an raspbian installation look and behave like kano without the need of reflashing my sdcard
Re: kano os integration
Posted: Mon May 26, 2014 6:54 pm
by ShiftPlusOne
I would start by looking at /etc/apt/sources.list and /etc/apt/sources.list.d/* and seeing if they added an additional repo to house their own stuff. Then you can fire up synaptic or use the command line tools to see what's actually installed from there. Then investigate what's autostarted and how.
Re: kano os integration
Posted: Tue May 27, 2014 5:56 am
by ric96
Foumd the repo
Cannot get the public key
Help
Re: kano os integration
Posted: Tue May 27, 2014 6:05 am
by ShiftPlusOne
Code: Select all
wget -q -O - http://dev.kano.me/archive/repo.gpg.key | sudo /usr/bin/apt-key add -
Re: kano os integration
Posted: Tue May 27, 2014 1:40 pm
by ric96
created a script to install kano on raspbian
pl. check
https://github.com/ric96/kano-raspbian
Re: kano os integration
Posted: Tue May 27, 2014 7:22 pm
by ShiftPlusOne
won't work
Code: Select all
sudo echo "deb http://dev.kano.me/archive/ release main" > /etc/apt/sources.list.d/kano.list
This runs the 'echo' command as root. However, the redirection '>' is done as the current user.
Why do you have 'sudo' in every other line?
You also download files and don't clean up after yourself.
Code: Select all
sudo apt-get upgrade -y
sudo apt-get dist-upgrade -y
Why? They do almost the same thing.
Code: Select all
#!/bin/bash -e
if [ $EUID -ne 0 ]; then
echo "This script must be run as root!"
exit 1
fi
Since almost everything the script does is done as root, cut out all of the 'sudo' and add the above check to the script.
Re: kano os integration
Posted: Tue May 27, 2014 9:58 pm
by ric96
ShiftPlusOne wrote:won't work
Code: Select all
sudo echo "deb http://dev.kano.me/archive/ release main" > /etc/apt/sources.list.d/kano.list
This runs the 'echo' command as root. However, the redirection '>' is done as the current user.
Why do you have 'sudo' in every other line?
You also download files and don't clean up after yourself.
Code: Select all
sudo apt-get upgrade -y
sudo apt-get dist-upgrade -y
Why? They do almost the same thing.
Code: Select all
#!/bin/bash -e
if [ $EUID -ne 0 ]; then
echo "This script must be run as root!"
exit 1
fi
Since almost everything the script does is done as root, cut out all of the 'sudo' and add the above check to the script.
Point 1. And 3. Noted changes will be made
Point 2 ) there are some files from the kano repo that are not upgraded by using just "upgrade"
Re: kano os integration
Posted: Tue May 27, 2014 10:07 pm
by ShiftPlusOne
2) Dist-upgrade implies upgrade.
Re: kano os integration
Posted: Tue May 27, 2014 10:09 pm
by ric96
ShiftPlusOne wrote:2) Dist-upgrade implies upgrade.
oh yeah !! almost forgot!
Re: kano os integration
Posted: Tue May 27, 2014 10:12 pm
by ric96
changes done!