Changeset b85a77f
- Timestamp:
- 08/01/2014 10:35:07 PM (9 years ago)
- Branches:
- 10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 7.10, 7.6, 7.7, 7.8, 7.9, 8.0, 8.1, 8.2, 8.3, 8.4, 9.0, 9.1, basic, bdubbs/svn, elogind, kea, ken/inkscape-core-mods, ken/tuningfonts, krejzi/svn, lazarus, lxqt, nosym, perl-modules, plabs/python-mods, qt5new, renodr/vulkan-addition, trunk, upgradedb, xry111/intltool, xry111/soup3, xry111/test-20220226, xry111/xf86-video-removal
- Children:
- 4574961
- Parents:
- ba780d6b
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
introduction/welcome/changelog.xml
rba780d6b rb85a77f 48 48 <para>August 1st, 2014</para> 49 49 <itemizedlist> 50 <listitem> 51 <para>[fernando] - Update to wireshark-1.12.0. Fixes 52 <ulink url="&blfs-ticket-root;5317">#5317</ulink>.</para> 53 </listitem> 50 54 <listitem> 51 55 <para>[igor] - Update to libdrm-2.4.56. Fixes -
networking/netutils/wireshark.xml
rba780d6b rb85a77f 7 7 <!ENTITY wireshark-download-http "http://www.wireshark.org/download/src/all-versions/wireshark-&wireshark-version;.tar.bz2"> 8 8 <!ENTITY wireshark-download-ftp " "> 9 <!ENTITY wireshark-md5sum " 510dc3b063785549b41ebc748ac21055">10 <!ENTITY wireshark-size "2 6MB">11 <!ENTITY wireshark-buildsize "8 40MB">12 <!ENTITY wireshark-time "5. 1SBU">9 <!ENTITY wireshark-md5sum "8dcfe451d8769901129809d2e19c1fb7"> 10 <!ENTITY wireshark-size "28 MB"> 11 <!ENTITY wireshark-buildsize "875 MB"> 12 <!ENTITY wireshark-time "5.0 SBU"> 13 13 ]> 14 14 … … 83 83 84 84 <para>Note that you need <application>Gtk+</application> or 85 <application>Qt4</application> installed, otherwise, you will need topass85 <application>Qt4</application> installed, otherwise, pass 86 86 <option>--disable-wireshark</option> to the 87 <command>configure</command> command.</para> 87 <command>configure</command> command. SBU and disk space required are larger 88 for the Qt GUI.</para> 88 89 89 90 <bridgehead renderas="sect4">Recommended</bridgehead> 90 91 <para role="recommended"> 92 <xref linkend="gtk3"/> (to build the <application>Gtk+3</application> 93 GUI) and 91 94 <xref linkend="libpcap"/> (required to capture data) 92 95 </para> … … 94 97 <bridgehead renderas="sect4">Optional</bridgehead> 95 98 <para role="optional"> 96 <ulink url="http://www.gnu.org/software/adns/adns.html">adns</ulink>,97 <ulink url="http://www.maxmind.com/app/c">GeoIP</ulink>,98 99 <xref linkend="gnutls"/>, 99 100 <xref linkend="libgcrypt"/>, 100 101 <xref linkend="lua"/>, 101 102 <xref linkend="mitkrb"/>, 102 <xref linkend="openssl"/>, and 103 <xref linkend="openssl"/>, 104 <ulink url="http://www.gnu.org/software/adns/adns.html">adns</ulink>, 105 <ulink url="http://www.maxmind.com/app/c">GeoIP</ulink>, and 103 106 <ulink url="http://www.portaudio.com/download.html">PortAudio</ulink> 104 107 </para> … … 107 110 <para role="optional"> 108 111 <xref linkend="gtk2"/>, 109 <xref linkend=" gtk3"/>, or110 <xref linkend="qt 4"/>112 <xref linkend="qt4"/>, or 113 <xref linkend="qt5"/> 111 114 </para> 112 115 … … 168 171 <screen><userinput>usermod -a -G wireshark <replaceable><username></replaceable></userinput></screen> 169 172 173 <para>If you have <application>GTK+2</application> and 3, and 174 <application>Qt4</application> and 5, one GUI linked to 175 <application>GTK+3</application> and another one linked to 176 <application>Qt5</application> are built, by default. Instead, we chose to 177 build the <application>GTK+3</application> GUI only, as the BLFS default. 178 If you prefer otherwise, some modifications are mecessary. For 179 modifications in the <command>configure</command> switches, see 180 "Command Explanations".</para> 181 182 <para>If you want to build a Qt GUI and have both 183 <application>Qt4</application> and 5 installed, issue either:</para> 184 185 <screen><userinput>source setqt5</userinput></screen> 186 187 <para>if you want the <application>Qt5</application> GUI built, or:</para> 188 189 <screen><userinput>source setqt4 && 190 sed -i 's/Qt5 Qt/Qt/' configure</userinput></screen> 191 192 <para>if you want the <application>Qt4</application> GUI built.</para> 193 170 194 <para>Continue to install <application>Wireshark</application> by running 171 195 the following commands:</para> 172 196 173 <screen><userinput>./configure --prefix=/usr --sysconfdir=/etc && 197 <screen><userinput>./configure --prefix=/usr \ 198 --with-gtk3=yes \ 199 --with-qt=no \ 200 --sysconfdir=/etc && 174 201 make</userinput></screen> 175 202 … … 214 241 chmod -v 6550 /usr/bin/{tshark,dumpcap}</userinput></screen> 215 242 216 <para>Finally, add any users to the wireshark group with <userinput>usermod -a -G 217 wireshark <username></userinput>.</para> 243 <para>Finally, add any users to the wireshark group (as root user):</para> 244 245 <screen role="root"><userinput>usermod -a -G wireshark <username></userinput></screen> 218 246 219 247 </sect2> … … 222 250 <title>Command Explanations</title> 223 251 224 <para><parameter>--enable-threads</parameter>: This parameter enables the 225 use of threads in <command>wireshark</command>.</para> 252 <para><command>sed -i 's/Qt5 Qt/Qt/'</command>: This command is required 253 because without it, libraries and includes from 254 <application>Qt5</application> are found and used first, if both versions 255 are installed, when trying to build with <application>Qt4</application>, 256 and <command>make</command> does not complete.</para> 226 257 227 258 <para><option>--disable-wireshark</option>: This option is required if you 228 259 have <application>GTK+</application> installed but do not want to build 229 the G UI.</para>230 231 <para>< option>--with-gtk3=yes</option>: This option is required if you want232 to use <application>GTK+ </application>3 instead of 2, for the GUI.</para>233 234 < para><option>--with-qt=yes</option>: This option is required if you want to235 use <application>Qt</application> instead of 236 < application>GTK+</application>, for the GUI.</para>237 238 <para><option>--with-ssl</option>: This option is required if you 239 are linking Kerberos libraries into the build so that the240 <application>OpenSSL</application>241 <filename class='libraryfile'>libcrypto</filename> library is found.</para>260 the GTK+ and Qt GUIs.</para> 261 262 <para><parameter>--with-gtk3=yes</parameter>: This switch is required 263 to use <application>GTK+3</application> for the GUI, if you are using 264 <parameter>--with-qt=no</parameter>. Change gtk3 by gtk2,to use 265 <application>GTK+3</application> for the GUI.</para> 266 267 <para><parameter>--with-qt=no</parameter>: This switch disables build of 268 the Qt GUI. Replace "no" by "yes", if you want it to be built.</para> 269 270 <para><option>--with-gtk2=yes</option>: This option is required if you want 271 to use <application>GTK+</application>2, instead of 3, for the GUI. Notice 272 that the GUI for only one GTK+ version (either 2 or 3) can be built.</para> 242 273 243 274 </sect2> … … 271 302 <application>Wireshark</application>'s configuration can be accomplished 272 303 using the menu options of the <command>wireshark</command> 273 graphical interface.</para> 304 graphical interfaces.</para> 305 306 </sect3> 307 308 <sect3> 309 <title>Desktop file for the Qt GUI</title> 310 311 <para>If Qt GUI was built and you wish an entry in the desktop menu, 312 there are two possibilities (instructions must be run as root).</para> 313 314 <para>If only the Qt GUI was built:</para> 315 316 <screen role="root"><userinput>mv -v /usr/share/applications/wireshark.desktop \ 317 /usr/share/applications/wireshark-qt.desktop</userinput></screen> 318 319 <para>If both, GTK+ and Qt GUIs were built:</para> 320 321 <screen role="root"><userinput>cp -v /usr/share/applications/wireshark.desktop \ 322 /usr/share/applications/wireshark-qt.desktop</userinput></screen> 323 324 <para>Now, fix it for <command>wireshark-qt</command>:</para> 325 326 <screen role="root"><userinput>sed -e 's/ireshark/&-qt/' \ 327 -e 's/^\(Icon=wireshark\)-qt/\1/' \ 328 -i /usr/share/applications/wireshark-qt.desktop</userinput></screen> 274 329 275 330 <note> … … 294 349 295 350 <seglistitem> 296 <seg>capinfos, dftest, dumpcap, editcap, mergecap, randpkt, rawshark, 297 reordercap, text2pcap, tshark, and wireshark</seg> 298 <seg>libwireshark.so, libwiretap.so, libwsutil.so, and 351 <seg>capinfos, captype, dftest, dumpcap, editcap, mergecap, randpkt, 352 rawshark, reordercap, text2pcap, tshark, 353 wireshark and wireshark-qt</seg> 354 <seg>libfiletap.so, libwireshark.so, libwiretap.so, libwsutil.so, and 299 355 numerous modules under /usr/lib/wireshark/plugins</seg> 300 356 <seg>/usr/lib/wireshark, /usr/share/doc/wireshark-&wireshark-version;, … … 316 372 <indexterm zone="wireshark capinfos"> 317 373 <primary sortas="b-capinfos">capinfos</primary> 374 </indexterm> 375 </listitem> 376 </varlistentry> 377 378 <varlistentry id="captype"> 379 <term><command>captype</command></term> 380 <listitem> 381 <para>prints the file types of capture files.</para> 382 <indexterm zone="wireshark captype"> 383 <primary sortas="b-captype">captype</primary> 318 384 </indexterm> 319 385 </listitem> … … 423 489 <term><command>wireshark</command></term> 424 490 <listitem> 425 <para>is a GUI network protocol analyzer. It lets you interactively426 browse packet data from a live network or from a previously427 saved capture file.</para>491 <para>is the GTK+ GUI network protocol analyzer. It lets you 492 interactively browse packet data from a live network or from a 493 previously saved capture file.</para> 428 494 <indexterm zone="wireshark wireshark-prog"> 429 495 <primary sortas="b-wireshark">wireshark</primary> 496 </indexterm> 497 </listitem> 498 </varlistentry> 499 500 <varlistentry id="wireshark-qt-prog"> 501 <term><command>wireshark-qt</command></term> 502 <listitem> 503 <para>is the Qt GUI network protocol analyzer. It lets you 504 interactively browse packet data from a live network or from a 505 previously saved capture file.</para> 506 <indexterm zone="wireshark wireshark-qt-prog"> 507 <primary sortas="b-wireshark-qt">wireshark-qt</primary> 430 508 </indexterm> 431 509 </listitem> -
packages.ent
rba780d6b rb85a77f 331 331 <!ENTITY whois-version "5.1.4"> 332 332 <!ENTITY wicd-version "1.7.2.4"> 333 <!ENTITY wireshark-version "1.1 0.8"> <!-- even minors only -->333 <!ENTITY wireshark-version "1.12.0"> <!-- even minors only --> 334 334 335 335 <!ENTITY wicd-major-version "1.7">
Note:
See TracChangeset
for help on using the changeset viewer.