Skip to content

Commit

Permalink
install: update install docs
Browse files Browse the repository at this point in the history
  • Loading branch information
bharnden committed Nov 18, 2023
1 parent cecc1f3 commit 611c30d
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 9 deletions.
2 changes: 1 addition & 1 deletion dockerfiles/Dockerfile.rocky
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ RUN yum update -y && \

# install core
WORKDIR /opt
CORE_PACKAGE=core_9.0.3_x86_64.rpm
ARG CORE_PACKAGE=core_9.0.3_x86_64.rpm
ARG PACKAGE_URL=https://github.com/coreemu/core/releases/latest/download/${CORE_PACKAGE}
RUN yum update -y && \
wget -q ${PACKAGE_URL} && \
Expand Down
22 changes: 14 additions & 8 deletions docs/install_rocky.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,17 +57,23 @@ rm *devel*.rpm
sudo yum install -y ./emane*.rpm ./python3-emane-${EMANE_VERSION}-1.el8.noarch.rpm

# install core
WORKDIR /opt
PACKAGE_URL=https://github.com/coreemu/core/releases/latest/download/core_9.0.3_x86_64.rpm
RUN yum update -y && \
wget -q ${PACKAGE_URL} && \
PYTHON=python3.9 yum install -y ./core_*.rpm && \
rm -f core_*.rpm && \
yum autoremove -y && \
yum clean all
cd ~/Documents
CORE_PACKAGE=core_9.0.3_x86_64.rpm
PACKAGE_URL=https://github.com/coreemu/core/releases/latest/download/${CORE_PACKAGE}
wget -q ${PACKAGE_URL}
PYTHON=python3.9 yum install -y ./${CORE_PACKAGE}

# install emane python bindings into CORE virtual environment
cd ~/Documents
sudo yum install -y dnf-plugins-core
sudo yum config-manager --set-enabled devel
sudo yum update -y
sudo yum install -y \
protobuf-devel \
libxml2-devel \
pcre-devel \
libuuid-devel \
libpcap-devel
wget https://github.com/protocolbuffers/protobuf/releases/download/v3.19.6/protoc-3.19.6-linux-x86_64.zip
mkdir protoc
unzip protoc-3.19.6-linux-x86_64.zip -d protoc
Expand Down
1 change: 1 addition & 0 deletions docs/install_ubuntu.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ sudo apt-get install -y \
tcpdump

# install ospf mdr
cd ~/Documents
apt-get install -y \
automake \
gawk \
Expand Down

0 comments on commit 611c30d

Please sign in to comment.