Showing entries with tag "Fedora".

Found 13 entries

Fedora 31 major package versions

Fedora 31 has these versions of some core packages:

Package Version
Apache 2.4.41
GCC 9.2.1
Kernel 5.3.7
Perl 5.30.0
PHP 7.3.11
Vim 8.1.2198
Git 2.23.0
MariaDB 10.3.17
Leave A Reply

Linux: CentOS 8 major package versions

CentOS 8 has these versions of some core packages:

Package Version
Apache 2.4.37
GCC 8.2.1
Kernel 4.18.0
Perl 5.26.3
PHP 7.2.11
Vim 8.0.1763
Git 2.18.1
Leave A Reply

Linux: Fedora 29 major package versions

Fedora 29 has these versions of some core packages:

Package Version
Apache 2.4.34
GCC 8.2.1
Kernel 4.18.16
Perl 5.28.0
PHP 7.2.11
Vim 8.1.483
Git 2.19.1
Leave A Reply

Linux: Fedora 28 major package versions

Fedora 28 has these versions of some core packages:

Package Version
Apache 2.4.33
GCC 8.0.1
Kernel 4.16.3
Perl 5.26.1
PHP 7.2.5
Vim 8.0.1788
Git 2.17.0
Leave A Reply

Fedora: Enable h264 video on Firefox with Fedora 28

The h264 video codec is the most popular codec on the internet right now. Unfortunately it's patent encumbered so it cannot be included in Firefox unless Mozilla were to pay a licensing fee. To enable h264 support in Firefox on Fedora 28 you'll need to enable the RPM Fusion repository.

dnf install https://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-$(rpm -E %fedora).noarch.rpm \
https://download1.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-$(rpm -E %fedora).noarch.rpm

After you've configured RPM Fusion you'll need to install some FFMpeg libraries to handle the actual h264 decoding:

dnf install ffmpeg-libs compat-ffmpeg28
Leave A Reply

Linux: Fedora 27 major package versions

Fedora 27 has these versions of some core packages:

Package Version
Apache 2.4.29
GCC 7.2.1
Kernel 4.13.3
Perl 5.26.1
PHP 7.1.11
Vim 8.0.1187
Git 2.14.3
Leave A Reply - 1 Reply

Linux: Fedora 26 major package versions

Fedora 26 has these versions of some core packages:

Package Version
Apache 2.4.26
GCC 7.1.1
Kernel 4.11.8
Perl 5.24.1
PHP 7.1.6
Vim 8.0.662
Git 2.13.0
Leave A Reply

Linux: Fedora 25 major package versions

Fedora 25 has these versions of some core packages:

Package Version
Apache 2.4.23
GCC 6.2.1
Kernel 4.8.6
Perl 5.24.0
PHP 7.0.12
Vim 7.4.1989
Leave A Reply

Linux: Fedora 22 major package versions

Fedora 22 has been released and I gathered the versions of some core packages:

Package Version
Perl 5.20.2
PHP 5.6.9
Vim 7.4.640
Apache 2.4.12
Kernel 4.0.4
Leave A Reply

Fedora: Force memcached to only listen on 127.0.0.1

I've been toying with memcached lately and wanted to ensure that it was only listening on 127.0.0.1. On Fedora this is controlled by the file /etc/sysconfig/memcached. Make sure that the OPTIONS line contains -l 127.0.0.1.

$ cat /etc/sysconfig/memcached 

PORT="11211"
USER="memcached"
MAXCONN="1024"
CACHESIZE="64"
OPTIONS="-l 127.0.0.1"
Leave A Reply

Linux: Fedora 21 major package versions

Fedora 21 looks like it will ship with following package versions:

Package Version
Perl 5.18.4
PHP 5.6.2
Vim 7.4.475
Firefox 33.0
Apache 2.4.10
Leave A Reply

Fedora desktop RPM list

Quick list of RPMs I install on my desktop after a fresh Fedora install.

yum install dstat filelight firefox gkrellm mc ncdu nmap openvpn perl-core pidgin pv qalculate-kde screen thunderbird vim-enhanced zstd perl-App-cpanminus

Server:

yum install dstat mc ncdu nmap perl-core pv screen vim-enhanced perl-App-cpanminus tree iptables-services wget bzip2 epel-release
Leave A Reply

CentOS: Multiple static IPV6 addresses

I needed to apply multiple static IPV6 addresses to a single interface under Fedora/CentOS. To do this you'll need to add an IPV6ADDR_SECONDARIES line to your /etc/sysconfig/network-scripts/ifcfg-eth0 so that it looks like this:

IPV6_DEFAULTGW=2001:db8::1
IPV6_AUTOCONF=no
IPV6ADDR=2001:db8::50/64
IPV6ADDR_SECONDARIES="2001:db8::40/64 2001:db8::30/64"

Note: Addresses are added in reverse order. Outbound traffic will use the last secondary IP added.

Leave A Reply