From 3462653196d948398c375b7cf2679b43f3755253 Mon Sep 17 00:00:00 2001 From: ShengHuang Date: Tue, 22 Aug 2023 00:22:35 +0800 Subject: [PATCH 1/6] docs: Added Debian, RedHat, openSUSE, installation instructions --- docs/getting-started.md | 63 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 63 insertions(+) diff --git a/docs/getting-started.md b/docs/getting-started.md index 6caa58e0..15fae375 100644 --- a/docs/getting-started.md +++ b/docs/getting-started.md @@ -26,3 +26,66 @@ sudo daed [-h,--help] If everything goes well, open your browser and navigate to `http://localhost:2023` Happy Hacking! + +## Debian / Ubuntu + +Releases are available in or the following command gets the latest version of the precompiled installation package consistent with your current system architecture + +``````shell +# Download +wget -P /tmp https://github.com/daeuniverse/daed/releases/latest/download/installer-daed-linux-$(arch).deb + +# install +sudo dpkg -i /tmp/installer-daed-linux-$(arch).deb +rm /tmp/installer-daed-linux-$(arch).deb + +# Start daed +sudo systemctl start daed + +# set up automatically +sudo systemctl enable daed +`````` + +If everything goes well, open your browser and navigate to `http://localhost:2023` + +## RedHat + +Releases are available in or the following command gets the latest version of the precompiled installation package consistent with your current system architecture + +``````shell +# Download +wget -P /tmp https://github.com/daeuniverse/daed/releases/latest/download/installer-daed-linux-$(arch).rpm + +# install +sudo rpm -ivh /tmp/installer-daed-linux-$(arch).rpm +rm /tmp/installer-daed-linux-$(arch).rpm + +# Start daed +sudo systemctl start daed + +# set up automatically +sudo systemctl enable daed +`````` + +If everything goes well, open your browser and navigate to `http://localhost:2023` + +## openSUSE + +Releases are available in or the following command gets the latest version of the precompiled installation package consistent with your current system architecture + +``````shell +# Download +wget -P /tmp https://github.com/daeuniverse/daed/releases/latest/download/installer-daed-linux-$(arch).rpm + +# install +sudo zypper install /tmp/installer-daed-linux-$(arch).rpm +rm /tmp/installer-daed-linux-$(arch).rpm + +# Start daed +sudo systemctl start daed + +# set up automatically +sudo systemctl enable daed +`````` + +If everything goes well, open your browser and navigate to `http://localhost:2023` From e308efbf4d2452ecc34a731557326e0663686105 Mon Sep 17 00:00:00 2001 From: ShengHuang Date: Tue, 22 Aug 2023 00:54:52 +0800 Subject: [PATCH 2/6] docs: Modify the self-starting comment description --- docs/getting-started.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/getting-started.md b/docs/getting-started.md index 15fae375..86a22ba6 100644 --- a/docs/getting-started.md +++ b/docs/getting-started.md @@ -42,7 +42,7 @@ rm /tmp/installer-daed-linux-$(arch).deb # Start daed sudo systemctl start daed -# set up automatically +# enable daed start automatically sudo systemctl enable daed `````` @@ -63,7 +63,7 @@ rm /tmp/installer-daed-linux-$(arch).rpm # Start daed sudo systemctl start daed -# set up automatically +# enable daed start automatically sudo systemctl enable daed `````` @@ -84,7 +84,7 @@ rm /tmp/installer-daed-linux-$(arch).rpm # Start daed sudo systemctl start daed -# set up automatically +# enable daed start automatically sudo systemctl enable daed `````` From 951c0fabfc471ab7415fecfe431bcccd6056ebc3 Mon Sep 17 00:00:00 2001 From: ShengHuang Date: Tue, 22 Aug 2023 02:17:02 +0800 Subject: [PATCH 3/6] docs: Correction instructions --- docs/getting-started.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/getting-started.md b/docs/getting-started.md index 86a22ba6..212e262e 100644 --- a/docs/getting-started.md +++ b/docs/getting-started.md @@ -25,8 +25,6 @@ sudo daed [-h,--help] If everything goes well, open your browser and navigate to `http://localhost:2023` -Happy Hacking! - ## Debian / Ubuntu Releases are available in or the following command gets the latest version of the precompiled installation package consistent with your current system architecture @@ -89,3 +87,5 @@ sudo systemctl enable daed `````` If everything goes well, open your browser and navigate to `http://localhost:2023` + +Happy Hacking! From 07d12e1b8fcdf37700f0159da552dbe124a4b507 Mon Sep 17 00:00:00 2001 From: kunish <17328586+kunish@users.noreply.github.com> Date: Tue, 22 Aug 2023 17:21:33 +0800 Subject: [PATCH 4/6] Update docs/getting-started.md Co-authored-by: kev <31861128+yqlbu@users.noreply.github.com> Signed-off-by: kunish <17328586+kunish@users.noreply.github.com> --- docs/getting-started.md | 1 - 1 file changed, 1 deletion(-) diff --git a/docs/getting-started.md b/docs/getting-started.md index 212e262e..c2bea106 100644 --- a/docs/getting-started.md +++ b/docs/getting-started.md @@ -65,7 +65,6 @@ sudo systemctl start daed sudo systemctl enable daed `````` -If everything goes well, open your browser and navigate to `http://localhost:2023` ## openSUSE From deb80cb9a02ad7adb0b02d30176f8e06ac0b1584 Mon Sep 17 00:00:00 2001 From: kunish <17328586+kunish@users.noreply.github.com> Date: Tue, 22 Aug 2023 17:21:40 +0800 Subject: [PATCH 5/6] Update docs/getting-started.md Co-authored-by: kev <31861128+yqlbu@users.noreply.github.com> Signed-off-by: kunish <17328586+kunish@users.noreply.github.com> --- docs/getting-started.md | 1 - 1 file changed, 1 deletion(-) diff --git a/docs/getting-started.md b/docs/getting-started.md index c2bea106..6c9a1010 100644 --- a/docs/getting-started.md +++ b/docs/getting-started.md @@ -44,7 +44,6 @@ sudo systemctl start daed sudo systemctl enable daed `````` -If everything goes well, open your browser and navigate to `http://localhost:2023` ## RedHat From 852bcf810a645ea5c73d1dca29ebfee369db9141 Mon Sep 17 00:00:00 2001 From: kunish <17328586+kunish@users.noreply.github.com> Date: Tue, 22 Aug 2023 17:22:45 +0800 Subject: [PATCH 6/6] Update docs/getting-started.md Signed-off-by: kunish <17328586+kunish@users.noreply.github.com> --- docs/getting-started.md | 1 - 1 file changed, 1 deletion(-) diff --git a/docs/getting-started.md b/docs/getting-started.md index 6c9a1010..39f35ddd 100644 --- a/docs/getting-started.md +++ b/docs/getting-started.md @@ -84,6 +84,5 @@ sudo systemctl start daed sudo systemctl enable daed `````` -If everything goes well, open your browser and navigate to `http://localhost:2023` Happy Hacking!