from small one page howto to huge articles all in one place
 

search text in:




Other .linuxhowtos.org sites: www.linuxhowtos.org
toolsntoys.linuxhowtos.org



Last additions:
How to make X listen on port 6000

How to make X listen on port 6000

words:

34

views:

67290

userrating:

average rating: 1.2 (8 votes) (1=very good 6=terrible)


May, 25th 2007:
April, 26th 2007:
Apr, 10th. 2007:
Druckversion . pdf icon
You are here: Installation Guides

Summary

This text describes the installation and configuration of a heavy duty internet server running a gentoo linux distribution. The server will have to run 24/7 with minimum downtime for maintenance and is connected to a 100MBit Internet backbone. I choose gentoo as distribution because of the really fast availability of new versions and security patches for all installed packages. Everything will be compiled for the special needs of this maschine with various security enhancement features which ship with the available glibc/gcc versions (like stack smashing protections).

Changelog

Previous versions used to split the swap space across the raid harddiscs and not to mirror it. In case of a hard disc failure your system might(will) crash. This is not intended... (Thanks to Nick Rosier to point this out).

Note

This howto is NOT suited for users who run their first linux (or gentoo) install. Previous linux knowledge is needed, not every detail will be explained here.

System descriptions

Hardware

The system is a dual Xeon 2.66 Ghz with 512KB cache size and enabled hyperthreading.

System storage will be 2 80 GB HDDs running in a raid 1 with network backup every night. The filesystem will be XFS on a software raid 1 (mirroring) system.

Memory: 1GB, build in network card, no sound used, onboard graphics.

The machine will have an UPS and external cooling and will be mounted in a 19" rack.

Software

The system will be a heavy duty webserver running at least the following services/daemons:

  • Apache 2 as webserver (with many virtual hosts)
  • openLDAP for authentication for smtp/imap/pop3 and other login services, but not for system login
  • postfix with sasl2 support as MTA (Mail Transfer Agent)
  • courier-imap for imap access
  • courier-pop3
  • mysql as database backend
  • php (hardened) for various web frontends
  • LeopardCMS (a highspeed content management system written in C) for websites
  • ldapphpadmin for administrating the ldap server
  • squirrelmail as webmail service
  • awstats for website statistics

Installation

The basic installation is explained in the wonderful gentoo installation handbook.

I will only describe the modification on each step.

I will use a stage 1 installation with the minimal boot CD.

Installation in quick style (refer to the handbook if you don't know how to do the individual step(s))

Booting:

  • Boot from the CD, load the right network drivers
  • Change root password to something we know.
  • Configure the network with the given ip address dns servers etc.
  • Start sshd (optional)

Partitioning the hdd(s)

I'm using fdisk to partition the hdds, use whatever you like best.

Attention: To be able to use the raid 1, both hdds must be partitioned exactly identical, so write down the setting when partitioning.

My HDD layout :

/dev/hda1 boot partition 10 MB,  partition type: fd (Linux raid autodetect)
/dev/hda2 swap partition 250 MB, partition type: 82 (Linux swap)
/dev/hda3 root partition remaining space, partition type: fd (Linux raid autodetect)
The same applies to the 2nd HDD.

Setting up the raid 1

edit/create the file /etc/raidtab and enter the following (adjust the devices if neccessary)

raiddev         /dev/md0
nr-raid-disks   2
persistent-superblock   1
device          /dev/hda1
raid-disk       0
device          /dev/hdc1
raid-disk       1

raiddev         /dev/md2
nr-raid-disks   2
persistent-superblock   1
device          /dev/hda3
raid-disk       0
device          /dev/hdc3
raid-disk       1

In case you want to mirror the swap:

raiddev         /dev/md1
nr-raid-disks   2
persistent-superblock   1
device          /dev/hda2
raid-disk       0
device          /dev/hdc2
raid-disk       1

Note: I do not use a raid for the swap, I will explain the swap setup a bit later.
Please also see the comment at the bottom of this page, why this may cause trouble on a harddisk failure.

start the raid by running

raidstart --all
enter "cat /proc/mdstat"

You should see something like this:

Personalities : [raid1]
md0 : active raid1 hda1[1] hdc1[1]
      XXX blocks [2/2] [UU]
md2 : active raid1 hda3[1] hdc3[1]
      YYY blocks [2/2] [UU]

Now, after your raid is up and running, don't think about touching /dev/hda or /dev/hdc directly again. Only use /dev/md0 or /dev/md2.

Applying a Filesystem to a Partition

create your filesystems like it is described in the handbook, only use /dev/md0 and /dev/md2 for the target devices.

Activate the Swap Partitions

Because we are using 2 identical hdds, we have 2 swap partitions that we enable both.

Later in the /etc/fstab config we can tune a bit to make our swap faster.

Mounting

Now we follow the handbook a bit for mounting and downloading the needed stage 1 tarball. Remember, use /dev/mdX as partitions.

Configuring the Compile Options

I prefer to to use the full make.conf.default for configuration, so I copy it over before editing.

cp /mnt/gentoo/etc/make.conf.default /mnt/gentoo/etc/make.conf
now we edit the file
nano -w /mnt/gentoo/etc/make.conf

CHOST is set to i686-pc-linux-gnu

I use the following CFLAGS:

CFLAGS="-march=pentium4 -O2 -pipe" be careful, if you enable the hardened toolchain, never use more than -O2 for compiling.

If you have an AMD cpu, or a pentium2/3 change the -march setting to your cpu.

I set the MAKEOPTS to -j5 (number of CPUs plus one) (2 x Xeon with HT enabled makes 4 virtual CPUs)

MAKEOPTS="-j5"

setting USE-Flags

I use the following line

USE="-X -gtk -gnome -alsa mysql apache2 ssl ssh openldap\
sasl2 pam pic pie hardened hardenedphp xml vhosts"
I don't want X, gtk, gnome or alsa. (This is a server)

But I want mysql, apache, a.s.o.

The flags pic, pie and hardened are used with the hardened toolchain provided by gentoo.

These make the executables less vulnerable to buffer overflow and other programming mistakes. As of the writing of this howto, the flags "pic, pie and hardened" cause some problems with some packages. Manual patching and fiddling may be needed.

UPDATE: I installed another server lately (Nov. 2005), no patching was needed any more.

Follow the installation manual including the Stage1 to Stage2 section.

It is always useful to download the packages first and after that, start the real bootstrapping process. There is nothing better than having a bootstrap failing after 60+ mins on the last package because the file was damaged on the ftp mirror.

Proceed from stage2 to stage3 the documented way.

This will take a while, in my case 71 packages will be installed.

Just keep yourself occupied with something, like writing a howto or something ;)

