Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "Mihini/Install Mihini"

(link to the main tutorial)
(RPM & AUR instructions)
Line 1: Line 1:
The fast option to get ready with Mihini is to get it from the <code>.deb</code>:
+
The fast option to get ready with Mihini is to get it from the <code>.deb</code>, the <code>.rpm</code> or the AUR:  
 +
 
 +
= Installation =
 +
 
 +
== Debian-based  ==
 +
 
 +
=== 32 bits  ===
 +
 
 
<source lang="bash">
 
<source lang="bash">
$ wget http://<path>/mihini-0.8.0-Linux.deb
+
$ wget http://<path>/mihini-0.8.0-i368.deb
$ sudo dpkg -i mihini-0.8.0-Linux.deb
+
$ sudo dpkg -i mihini-0.8.0-i368.deb
</source>
+
</source>
 +
 
 +
=== 64 bits  ===
 +
 
 +
<source lang="bash">
 +
$ wget http://<path>/mihini-0.8.0-and64.deb
 +
$ sudo dpkg -i mihini-0.8.0-amd64.deb
 +
</source>
 +
 
 +
== Fedora  ==
 +
 
 +
=== 32 bits  ===
 +
 
 +
<source lang="bash">
 +
$ wget http://<path>/mihini-0.8.0-i386.rpm
 +
$ sudo rpm -U mihini-0.8.0.i386.rpm
 +
</source>
 +
 
 +
=== 64 bits  ===
 +
 
 +
<source lang="bash">
 +
$ wget http://<path>/mihini-0.8.0-amd64.rpm
 +
$ sudo rpm -U mihini-0.8.0.amd64.rpm
 +
</source>
 +
 
 +
== ArchLinux / ArchLinuxARM  ==
 +
 
 +
The AUR package is available for any arch, so if you have [https://wiki.archlinux.org/index.php/Yaourt yaourt] (which is available on ArchLinuxARM with <code>pacman -Syu yaourt</code>), you just need to: <source lang="bash">
 +
 
 +
$ yaourt -Syu mihini-git
 +
</source>
 +
 
 +
= Managing the daemon =
 +
With the <code>.deb</code>, a sysV init script is provided, and with the <code>.rpm</code> and the AUR packages, there is a systemd config file.
 +
 
 +
Theses daemons are automatically launched in the end of the installation process (and stopped when you uninstall the packages).
 +
 
 +
To manage the sysV init daemon, you can use <code>sudo /etc/init.d/mihini {start|stop|restart|purge}</code>.
 +
And with systemd, there is also <code>sudo systemctl {start|stop|restart|enable|disable} mihini</code>
  
Now, the Mihini's appmon_daemon and the agent are started. You can use <code>/etc/init.d/mihini {start|stop|restart|status|purge}</code> to control it.
+
= Next =
  
Then, you can go back to the main tutorial: [[Mihini/Run_Mihini_on_an_Open_Hardware_platform|Run Mihini on an Open Hardware platform]]
+
Then, you can go back to the main tutorial: [[Mihini/Run Mihini on an Open Hardware platform|Run Mihini on an Open Hardware platform]]

Revision as of 10:48, 28 June 2013

The fast option to get ready with Mihini is to get it from the .deb, the .rpm or the AUR:

Installation

Debian-based

32 bits

$ wget http://<path>/mihini-0.8.0-i368.deb
$ sudo dpkg -i mihini-0.8.0-i368.deb

64 bits

$ wget http://<path>/mihini-0.8.0-and64.deb
$ sudo dpkg -i mihini-0.8.0-amd64.deb

Fedora

32 bits

$ wget http://<path>/mihini-0.8.0-i386.rpm
$ sudo rpm -U mihini-0.8.0.i386.rpm

64 bits

$ wget http://<path>/mihini-0.8.0-amd64.rpm
$ sudo rpm -U mihini-0.8.0.amd64.rpm

ArchLinux / ArchLinuxARM

The AUR package is available for any arch, so if you have yaourt (which is available on ArchLinuxARM with pacman -Syu yaourt), you just need to:
$ yaourt -Syu mihini-git

Managing the daemon

With the .deb, a sysV init script is provided, and with the .rpm and the AUR packages, there is a systemd config file.

Theses daemons are automatically launched in the end of the installation process (and stopped when you uninstall the packages).

To manage the sysV init daemon, you can use sudo /etc/init.d/mihini {start|stop|restart|purge}. And with systemd, there is also sudo systemctl {start|stop|restart|enable|disable} mihini

Next

Then, you can go back to the main tutorial: Run Mihini on an Open Hardware platform

Back to the top