The Funtoo Linux project has transitioned to "Hobby Mode" and this wiki is now read-only.
Difference between revisions of "Funtoo:Metro"
Line 43: | Line 43: | ||
== Build Repository Setup == | == Build Repository Setup == | ||
Metro uses a repository to store built stages and snapshots, which typically resides at {{ | Metro uses a repository to store built stages and snapshots, which typically resides at {{f|/home/mirror/funtoo}}. There are two methods to set up your build repository -- it can be done [[Metro/Manual Setup|manually]] or [[Metro/AutoSetup|with our auto-setup script.]] The auto-setup script is of course faster and easier, while the manual method may give you a deeper understanding of how the build repository internals work. | ||
[[Category:HOWTO]] | [[Category:HOWTO]] |
Revision as of 01:59, February 17, 2019
Installation
The recommended and supported method is to use the Git repository of Metro.
Ensure that dev-vcs/git, No results, No results and No results are installed on your system.
root # emerge dev-vcs/git dev-python/requests dev-python/sqlalchemy dev-python/lxml
Next, clone the master git repository as follows:
root # cd /root root # git clone git://github.com/funtoo/metro.git root # cp /root/metro/metro.conf ~/.metro
You will now have a directory called /root/metro
that contains all the Metro source code.
Setting up ego
Now, we will set the ego
, administration tool of Funtoo Linux. The way it is used with metro is independent from app-admin/ego
installed on your box. Setup is easy as follows:
root # cd /root root # git clone https://github.com/funtoo/ego.git
This way you will have /root/ego
directory with ego
binary that is then used by metro.
Build Repository Setup
Metro uses a repository to store built stages and snapshots, which typically resides at /home/mirror/funtoo
. There are two methods to set up your build repository -- it can be done manually or with our auto-setup script. The auto-setup script is of course faster and easier, while the manual method may give you a deeper understanding of how the build repository internals work.