Now its time to configure the kernel as described in the manual

  • set the timezone
  • install a kernel. I used a hardened-sources kernel (version 2.6.7-r7)
  • check the symlink /usr/src/linnux
  • configure the kernel with make menuconfig
  • make sure to check SMP support in case of a multiple CPU machine.
  • If you use XFS and like to not loose parts of your filesystem data, disable preemptible kernel.
  • Think twice before enabling power management functions like software suspend.
  • You really don't want that your server goes into suspend mode during the night.
  • Warning: If you use MySQL, do not enable the PaX feature "Disallow ELF text relocations". Enabling this makes you unable to compile and run MySQL. *sniff*
  • compile the kernel (remember to use the -j5 flag like in the MAKEOPTS line).
  • install the kernel.

configuring /etc/fstab

enter the data as described in the manual, but use /dev/md0 and /dev/md2

for the swap line use the following 2 lines

/dev/hda2  none swap sw,pri=2 0 0
/dev/hdc2  none swap sw,pri=2 0 0
This way the kernel uses both hdds for swap with the same priority, this means some data will be swapped to one hdd, some to the other and both could be read/written at the same time. This gives a speed boost when you need swap (which should never happen on normal conditions...).
Or use
/dev/md2  none swap sw,pri=2 0 0
in case of a mirrored swap partion.

Enter the networking information as described in the handbook (ip, domainname, ...)

Continue with the installation manual until you got through the manual and

have the basic system running as you want.

While writing this howto, it was planned to have a part 2 to describe the installation of additional software like apache, postfix and others.

But since they are installed exactly as on a "normal" gentoo distribution, a part 2 is not really needed.

comments

Nick Rosier wrote in an email:
I just read this setup. IMHO there's a little flaw in the setup. Goal is to have as little downtime as possible. To gain maybe a bit more performance the author decided not to mirror swap. This is a bad idea. In case of a hard-disk failure part of your swapspace will be unavailable/corrupted meaning your system will possibly crash. I doubt that is what one wants.
Nick has a valid point.
In this setup I use ide harddisks. (yes, I know, SCSI would be better...)
If one of the hdds dies, its very likely that the system crashes any way. This is my experience with ide hdds.
If you use SCSI or SATA-drives, the situation might change. On those drives it might be better to use raid on the swap, too.
rate this article:
current rating: average rating: 1.7 (18 votes) (1=very good 6=terrible)
Your rating:
Very good (1) Good (2) ok (3) average (4) bad (5) terrible (6)

back



Support us on Content Nation

New Packages

- as rdf newsfeed
- as rss newsfeed
- as Atom newsfeed
2024-05-03
Devel-CheckOS - 2.10.0
Ebuild name:

dev-perl/Devel-CheckOS-2.10.0

Description

Check what OS we're running on

Added to portage

