Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Fedora instructions to F22 #192

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 9 additions & 14 deletions doc/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -76,22 +76,17 @@ <h5>Tails (Version 1.1.1)</h5>

<p>From time to time you can re-run the <tt>pond-build</tt> command to update to the latest version.</p>

<h5>Fedora 19</h5>
<h5>Fedora 22</h5>

<p>Fedora's <tt>golang</tt> package appears to be completely broken, so this installs Go from source.</p>

<pre>sudo yum install gtk3-devel gtkspell3-devel gcc trousers-devel git mercurial tor
sudo systemctl start tor
cd
git clone https://github.com/golang/go
cd go/src
./all.bash
cd
export PATH=$PATH:$HOME/go/bin
mkdir gopkg
export GOPATH=$HOME/gopkg
<pre>sudo dnf install gtk3-devel trousers-devel gtkspell3-devel git mercurial tor golang
sudo systemctl enable tor.service
sudo systemctl start tor.service
echo 'export GOPATH="$HOME/gopkg/"' >> ~/.bashrc
echo 'alias pond="$GOPATH/bin/client"' >> ~/.bashrc
. ~/.bashrc
mkdir -p "$GOPATH"
go get github.com/agl/pond/client
$GOPATH/bin/client</pre>
pond</pre>

<h5>Arch</h5>
<pre>
Expand Down