Difference between pages "Package:DeaDBeeF" and "Package:Bind"

From Funtoo
(Difference between pages)
Jump to navigation Jump to search
m
 
m
 
Line 1: Line 1:
{{Ebuild
{{Ebuild
|Summary=A foobar2000-like music player
|Summary=BIND - Berkeley Internet Name Domain - Name Server
|CatPkg=media-sound/deadbeef
|CatPkg=net-dns/bind
|Maintainer=damex
|Homepage=http://www.isc.org/software/bind
|Homepage=http://deadbeef.sourceforge.net/
}}
}}
DeaDBeeF (as in 0xDEADBEEF) is an audio player for GNU/Linux, *BSD, OpenSolaris and other UNIX-like systems. There's also the Android version, which is a very different product. There are no Windows, OSX or iOS versions though, sorry for that.


Main features (the list is most likely far from complete):
BIND is a DNS server.


    mp3, ogg vorbis, flac, ape, wv/iso.wv, wav, m4a/mp3 (aac and alac), mpc, tta, cd audio, and many more
=== Installation ===
    nsf, ay, vtx, vgm/vgz, spc and many other popular chiptune formats
{{console|body=###i## emerge net-dns/bind}}
    SID with HVSC song length database support for sid
    tracker modules - mod, s3m, it, xm, etc
    ID3v1, ID3v2.2, ID3v2.3, ID3v2.4, APEv2, Xing/Info, VorbisComments tag reading and writing, as well as reading many other tag/metadata formats in most supported formats
    automatic character set detection for non-unicode id3 tags - supports cp1251, iso8859-1, and now chinese cp936 (optional), as well as SHIFT-JIS and MS-DOS CP866 for selected formats
    unicode tags are fully supported as well (both utf8 and ucs2)
    cuesheet (.cue files) support, including charset detection/conversion
    clean fast GUI using GTK2 and GTK3, you pick what you like more!
    no GNOME or KDE dependencies
    minimization to system tray, with scrollwheel volume control, etc
    drag and drop, both in playlist, and from other apps
    control playback from command line
    global hotkeys
    multiple playlists using tabbed interface
    album cover display
    OSD notifications about current playing songs
    18-band graphical equalizer and other DSP plugins
    built-in high quality tag editor, with custom fields support
    customizable groups in playlists
    customizable columns with flexible title formatting
    streaming radio support for ogg vorbis, mp3 and aac streams
    gapless playback for correctly encoded files
    lots of plugin, such as global hotkeys, last.fm scrobbler, converter, and many more, sdk is included
    comes with advanced Converter plugin, which allows to transcode files to other formats
    was tested on x86, x86_64, powerpc, arm, mips architectures, should work on most modern platforms
    new features are being added all the time -- check for updates frequently!


== Installing DeaDBeeF ==
=== Local Caching Only Server ===
To install deadbeef, emerge it:
{{console|body=###i## echo "dns_servers="127.0.0.1" >> /etc/conf.d/net}}
<console>
###i## emerge deadbeef
</console>


== Installing DeaDBeeF 3rd Party Plugins==
{{file|name=/etc/bind/named.conf|lang=|desc=ensure local listening|body=
deadbeef-plugins-meta package will be automatically pulled in when you install deadbeef player.
listen-on-v6 { ::1; };
It has many use flags which are described at the metadata.xml. https://raw.githubusercontent.com/damex/funtoo-deadbeef/master/media-plugins/deadbeef-plugins-meta/metadata.xml
listen-on { 127.0.0.1; };
If you want to emerge one of those plugins - just enable that use flag for deadbeef-plugins-meta and emerge it:
}}
<console>
 
###i## emerge deadbeef-plugins-meta
{{file|name=/etc/bind/named.conf|lang=|desc=remove /* comments */ disabling this block, optionally add your upstream DNS servers|body=
</console>
forward first;
forwarders {
// 123.123.123.123; // Your ISP NS
// 124.124.124.124; // Your ISP NS
// 4.2.2.1; // Level3 Public DNS
// 4.2.2.2; // Level3 Public DNS
8.8.8.8; // Google Open DNS
8.8.4.4; // Google Open DNS
};
}}
 
{{file|name=/etc/resolv.conf|lang=|desc=set the local system to listen to BIND|body=
nameserver 127.0.0.1
}}
 
{{console|body=###i## rc-update add named default
###i## rc
}}
 
{{PageNeedsUpdates}}
{{EbuildFooter}}
{{EbuildFooter}}

Revision as of 13:42, February 5, 2015

Bind

   Tip

We welcome improvements to this page. To edit this page, Create a Funtoo account. Then log in and then click here to edit this page. See our editing guidelines to becoming a wiki-editing pro.


BIND is a DNS server.

Installation

root # emerge net-dns/bind

Local Caching Only Server

root # echo "dns_servers="127.0.0.1" >> /etc/conf.d/net
   /etc/bind/named.conf - ensure local listening
listen-on-v6 { ::1; };
	listen-on { 127.0.0.1; };
   /etc/bind/named.conf - remove /* comments */ disabling this block, optionally add your upstream DNS servers
forward first;
	forwarders {
	//	123.123.123.123;	// Your ISP NS
	//	124.124.124.124;	// Your ISP NS
	//	4.2.2.1;		// Level3 Public DNS
	//	4.2.2.2;		// Level3 Public DNS
		8.8.8.8;		// Google Open DNS
		8.8.4.4;		// Google Open DNS
	};
   /etc/resolv.conf - set the local system to listen to BIND
nameserver 127.0.0.1
root # rc-update add named default
root # rc