2024-05-03

Email-MIME - 1.954.0
Ebuild name:

dev-perl/Email-MIME-1.954.0

Description

Easy MIME message parsing

Added to portage

2024-05-03

Faker - 25.0.1
Ebuild name:

dev-python/Faker-25.0.1

Description

A Python package that generates fake data for you

Added to portage

2024-05-03

Net-DNS - 1.450.0
Ebuild name:

dev-perl/Net-DNS-1.450.0

Description

Perl Interface to the Domain Name System

Added to portage

2024-05-03

SNMP_Session - 1.160.0
Ebuild name:

dev-perl/SNMP_Session-1.160.0

Description

A SNMP Perl Module

Added to portage

2024-05-03

SQL-Translator - 1.650.0
Ebuild name:

dev-perl/SQL-Translator-1.650.0

Description

Manipulate structured data definitions (SQL and more)

Added to portage

2024-05-03

Spreadsheet-XLSX - 0.180.0
Ebuild name:

dev-perl/Spreadsheet-XLSX-0.180.0

Description

Perl extension for reading MS Excel 2007 files

Added to portage

2024-05-03

Test-Compile - 3.3.2
Ebuild name:

dev-perl/Test-Compile-3.3.2

Description

Check whether Perl files compile correctly

Added to portage

2024-05-03

awscli - 1.32.97
Ebuild name:

app-admin/awscli-1.32.97

Description

Universal Command Line Environment for AWS

Added to portage

2024-05-03

boto3 - 1.34.97
Ebuild name:

dev-python/boto3-1.34.97

Description

The AWS SDK for Python

Added to portage

2024-05-03

botocore - 1.34.97
Ebuild name:

dev-python/botocore-1.34.97

Description

Low-level, data-driven core of boto 3

Added to portage

2024-05-03

dist-kernel - 5.10.216
Ebuild name:

virtual/dist-kernel-5.10.216

Description

Virtual to depend on any Distribution Kernel

Added to portage

2024-05-03

dist-kernel - 5.15.158
Ebuild name:

virtual/dist-kernel-5.15.158

Description

Virtual to depend on any Distribution Kernel

Added to portage

2024-05-03

dist-kernel - 6.1.90
Ebuild name:

virtual/dist-kernel-6.1.90

Description

Virtual to depend on any Distribution Kernel

Added to portage

2024-05-03

dist-kernel - 6.6.30
Ebuild name:

virtual/dist-kernel-6.6.30

Description

Virtual to depend on any Distribution Kernel

Added to portage

2024-05-03

dist-kernel - 6.8.9
Ebuild name:

virtual/dist-kernel-6.8.9

Description

Virtual to depend on any Distribution Kernel

Added to portage

2024-05-03

flit - 3.9.0
Ebuild name:

dev-python/flit-3.9.0

Description

Simplified packaging of Python modules

Added to portage

2024-05-03

fractal - 7
Ebuild name:

net-im/fractal-7

Description

Matrix messaging app for GNOME written in Rust

Added to portage

2024-05-03

gaplint - 1.2.1
Ebuild name:

dev-gap/gaplint-1.2.1

Description

Linter for GAP

Added to portage

2024-05-03

gentoo-kernel - 5.10.216
Ebuild name:

sys-kernel/gentoo-kernel-5.10.216

Description

Linux kernel built with Gentoo patches

Added to portage

2024-05-03

gentoo-kernel - 5.15.158
Ebuild name:

sys-kernel/gentoo-kernel-5.15.158

Description

Linux kernel built with Gentoo patches

Added to portage

2024-05-03

gentoo-kernel - 6.1.90
Ebuild name:

sys-kernel/gentoo-kernel-6.1.90

Description

Linux kernel built with Gentoo patches

Added to portage

2024-05-03

gentoo-kernel - 6.6.30
Ebuild name:

sys-kernel/gentoo-kernel-6.6.30

Description

Linux kernel built with Gentoo patches

Added to portage

2024-05-03

gentoo-kernel - 6.8.9
Ebuild name:

sys-kernel/gentoo-kernel-6.8.9

Description

Linux kernel built with Gentoo patches

Added to portage

2024-05-03

gentoo-kernel-bin - 5.10.216
Ebuild name:

sys-kernel/gentoo-kernel-bin-5.10.216

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2024-05-03

gentoo-kernel-bin - 5.15.158
Ebuild name:

sys-kernel/gentoo-kernel-bin-5.15.158

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2024-05-03

gentoo-kernel-bin - 6.1.90
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.1.90

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2024-05-03

gentoo-kernel-bin - 6.6.30
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.6.30

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2024-05-03

gentoo-kernel-bin - 6.8.9
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.8.9

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2024-05-03

gfloat - 0.1
Ebuild name:

