You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+22-6
Original file line number
Diff line number
Diff line change
@@ -107,26 +107,40 @@ For more details see the **User Guide** in the [**doc** directory](https://githu
107
107
108
108
### Linux - Using git clone (recommended) ###
109
109
110
-
You will probably need to install one of these packages first:
110
+
***Note that this has changed for version 1.6. There are now a couple extra steps.***
111
+
112
+
A standard operating system install will probably include these already:
113
+
114
+
- git
115
+
- gcc or clang compiler
116
+
- make
117
+
118
+
You will probably need to install additional packages:
111
119
112
120
On Debian / Ubuntu / Raspbian:
113
121
122
+
sudo apt-get install cmake
114
123
sudo apt-get install libasound2-dev
124
+
sudo apt-get install libudev-dev
115
125
116
126
Or on Red Hat / Fedora / Centos:
117
127
128
+
sudo yum install cmake
118
129
sudo yum install alsa-lib-devel
130
+
sudo yum install libudev-devel
119
131
120
132
Then on any flavor of Linux:
121
133
122
134
cd ~
123
135
git clone https://www.github.com/wb2osz/direwolf
124
136
cd direwolf
125
-
make
137
+
mkdir build && cd build
138
+
cmake ..
139
+
make –j4
126
140
sudo make install
127
141
make install-conf
128
142
129
-
This should give you the most recent stable release. If you want the latest (possibly unstable) development version, use "git checkout dev" before the first "make" command.
143
+
This should give you the most recent stable release. If you want the latest (possibly unstable) development version, use "git checkout dev" after the "cd direwolf" command.
130
144
131
145
For more details see the **User Guide** in the [**doc** directory](https://github.com/wb2osz/direwolf/tree/master/doc). Special considerations for the Raspberry Pi are found in **Raspberry-Pi-APRS.pdf**
132
146
@@ -136,7 +150,7 @@ For more details see the **User Guide** in the [**doc** directory](https://githu
136
150
Results will vary depending on your hardware platform and operating system version because it depends on various volunteers who perform the packaging.
137
151
138
152
sudo apt-get update
139
-
apt-cache showpkg direwolf
153
+
apt-cache showpkg direwolf
140
154
sudo apt-get install direwolf
141
155
142
156
@@ -145,15 +159,17 @@ Results will vary depending on your hardware platform and operating system versi
145
159
Results will vary depending on your hardware platform and operating system version because it depends on various volunteers who perform the packaging.
146
160
147
161
sudo yum check-update
148
-
sudo yum list direwolf
162
+
sudo yum list direwolf
149
163
sudo yum install direwolf
150
164
151
165
### Linux - Download source in tar or zip file ###
152
166
153
167
Go to the [releases page](https://github.com/wb2osz/direwolf/releases). Chose desired release and download the source as zip or compressed tar file. Unpack the files, with "unzip" or "tar xfz," and then:
0 commit comments