Skip to content

Commit

Permalink
fixes to installtion
Browse files Browse the repository at this point in the history
  • Loading branch information
Orbiter committed Sep 24, 2023
1 parent 81f7455 commit 5225c18
Showing 1 changed file with 14 additions and 22 deletions.
36 changes: 14 additions & 22 deletions docs/download_installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,11 +58,6 @@ The source code is inside the generic tarball. It is recommended you clone the G

YaCy can run under a normal user account, no root rights are needed.

* Go to download folder in the terminal
```
cd ~/Downloads
```

* Unpack the tarball.
```
tar xfz yacy<VERSION>.tar.gz
Expand All @@ -71,8 +66,17 @@ tar xfz yacy<VERSION>.tar.gz
* Run `startYACY.sh` inside your decompressed folder.
```
cd yacy<VERSION>
./startYACY.sh
```
Installing from start to finish would look something like this, depending on your distro.
```
sudo apt-get update
sudo dpkg --configure -a
sudo apt-get install -y openjdk-11-jre-headless
wget https://download.yacy.net/yacy_v1.924_20210209_10069.tar.gz
tar xfz yacy_v1.924_20210209_10069.tar.gz
cd yacy
./startYACY.sh
```

Expand Down Expand Up @@ -175,33 +179,21 @@ You need:

Then run:
```
git clone https://github.com/yacy/yacy_search_server.git
```
```
git clone --depth 1 https://github.com/yacy/yacy_search_server.git
cd yacy_search_server
ant clean all
```
```
ant clean all dist
```

The compiled tarball will then be in the `RELEASE` folder.

To start YaCy from your compiled code, simply run:
```
./startYACY.sh
```

Installing from start to finish would look something like this, depending on your distro.
If you want to make a release, run
```
sudo apt-get update
sudo dpkg --configure -a
sudo apt-get install -y openjdk-11-jre-headless
wget https://download.yacy.net/yacy_v1.924_20210209_10069.tar.gz
tar xfz yacy_v1.924_20210209_10069.tar.gz
cd yacy
./startYACY.sh
ant clean all dist
```

The compiled tarball will then be in the `RELEASE` folder.


# Kubernetes
Expand Down

0 comments on commit 5225c18

Please sign in to comment.