dev-python/gfloat-0.1

Description

Generic floating-point types in Python

Added to portage

2024-05-03

gnu-efi - 3.0.18-r1
Ebuild name:

sys-boot/gnu-efi-3.0.18-r1

Description

Library for build EFI Applications

Added to portage

2024-05-03

joblib - 1.4.2
Ebuild name:

dev-python/joblib-1.4.2

Description

Tools to provide lightweight pipelining in Python

Added to portage

2024-05-03

libvirt - 10.3.0
Ebuild name:

app-emulation/libvirt-10.3.0

Description

C toolkit to manipulate virtual machines

Added to portage

2024-05-03

libvirt-python - 10.3.0
Ebuild name:

dev-python/libvirt-python-10.3.0

Description

libvirt Python bindings

Added to portage

2024-05-03

mkdocs-static-i18n - 1.2.3
Ebuild name:

dev-python/mkdocs-static-i18n-1.2.3

Description

MkDocs i18n plugin using static translation markdown files

Added to portage

2024-05-03

pyxDamerauLevenshtein - 1.8.0
Ebuild name:

dev-python/pyxDamerauLevenshtein-1.8.0

Description

Implements the Damerau-Levenshtein edit distance algorithm f

Added to portage

2024-05-03

queue - 0.2
Ebuild name:

app-emacs/queue-0.2

Description

Queue data structure

Added to portage

2024-05-03

quilt-el - 0.66
Ebuild name:

app-emacs/quilt-el-0.66

Description

Quilt mode for Emacs

Added to portage

2024-05-03

qwerty - 1.1
Ebuild name:

app-emacs/qwerty-1.1

Description

Switch between QWERTY and DVORAK without changing the console keymap

Added to portage

2024-05-03

rapidfuzz - 3.9.0
Ebuild name:

dev-python/rapidfuzz-3.9.0

Description

Rapid fuzzy string matching in Python using various string metrics

Added to portage

2024-05-03

rmagick - 6.0.0
Ebuild name:

dev-ruby/rmagick-6.0.0

Description

An interface between Ruby and the ImageMagick(TM) image processing library

Added to portage

2024-05-03

stripe - 9.5.0
Ebuild name:

dev-python/stripe-9.5.0

Description

Stripe python bindings

Added to portage

2024-05-03

tqdm - 4.66.4
Ebuild name:

dev-python/tqdm-4.66.4

Description

Add a progress meter to your loops in a second

Added to portage

2024-05-03

tree-sitter - 0.21.3
Ebuild name:

dev-python/tree-sitter-0.21.3

Description

Python bindings to the Tree-sitter parsing library

Added to portage

2024-05-03

vanilla-kernel - 5.10.216
Ebuild name:

sys-kernel/vanilla-kernel-5.10.216

Description

Linux kernel built from vanilla upstream sources

Added to portage

2024-05-03

vanilla-kernel - 5.15.158
Ebuild name:

sys-kernel/vanilla-kernel-5.15.158

Description

Linux kernel built from vanilla upstream sources

Added to portage

2024-05-03

vanilla-kernel - 6.1.90
Ebuild name:

sys-kernel/vanilla-kernel-6.1.90

Description

Linux kernel built from vanilla upstream sources

Added to portage

2024-05-03

vanilla-kernel - 6.6.30
Ebuild name:

sys-kernel/vanilla-kernel-6.6.30

Description

Linux kernel built from vanilla upstream sources

Added to portage

2024-05-03

vanilla-kernel - 6.8.9
Ebuild name:

sys-kernel/vanilla-kernel-6.8.9

Description

Linux kernel built from vanilla upstream sources

Added to portage

2024-05-03

wine-proton - 9.0.1
Ebuild name:

app-emulation/wine-proton-9.0.1

Description

Valve Software's fork of Wine

Added to portage

2024-05-03

2024-05-02
B-Hooks-EndOfScope - 0.280.0
Ebuild name:

dev-perl/B-Hooks-EndOfScope-0.280.0

Description

Execute code after a scope finished compilation

Added to portage

2024-05-02

CGI - 4.640.0
Ebuild name:

dev-perl/CGI-4.640.0

Description

Simple Common Gateway Interface Class

Added to portage

2024-05-02

CPAN-Meta-Requirements - 2.143.0
Ebuild name:

dev-perl/CPAN-Meta-Requirements-2.143.0

Description

Set of version requirements for a CPAN dist

Added to portage

2024-05-02

CPAN-Requirements-Dynamic - 0.1.0
Ebuild name:

dev-perl/CPAN-Requirements-Dynamic-0.1.0

Description

Dynamic prerequisites in meta files

Added to portage

2024-05-02

Cairo - 1.109.0-r1
Ebuild name:

dev-perl/Cairo-1.109.0-r1

