Arch linux post-installation and ovs
See original GitHub issueHi all,
I’ve installed from AUR mininet 2.2.1-4
and the required dependencies.
Then I’ve found these set of commands from the post-install script
# systemctl enable ovsdb-server.service
# systemctl start ovs-vswitchd.service
# systemctl enable ovsdb-server.service
# systemctl start ovs-vswitchd.service
I think that they are wrong and should be substituted with:
# systemctl enable ovs-vswitchd.service
# systemctl start ovs-vswitchd.service
Because once I start and enable ovs-vswitchd
I can see both services that are running typing
a command like systemctl |grep ovs
.
Even if I executed, what I think, are the correct commands when I type sudo mn
the program
is struck at:
*** Creating network
*** Adding controller
*** Adding hosts:
h1 h2
*** Adding switches:
s1
*** Adding links:
(h1, s1) (h2, s1)
*** Configuring hosts
h1 h2
*** Starting controller
c0
*** Starting 1 switches
s1 ...
Can you help me with that ? I think that the problem is related with the database.
I’d really like to develop using my host OS (manjaro-linux) rather than a VM.
Thanks !
Issue Analytics
- State:
- Created 7 years ago
- Reactions:1
- Comments:6
Top Results From Across the Web
Arch Linux - What to do after installing (configuring and setup ...
Link to blog:https://www.chrisatmachine.com/ArchLinux/02- After - Install / ... Arch Linux - What to do after installing (configuring and setup ...
Read more >A step by step Arch Linux installation guide
First, download the Arch Linux installation ISO from the Arch Linux website. ... where /path/to/archlinux.iso is the path to your downloaded ISO ...
Read more >Installation guide - ArchWiki - Arch Linux
This document is a guide for installing Arch Linux using the live system booted from an installation medium made from an official ...
Read more >How to Install Arch Linux in 2022 [Step by Step Guide]
Select Boot Arch Linux (x86_64). After various checks, Arch Linux will boot to the login prompt with the root user. Not using US...
Read more >A Complete Guide on How to Install Arch Linux [with Pictures]
How to Install Arch Linux · In the box next to Create As, choose Primary if the disk is a GPT disk, or...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
I manages to have mininet working on arch linux by:
sudo modprobe openvswitch
controller
executable:sudo ln -s /usr/bin/ovs-testcontroller /usr/bin/controller
Hope this helps
Hi @martinjlowm
Are there any updates regarding Arch linux
mininet
pkg?Cheers