Description

Perl interface to the cairo library

Added to portage

2024-05-02

Clipboard - 0.290.0
Ebuild name:

dev-perl/Clipboard-0.290.0

Description

Copy and paste with any OS

Added to portage

2024-05-02

Compress-Raw-Zlib - 2.212.0
Ebuild name:

perl-core/Compress-Raw-Zlib-2.212.0

Description

Low-Level Interface to zlib compression library

Added to portage

2024-05-02

DBD-mysql - 5.5.0
Ebuild name:

dev-perl/DBD-mysql-5.5.0

Description

MySQL driver for the Perl5 Database Interface (DBI)

Added to portage

2024-05-02

Date-Manip - 6.950.0
Ebuild name:

dev-perl/Date-Manip-6.950.0

Description

Perl date manipulation routines

Added to portage

2024-05-02

DateTime - 1.650.0
Ebuild name:

dev-perl/DateTime-1.650.0

Description

Date and time object

Added to portage

2024-05-02

Devel-CheckOS - 2.0.0
Ebuild name:

dev-perl/Devel-CheckOS-2.0.0

Description

Check what OS we're running on

Added to portage

2024-05-02

Devel-Cover - 1.420.0
Ebuild name:

dev-perl/Devel-Cover-1.420.0

Description

Code coverage metrics for Perl

Added to portage

2024-05-02

Expect - 1.380.0
Ebuild name:

dev-perl/Expect-1.380.0

Description

Expect for Perl

Added to portage

2024-05-02

ExtUtils-CChecker - 0.120.0
Ebuild name:

dev-perl/ExtUtils-CChecker-0.120.0

Description

Configure-time utilities for using C headers

Added to portage

2024-05-02

HTML-Parser - 3.820.0
Ebuild name:

dev-perl/HTML-Parser-3.820.0

Description

Parse HTML documents

Added to portage

2024-05-02

HTML-Tagset - 3.240.0
Ebuild name:

dev-perl/HTML-Tagset-3.240.0

Description

Data tables useful in parsing HTML

Added to portage

2024-05-02

HTTP-Body - 1.230.0
Ebuild name:

dev-perl/HTTP-Body-1.230.0

Description

HTTP Body Parser

Added to portage

2024-05-02

HTTP-Cookies - 6.110.0
Ebuild name:

dev-perl/HTTP-Cookies-6.110.0

Description

Storage of cookies

Added to portage

2024-05-02

IO-Tty - 1.200.0
Ebuild name:

dev-perl/IO-Tty-1.200.0

Description

IO and IO modules for Perl

Added to portage

2024-05-02

LWP-Protocol-https - 6.140.0
Ebuild name:

dev-perl/LWP-Protocol-https-6.140.0

Description

Provide https support for LWP

Added to portage

2024-05-02

Locale-Codes - 3.780.0
Ebuild name:

dev-perl/Locale-Codes-3.780.0

Description

Distribution of Perl modules to handle locale codes

Added to portage

2024-05-02

Module-Build-Tiny - 0.48.0
Ebuild name:

dev-perl/Module-Build-Tiny-0.48.0

Description

Tiny replacement for Module

Added to portage

2024-05-02

Mojolicious - 9.360.0
Ebuild name:

dev-perl/Mojolicious-9.360.0

Description

Real-time web framework

Added to portage

2024-05-02

POSIX-strftime-Compiler - 0.460.0
Ebuild name:

dev-perl/POSIX-strftime-Compiler-0.460.0

Description

GNU C library compatible strftime for loggers and servers

Added to portage

2024-05-02

SDL - 2.548.0-r3
Ebuild name:

dev-perl/SDL-2.548.0-r3

Description

Simple DirectMedia Layer (SDL) bindings for perl

Added to portage

2024-05-02

Scalar-Readonly - 0.30.0
Ebuild name:

dev-perl/Scalar-Readonly-0.30.0

Description

Functions for controlling whether any scalar variable is read-only

Added to portage

2024-05-02

Statistics-Descriptive - 3.80.100
Ebuild name:

dev-perl/Statistics-Descriptive-3.80.100

Description

Module of basic descriptive statistical functions

Added to portage

2024-05-02

Sub-Override - 0.100.0
Ebuild name:

dev-perl/Sub-Override-0.100.0

Description

Perl extension for easily overriding subroutines

Added to portage

2024-05-02

Test-Expander - 2.5.0-r2
Ebuild name:

dev-perl/Test-Expander-2.5.0-r2

Description

Expansion of test functionality that is frequently used while testi

Added to portage

2024-05-02

Test-Files - 0.260.0-r1
Ebuild name:

dev-perl/Test-Files-0.260.0-r1

Description

A Test based module to ease testing with files and dirs

Added to portage

2024-05-02

Test-Inter - 1.110.0
Ebuild name:

dev-perl/Test-Inter-1.110.0

Description

Framework for more readable interactive test scripts

Added to portage

2024-05-02

Test-Kit - 2.160.0
Ebuild name:

dev-perl/Test-Kit-2.160.0

Description

Build custom test packages with only the features you want

Added to portage

2024-05-02

Test-Manifest - 2.24.0
Ebuild name:

dev-perl/Test-Manifest-2.24.0

Description

Interact with a t/test_manifest file

Added to portage

2024-05-02

Test-Warnings - 0.33.0
Ebuild name:

dev-perl/Test-Warnings-0.33.0

Description

Added to portage

2024-05-02

Test2-Tools-Explain - 0.20.0
Ebuild name:

dev-perl/Test2-Tools-Explain-0.20.0

Description

Explain tools for Perl's Test2 framework

Added to portage

2024-05-02

Time-Out - 0.240.0
Ebuild name:

dev-perl/Time-Out-0.240.0

Description

Easily timeout long running operations

Added to portage

2024-05-02

URI - 5.280.0
Ebuild name:

dev-perl/URI-5.280.0

Description

Uniform Resource Identifiers (absolute and relative)

Added to portage

2024-05-02

UUID - 0.340.0
Ebuild name:

dev-perl/UUID-0.340.0

Description

Perl extension for using UUID interfaces as defined in e2fsprogs

Added to portage

2024-05-02

Unix-Mknod - 0.50.0
Ebuild name:

dev-perl/Unix-Mknod-0.50.0

Description

Perl extension for mknod, major, minor, and makedev

Added to portage

2024-05-02

Variable-Magic - 0.640.0
Ebuild name:

dev-perl/Variable-Magic-0.640.0

Description

Associate user-defined magic to variables from Perl

Added to portage

2024-05-02

awscli - 1.32.96
Ebuild name:

app-admin/awscli-1.32.96

Description

Universal Command Line Environment for AWS

Added to portage

2024-05-02

azure-nvme-utils - 0.1.2_p20240502
Ebuild name:

sys-apps/azure-nvme-utils-0.1.2_p20240502

Description

Utility to help identify Azure NVMe devices

Added to portage

2024-05-02

boto3 - 1.34.96
Ebuild name:

dev-python/boto3-1.34.96

Description

The AWS SDK for Python

Added to portage

2024-05-02

botocore - 1.34.96
Ebuild name:

dev-python/botocore-1.34.96

Description

Low-level, data-driven core of boto 3

Added to portage

2024-05-02

csvkit - 2.0.0
Ebuild name:

dev-python/csvkit-2.0.0

Description

A suite of utilities for converting to and working with CSV

Added to portage

2024-05-02

dcfldd - 1.9.1-r1
Ebuild name:

sys-apps/dcfldd-1.9.1-r1

Description

enhanced dd with features for forensics and security

Added to portage

2024-05-02

distrobox - 1.7.2.0
Ebuild name:

app-containers/distrobox-1.7.2.0

Description

Use any Linux distribution inside your terminal (powered by docker

Added to portage

2024-05-02

emacs-updater - 1.18
Ebuild name:

app-admin/emacs-updater-1.18

Description

Rebuild Emacs packages

Added to portage

2024-05-02

exo - 1.77.2
Ebuild name:

app-admin/exo-1.77.2

Description

Command-line tool for everything at Exoscale compute, storage, dns

Added to portage

2024-05-02

ffmpeg - 6.1.1-r6
Ebuild name:

media-video/ffmpeg-6.1.1-r6

Description

Complete solution to record/convert/stream audio and video. Includes li

Added to portage

2024-05-02

free42 - 3.1.8
Ebuild name:

app-emulation/free42-3.1.8

Description

An HP-42S Calculator Simulator

Added to portage

2024-05-02

fzf - 0.51.0
Ebuild name:

app-shells/fzf-0.51.0

Description

General-purpose command-line fuzzy finder, written in Golang

Added to portage

2024-05-02

gcc - 11.4.1_p20240501
Ebuild name:

sys-devel/gcc-11.4.1_p20240501

Description

The GNU Compiler Collection

Added to portage

2024-05-02

genkernel - 4.3.14
Ebuild name:

sys-kernel/genkernel-4.3.14

Description

Gentoo automatic kernel building scripts

Added to portage

2024-05-02

gentoo-sources - 5.10.216
Ebuild name:

sys-kernel/gentoo-sources-5.10.216

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2024-05-02

gentoo-sources - 5.15.158
Ebuild name:

sys-kernel/gentoo-sources-5.15.158

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2024-05-02

gentoo-sources - 6.1.90
Ebuild name:

sys-kernel/gentoo-sources-6.1.90

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2024-05-02

gentoo-sources - 6.6.30
Ebuild name:

sys-kernel/gentoo-sources-6.6.30

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2024-05-02

gentoo-sources - 6.8.9
Ebuild name:

sys-kernel/gentoo-sources-6.8.9

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2024-05-02

gnubg - 1.08.003
Ebuild name:

games-board/gnubg-1.08.003

Description

GNU BackGammon

Added to portage

2024-05-02

go-tools - 0.20.0
Ebuild name:

dev-go/go-tools-0.20.0

Description

Tools that support the Go programming language (godoc, etc.)

Added to portage

2024-05-02

guile-git - 0.7.0
Ebuild name:

dev-scheme/guile-git-0.7.0

Description

Guile bindings of git

Added to portage

2024-05-02

gzdoom - 4.12.2
Ebuild name:

games-fps/gzdoom-4.12.2

Description

A modder-friendly OpenGL source port based on the DOOM engine

Added to portage

2024-05-02

harfbuzz - 8.4.0
Ebuild name:

media-libs/harfbuzz-8.4.0

Description

An OpenType text shaping engine

Added to portage

2024-05-02

hitimes - 3.0.0
Ebuild name:

dev-ruby/hitimes-3.0.0

Description

A fast, high resolution timer library

Added to portage

2024-05-02

icu - 75.1
Ebuild name:

dev-libs/icu-75.1

Description

International Components for Unicode

Added to portage

2024-05-02

icu-layoutex - 75.1
Ebuild name:

dev-libs/icu-layoutex-75.1

Description

External layout part of International Components for Unicode

Added to portage

2024-05-02

kismet - 2023.07.1-r1
Ebuild name:

net-wireless/kismet-2023.07.1-r1

Description

IEEE 802.11 wireless LAN sniffer

Added to portage

2024-05-02

libsdl2 - 2.30.3
Ebuild name:

media-libs/libsdl2-2.30.3

Description

Simple Direct Media Layer

Added to portage

2024-05-02

linode-cli - 5.49.0
Ebuild name:

app-admin/linode-cli-5.49.0

Description

Official command-line interface for interacting with the Linode API

Added to portage

2024-05-02

lvm2 - 2.03.22-r5
Ebuild name:

sys-fs/lvm2-2.03.22-r5

Description

User-land utilities for LVM2 (device-mapper) software

Added to portage

2024-05-02

mailx - 8.1.2.20220412
Ebuild name:

mail-client/mailx-8.1.2.20220412

Description

The mail program, which is used to send mail via shell scripts

Added to portage

2024-05-02

marshmallow - 3.21.2
Ebuild name:

dev-python/marshmallow-3.21.2

Description

A library for converting to and from native Python datatypes

Added to portage

2024-05-02

movit - 1.7.1
Ebuild name:

media-video/movit-1.7.1

Description

High-performance, high-quality video filters for the GPU

Added to portage

2024-05-02

notion - 4.0.2_p20220613-r1
Ebuild name:

x11-wm/notion-4.0.2_p20220613-r1

Description

Notion is a tiling, tabbed window manager for the X window system

Added to portage

2024-05-02

openblas - 0.3.26-r1
Ebuild name:

sci-libs/openblas-0.3.26-r1

Description

Optimized BLAS library based on GotoBLAS2

Added to portage

2024-05-02

paste - 3.10.1
Ebuild name:

dev-python/paste-3.10.1

Description

Tools for using a Web Server Gateway Interface stack

Added to portage

2024-05-02

pecl-event - 3.1.3
Ebuild name:

dev-php/pecl-event-3.1.3

Description

PHP wrapper for libevent2

Added to portage

2024-05-02

perl-Compress-Raw-Zlib - 2.212.0
Ebuild name:

virtual/perl-Compress-Raw-Zlib-2.212.0

Description

Virtual for

Added to portage

2024-05-02

plotly - 5.22.0
Ebuild name:

dev-python/plotly-5.22.0

Description

Browser-based graphing library for Python

Added to portage

2024-05-02

plus42 - 1.1.10
Ebuild name:

app-emulation/plus42-1.1.10

Description

An Enhanced HP-42S Calculator Simulator

Added to portage

2024-05-02

pyzmq - 26.0.3
Ebuild name:

dev-python/pyzmq-26.0.3

Description

Lightweight and super-fast messaging library built on top of the ZeroMQ lib

Added to portage

2024-05-02

qsynth - 0.9.91
Ebuild name:

media-sound/qsynth-0.9.91

Description

Qt application to control FluidSynth

Added to portage

2024-05-02

qtbase - 6.7.0-r2
Ebuild name:

dev-qt/qtbase-6.7.0-r2

Description

Cross-platform application development framework

Added to portage

2024-05-02

quotatool - 1.6.4
Ebuild name:

sys-fs/quotatool-1.6.4

Description

Command-line utility for filesystem quotas

Added to portage

2024-05-02

racket-mode - 1_p20231214
Ebuild name:

app-emacs/racket-mode-1_p20231214

Description

Emacs modes for Racket edit, REPL, check-syntax, debug, profile,

Added to portage

2024-05-02

racket-mode - 1_p20240130
Ebuild name:

app-emacs/racket-mode-1_p20240130

Description

Emacs modes for Racket edit, REPL, check-syntax, debug, profile,

Added to portage

2024-05-02

racket-mode - 1_p20240130
Ebuild name:

app-emacs/racket-mode-1_p20240130

Description

Emacs modes for Racket edit, REPL, check-syntax, debug, profile,

Added to portage

2024-05-02

racket-mode - 9999
Ebuild name:

app-emacs/racket-mode-9999

Description

Emacs modes for Racket edit, REPL, check-syntax, debug, profile, and mor

Added to portage

2024-05-02

referencing - 0.35.1
Ebuild name:

dev-python/referencing-0.35.1

Description

Cross-specification JSON referencing (JSON Schema, OpenAPI...)

Added to portage

2024-05-02

request_store - 1.7.0
Ebuild name:

dev-ruby/request_store-1.7.0

Description

Per-request global storage for Rack

Added to portage

2024-05-02

rq - 1.16.2
Ebuild name:

dev-python/rq-1.16.2

Description

Simple, lightweight library for creating and processing background jobs

Added to portage

2024-05-02

simde - 0.8.2
Ebuild name:

dev-libs/simde-0.8.2

Description

Header-only library providing implementations of SIMD instruction sets

Added to portage

2024-05-02

systemctl-tui - 0.3.4
Ebuild name:

sys-apps/systemctl-tui-0.3.4

Description

A simple TUI for interacting with systemd services and their logs

Added to portage

2024-05-02

testfixtures - 8.2.0
Ebuild name:

dev-python/testfixtures-8.2.0

Description

A collection of helpers and mock objects for unit tests and doc tests

Added to portage

2024-05-02

tiff - 4.6.0-r1
Ebuild name:

media-libs/tiff-4.6.0-r1

Description

Tag Image File Format (TIFF) library

Added to portage

2024-05-02

util-linux - 2.39.4
Ebuild name:

sys-apps/util-linux-2.39.4

Description

Various useful Linux utilities

Added to portage

2024-05-02

util-linux - 2.40.1_rc1
Ebuild name:

sys-apps/util-linux-2.40.1_rc1

Description

Various useful Linux utilities

Added to portage

2024-05-02

vanilla-sources - 4.19.313
Ebuild name:

sys-kernel/vanilla-sources-4.19.313

Description

Full sources for the Linux kernel

Added to portage

2024-05-02

vanilla-sources - 5.10.216
Ebuild name:

sys-kernel/vanilla-sources-5.10.216

Description

Full sources for the Linux kernel

Added to portage

2024-05-02

vanilla-sources - 5.15.158
Ebuild name:

sys-kernel/vanilla-sources-5.15.158

Description

Full sources for the Linux kernel

Added to portage

2024-05-02

vanilla-sources - 5.4.275
Ebuild name:

sys-kernel/vanilla-sources-5.4.275

Description

Full sources for the Linux kernel

Added to portage

2024-05-02

vanilla-sources - 6.1.90
Ebuild name:

sys-kernel/vanilla-sources-6.1.90

Description

Full sources for the Linux kernel

Added to portage

2024-05-02

vanilla-sources - 6.6.30
Ebuild name:

sys-kernel/vanilla-sources-6.6.30

Description

Full sources for the Linux kernel

Added to portage

2024-05-02

vanilla-sources - 6.8.9
Ebuild name:

sys-kernel/vanilla-sources-6.8.9

Description

Full sources for the Linux kernel

Added to portage

2024-05-02

virtualbox-kvm - 7.0.14_pre20240502
Ebuild name:

app-emulation/virtualbox-kvm-7.0.14_pre20240502

Description

Family of powerful x86 virtualization products for

Added to portage

2024-05-02

wluma - 4.4.0-r1
Ebuild name:

sys-power/wluma-4.4.0-r1

Description

Automatic brightness adjustment based on screen contents and ALS

Added to portage

2024-05-02

rdf newsfeed | rss newsfeed | Atom newsfeed
- Powered by LeopardCMS - Running on Gentoo -
Copyright 2004-2020 Sascha Nitsch Unternehmensberatung GmbH
Valid XHTML1.1 : Valid CSS : buttonmaker
- Level Triple-A Conformance to Web Content Accessibility Guidelines 1.0 -
- Copyright and legal notices -
Time to create this page: 53.2 ms