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:

72932

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: Tutorials per portage category->app-editors->nano

Configuring the nano text editor


nano is a small, free and friendly editor which aims to replace Pico, the default editor included in the non-free Pine package. Rather than just copying Pico's look and feel, nano also implements some missing (or disabled by default) features in Pico, such as "search and replace" and "goto line number".

Lets go ahead and configure it.

($:~)=> nano -w ~/.nanorc
# Use auto-indentation  
set autoindent

# Backup files to filename~
set backup

# Use cut to end of line with ^K by default
set cut

# Enable ~/.nano_history for saving and reading search/replace strings.
# set historylog

# Don't convert files from DOS/Mac format
set noconvert

# Don't follow symlinks when writing files
# set nofollow

# Don't display the help lists at the bottom of the screen
# set nohelp

# Don't wrap text at all
set nowrap

# Use smooth scrolling as the default
set smooth

# Use this spelling checker instead of the internal one. This option
# does not properly have a default value.
set speller "aspell -c"

# Allow nano to be suspended with ^Z
# set suspend

# Use this tab size instead of the default; it must be greater than 0
# set tabsize 8

# Save automatically on exit, don't prompt
# set tempfile

# Enable ~/.nano_history for saving and reading search/replace strings.
# set historylog

# Disallow file modification, why would you want this in an rc file? ;)
# set view

#Color Syntax Highlighting
syntax "c-file" "\.(c|h)$"
color red "\<[A-Z_]{2,}\>"
color green "\<(float|char|int|void|static|const|struct)\>"
color brightyellow "\<(if|while|do|else|case|switch)\>"
color brightcyan "^#( )*(define|include|ifn?def|endif|elif|else|if)"
color brightyellow "<[^= ]*>" ""(.|[^"])*""
color brightyellow start=""(\\.|[^\"])*\\( | )*$" end="^(\\.|[^\"])*""
color brightblue "//.*"
color brightblue start="/\*" end="\*/"

syntax "HTML" "\.html$"
color blue start="<" end=">"
color red "&[^; ]*;"

syntax "TeX" "\.tex$"
color green "\\.|\\[A-Za-z]*"
color magenta "[{}]"
color blue "%.*"

syntax "mutt"
color green "^>.*"

syntax "php" ".*/*.php$"
color brightwhite "\{|\}|\."
color red "('[^']*')"
color red "\"[^\"]*\""
color brightblue "(\$([[:alpha:]_]|->)*)"
color brightgreen "((\$(([[:alpha:]_0-9])+\->)+)[[:alpha:]_0-9]+\()"
color yellow " (if|else if|else|return|case|break)"
color yellow "\|\||\?|!|\||&&|=|;|\(|\)"
color red "false|true"
color brightwhite "[[:space:]]+debug|[[:space:]]+echo|\$this\->debug"
color cyan "//.*"
color cyan start="/\*" end="\*/"

syntax "groff" "\.ms$" "\.mm$" "\.me$" "\.tmac$" "^tmac." ".rof"
color cyan "^\.ds [^ ]*"
color cyan "^\.nr [^ ]*"
color brightmagenta "\\."
color brightmagenta "\\f."
color brightmagenta "\\f\(.."
color brightmagenta "\\s(\+|\-)?[0-9]"
color cyan "(\\|\\\\)n."
color cyan "(\\|\\\\)n\(.."
color cyan start="(\\|\\\\)n\[" end="]"
color brightgreen "^\. *[^ ]*"
color yellow "^\.\\\".*$"
color green "(\\|\\\\)\*."
color green "(\\|\\\\)\*\(.."
color green start="(\\|\\\\)\*\[" end="]"
color brightred "\\\(.."
color brightred start="\\\[" end="]"
color brightcyan "\\\\\$[1-9]"

syntax "perl" "\.p[lm]$"
color red "\<(accept|alarm|atan2|bin(d|mode)|c(aller|h(dir|mod|op|own|root)|lose(dir)?|onnect|os|rypt)|d(bm(close|open)|efined|elete|ie|o
|ump)|e(ach|of|val|x(ec|ists|it|p))|f(cntl|ileno|lock|ork)|get(c|login|peername|pgrp|ppid|priority|pwnam|(host|net|proto|serv)byname|pwuid
|grgid|(host|net)byaddr|protobynumber|servbyport)|([gs]et|end)(pw|gr|host|net|proto|serv)ent|getsock(name|opt)|gmtime|goto|grep|hex|index|
int|ioctl|join|keys|kill|last|length|link|listen|local(time)?|log|lstat|m|mkdir|msg(ctl|get|snd|rcv)|next|oct|open(dir)?|ord|pack|pipe|pop
|printf?|push|q|qq|qx|rand|re(ad(dir|link)?|cv|do|name|quire|set|turn|verse|winddir)|rindex|rmdir|s|scalar|seek|seekdir|se(lect|mctl|mget|
mop|nd|tpgrp|tpriority|tsockopt)|shift|shm(ctl|get|read|write)|shutdown|sin|sleep|socket(pair)?|sort|spli(ce|t)|sprintf|sqrt|srand|stat|st
udy|substr|symlink|sys(call|read|tem|write)|tell(dir)?|time|tr|y|truncate|umask|un(def|link|pack|shift)|utime|values|vec|wait(pid)?|wantarray|warn|write)\>"
color magenta "\<(continue|else|elsif|do|for|foreach|if|unless|until|while|eq|ne|lt|gt|le|ge|cmp|x|my|sub|use|package|can|isa)\>"
color cyan start="[$@%]" end="( |\\W|-)"
color yellow "".*"|qq\|.*\|"
color white "[sm]/.*/"
color white start="(^use| = new)" end=";"
color green "#.*"
color yellow start="<< 'STOP'" end="STOP"

syntax "Java source" "\.java$"
color green "\<(boolean|byte|char|double|float|int|long|new|short|this|transient|void)\>"
color red "\<(break|case|catch|continue|default|do|else|finally|for|if|return|switch|throw|try|while)\>"
color cyan "\<(abstract|class|extends|final|implements|import|instanceof|interface|native|package|private|protected|public|static|strictfp|super|synchronized|throws|volatile)\>"
color red ""[^"]*""
color yellow "<(true|false|null)>"
color blue "//.*"
color blue start="/\*" end="\*/"
color brightblue start="/\*\*" end="\*/"
color brightgreen,brightgreen "[ ]+$"

syntax "nanorc" "[\.]*nanorc$"
color white "^ *(set|unset).*$"
color cyan "^ *(set|unset) (autoindent|backup|const|cut|fill|keypad|multibuffer|noconvert|nofollow|nohelp|nowrap|operatingdir|preserve|quotestr|regexp|smooth|speller|suspend|tabsize|tempfile|historylog|view)"
color brightwhite "^ *syntax [^ ]*"
color brightblue "^ *set\>" "^ *unset\>" "^ *syntax\>"
color white "^ *color\>.*"
color yellow "^ *color (bright)?(white|black|red|blue|green|yellow|magenta|cyan)\>"
color magenta "^ *color\>"
color green "^#.*$"

syntax "bash" "\.sh$"
color brightblack "#.*"
color brightyellow "\(" "\)" "\{" "\}"
color red "\<[A-Z_]{2,}\>"
color red "[\$\*\'\`\|\=]"
color brightblue "\[.*\]"
color green "\<-e\>" "\<-d\>" "\<-f\>" "\<-r\>" "\<-g\>" "\<-u\>" "\<-u\>" "\<-w\>" "\<-x\>" "\<-L\>"
color green "\<-eq\>" "\<-ne\>" "\<-gt\>" "\<-lt\>" "\<-ge\>" "\<-le\>" "\<-s\>" "\<-n\>" "\<-z\>"
color blue "\" "\" "\" "\" "\" "\" "\" "\" "\"
color blue "\" "\" "\" "\" "\"
color brightwhite "\.*"


And thats it. You may want to read the /usr/share/doc/nano/nanorc.sample file for any other options you may want or change the color highlighting a bit.
rate this article:
current rating: average rating: 2.2 (8 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
2025-03-09
cdogs-sdl - 2.3.0
Ebuild name:

games-arcade/cdogs-sdl-2.3.0

Description

Classic overhead run-and-gun game

Added to portage

2025-03-09

dropbox - 219.4.4463
Ebuild name:

net-misc/dropbox-219.4.4463

Description

Dropbox daemon (pretends to be GUI-less)

Added to portage

2025-03-09

evolvotron - 0.8.2
Ebuild name:

x11-misc/evolvotron-0.8.2

Description

Generative art image evolver

Added to portage

2025-03-09

faudio - 25.03
Ebuild name:

app-emulation/faudio-25.03

Description

Accuracy-focused XAudio reimplementation for open platforms

Added to portage

2025-03-09

ghdl - 5.0.1
Ebuild name:

sci-electronics/ghdl-5.0.1

Description

Open-source analyzer, compiler, and simulator for VHDL 2008/93/87

Added to portage

2025-03-09

intel-compute-runtime - 25.05.32567.18
Ebuild name:

dev-libs/intel-compute-runtime-25.05.32567.18

Description

Intel Graphics Compute Runtime for oneAPI Level Zero

Added to portage

2025-03-09

intel-graphics-compiler - 2.9.0
Ebuild name:

dev-util/intel-graphics-compiler-2.9.0

Description

LLVM-based OpenCL compiler for OpenCL targetting Intel Gen g

Added to portage

2025-03-09

intel-metrics-discovery - 1.14.180
Ebuild name:

dev-libs/intel-metrics-discovery-1.14.180

Description

A user mode library that provides access to GPU performan

Added to portage

2025-03-09

intel-metrics-library - 1.0.196
Ebuild name:

dev-libs/intel-metrics-library-1.0.196

Description

User mode driver helper library that provides access to GPU

Added to portage

2025-03-09

intel-vc-intrinsics - 0.22.1
Ebuild name:

dev-libs/intel-vc-intrinsics-0.22.1

Description

A set of new intrinsics on top of core LLVM IR instructions

Added to portage

2025-03-09

ksmbd-tools - 3.5.3
Ebuild name:

net-fs/ksmbd-tools-3.5.3

Description

cifsd/ksmbd kernel server userspace utilities

Added to portage

2025-03-09

kuickshow - 0.11.0
Ebuild name:

media-gfx/kuickshow-0.11.0

Description

Image viewer based on KDE Frameworks

Added to portage

2025-03-09

level-zero - 1.21.1
Ebuild name:

dev-libs/level-zero-1.21.1

Description

oneAPI Level Zero headers, loader and validation layer

Added to portage

2025-03-09

luasystem - 0.5.0
Ebuild name:

dev-lua/luasystem-0.5.0

Description

Platform independent system calls for Lua

Added to portage

2025-03-09

md6sum - 1.0-r3
Ebuild name:

app-crypt/md6sum-1.0-r3

Description

A C implementation of MD6

Added to portage

2025-03-09

mdbook - 0.4.46
Ebuild name:

app-text/mdbook-0.4.46

Description

Create a book from markdown files

Added to portage

2025-03-09

networkmanager-strongswan - 1.6.1
Ebuild name:

net-vpn/networkmanager-strongswan-1.6.1

Description

NetworkManager StrongSwan plugin

Added to portage

2025-03-09

nvc - 1.15.2
Ebuild name:

sci-electronics/nvc-1.15.2

Description

NVC is a VHDL compiler and simulator

Added to portage

2025-03-09

oorexx - 5.1.0_beta12932
Ebuild name:

dev-lang/oorexx-5.1.0_beta12932

Description

Open source implementation of Object Rexx

Added to portage

2025-03-09

rspamd - 3.11.1
Ebuild name:

mail-filter/rspamd-3.11.1

Description

Rapid spam filtering system

Added to portage

2025-03-09

selinux-accountsd - 2.20250213-r1
Ebuild name:

sec-policy/selinux-accountsd-2.20250213-r1

Description

SELinux policy for accountsd

Added to portage

2025-03-09

selinux-acct - 2.20250213-r1
Ebuild name:

sec-policy/selinux-acct-2.20250213-r1

Description

SELinux policy for acct

Added to portage

2025-03-09

selinux-afs - 2.20250213-r1
Ebuild name:

sec-policy/selinux-afs-2.20250213-r1

Description

SELinux policy for afs

Added to portage

2025-03-09

selinux-aide - 2.20250213-r1
Ebuild name:

sec-policy/selinux-aide-2.20250213-r1

Description

SELinux policy for aide

Added to portage

2025-03-09

selinux-alsa - 2.20250213-r1
Ebuild name:

sec-policy/selinux-alsa-2.20250213-r1

Description

SELinux policy for alsa

Added to portage

2025-03-09

selinux-amanda - 2.20250213-r1
Ebuild name:

sec-policy/selinux-amanda-2.20250213-r1

Description

SELinux policy for amanda

Added to portage

2025-03-09

selinux-amavis - 2.20250213-r1
Ebuild name:

sec-policy/selinux-amavis-2.20250213-r1

Description

SELinux policy for amavis

Added to portage

2025-03-09

selinux-android - 2.20250213-r1
Ebuild name:

sec-policy/selinux-android-2.20250213-r1

Description

SELinux policy for android

Added to portage

2025-03-09

selinux-apache - 2.20250213-r1
Ebuild name:

sec-policy/selinux-apache-2.20250213-r1

Description

SELinux policy for apache

Added to portage

2025-03-09

selinux-apcupsd - 2.20250213-r1
Ebuild name:

sec-policy/selinux-apcupsd-2.20250213-r1

Description

SELinux policy for apcupsd

Added to portage

2025-03-09

stress-ng - 0.18.11
Ebuild name:

app-benchmarks/stress-ng-0.18.11

Description

Stress test for a computer system with various selectable ways

Added to portage

2025-03-09

tetzle - 3.0.3
Ebuild name:

games-board/tetzle-3.0.3

Description

Jigsaw puzzle game that uses tetrominoes for the pieces

Added to portage

2025-03-09

ubuntu-keyring - 2021.03.26
Ebuild name:

app-crypt/ubuntu-keyring-2021.03.26

Description

GnuPG archive keys of the Ubuntu archive

Added to portage

2025-03-09

ubuntu-keyring - 2023.11.28.1
Ebuild name:

app-crypt/ubuntu-keyring-2023.11.28.1

Description

GnuPG archive keys of the Ubuntu archive

Added to portage

2025-03-09

veracrypt - 1.25.9-r1
Ebuild name:

app-crypt/veracrypt-1.25.9-r1

Description

Disk encryption with strong security based on TrueCrypt

Added to portage

2025-03-09

veracrypt - 1.26.15
Ebuild name:

app-crypt/veracrypt-1.26.15

Description

Disk encryption with strong security based on TrueCrypt

Added to portage

2025-03-09

veracrypt - 1.26.7
Ebuild name:

app-crypt/veracrypt-1.26.7

Description

Disk encryption with strong security based on TrueCrypt

Added to portage

2025-03-09

wine-staging - 10.3
Ebuild name:

app-emulation/wine-staging-10.3

Description

Free implementation of Windows(tm) on Unix, with Wine-Staging patch

Added to portage

2025-03-09

xca - 2.8.0
Ebuild name:

app-crypt/xca-2.8.0

Description

A GUI to OpenSSL, RSA public keys, certificates, signing requests etc

Added to portage

2025-03-09

xor-analyze - 0.5-r1
Ebuild name:

app-crypt/xor-analyze-0.5-r1

Description

Program for cryptanalyzing xor 'encryption' with variable key length

Added to portage

2025-03-09

yubihsm-connector - 3.0.4
Ebuild name:

app-crypt/yubihsm-connector-3.0.4

Description

Server to expose YubiHSM 2 to network

Added to portage

2025-03-09

yubihsm-shell - 2.4.0
Ebuild name:

app-crypt/yubihsm-shell-2.4.0

Description

Components used to interact with the YubiHSM 2

Added to portage

2025-03-09

yubikey-manager - 5.5.1
Ebuild name:

app-crypt/yubikey-manager-5.5.1

Description

Python library and command line tool for configuring a YubiKey

Added to portage

2025-03-09

yubikey-manager-qt - 1.2.5
Ebuild name:

app-crypt/yubikey-manager-qt-1.2.5

Description

Cross-platform application for configuring any YubiKey over all

Added to portage

2025-03-09

yubioath-flutter-bin - 6.1.0-r3
Ebuild name:

app-crypt/yubioath-flutter-bin-6.1.0-r3

Description

Yubico Authenticator for TOTP

Added to portage

2025-03-09

yubioath-flutter-bin - 6.4.0-r1
Ebuild name:

app-crypt/yubioath-flutter-bin-6.4.0-r1

Description

Yubico Authenticator for TOTP

Added to portage

2025-03-09

yubioath-flutter-bin - 7.0.0
Ebuild name:

app-crypt/yubioath-flutter-bin-7.0.0

Description

Yubico Authenticator for TOTP

Added to portage

2025-03-09

yubioath-flutter-bin - 7.1.0
Ebuild name:

app-crypt/yubioath-flutter-bin-7.1.0

Description

Yubico Authenticator for TOTP

Added to portage

2025-03-09

yubioath-flutter-bin - 7.1.1
Ebuild name:

app-crypt/yubioath-flutter-bin-7.1.1

Description

Yubico Authenticator for TOTP

Added to portage

2025-03-09

zellij - 0.41.2-r1
Ebuild name:

app-misc/zellij-0.41.2-r1

Description

A terminal workspace with batteries included

Added to portage

2025-03-09

2025-03-08
aiounittest - 1.5.0
Ebuild name:

dev-python/aiounittest-1.5.0

Description

Test asyncio code more easily

Added to portage

2025-03-08

anyio - 4.8.0-r1
Ebuild name:

dev-python/anyio-4.8.0-r1

Description

Compatibility layer for multiple asynchronous event loop implementations

Added to portage

2025-03-08

anyioutils - 0.7.1
Ebuild name:

dev-python/anyioutils-0.7.1

Description

Utility classes and functions for AnyIO

Added to portage

2025-03-08

awscli - 1.38.9
Ebuild name:

app-admin/awscli-1.38.9

Description

Universal Command Line Environment for AWS

Added to portage

2025-03-08

azure-core - 1.15.0
Ebuild name:

dev-cpp/azure-core-1.15.0

Description

Azure SDK for C++

Added to portage

2025-03-08

bash - 5.3_beta_p20250307
Ebuild name:

app-shells/bash-5.3_beta_p20250307

Description

The standard GNU Bourne again shell

Added to portage

2025-03-08

boost - 1.87.0-r1
Ebuild name:

dev-libs/boost-1.87.0-r1

Description

Boost Libraries for C++

Added to portage

2025-03-08

boto3 - 1.37.9
Ebuild name:

dev-python/boto3-1.37.9

Description

The AWS SDK for Python

Added to portage

2025-03-08

botocore - 1.37.9
Ebuild name:

dev-python/botocore-1.37.9

Description

Low-level, data-driven core of boto 3

Added to portage

2025-03-08

clion - 2024.3.4
Ebuild name:

dev-util/clion-2024.3.4

Description

A complete toolset for C and C++ development

Added to portage

2025-03-08

cppcheck - 2.17.1
Ebuild name:

dev-util/cppcheck-2.17.1

Description

Static analyzer of C/C++ code

Added to portage

2025-03-08

datasets - 2.21.0-r2
Ebuild name:

sci-libs/datasets-2.21.0-r2

Description

Access and share datasets for Audio, Computer Vision, and NLP tasks

Added to portage

2025-03-08

dist-kernel - 6.1.130
Ebuild name:

virtual/dist-kernel-6.1.130

Description

Virtual to depend on any Distribution Kernel

Added to portage

2025-03-08

dist-kernel - 6.12.18
Ebuild name:

virtual/dist-kernel-6.12.18

Description

Virtual to depend on any Distribution Kernel

Added to portage

2025-03-08

dist-kernel - 6.13.6
Ebuild name:

virtual/dist-kernel-6.13.6

Description

Virtual to depend on any Distribution Kernel

Added to portage

2025-03-08

dist-kernel - 6.6.81
Ebuild name:

virtual/dist-kernel-6.6.81

Description

Virtual to depend on any Distribution Kernel

Added to portage

2025-03-08

duckdb - 1.2.1
Ebuild name:

dev-db/duckdb-1.2.1

Description

high-performance analytical database system

Added to portage

2025-03-08

dunst - 1.12.2
Ebuild name:

x11-misc/dunst-1.12.2

Description

Lightweight replacement for common notification daemons

Added to portage

2025-03-08

element-desktop-bin - 1.11.94
Ebuild name:

net-im/element-desktop-bin-1.11.94

Description

A glossy Matrix collaboration client for desktop (binary package

Added to portage

2025-03-08

elementary-xfce-icon-theme - 0.20.1-r1
Ebuild name:

x11-themes/elementary-xfce-icon-theme-0.20.1-r1

Description

Elementary icons forked from upstream, extended and

Added to portage

2025-03-08

elementary-xfce-icon-theme - 0.21-r1
Ebuild name:

x11-themes/elementary-xfce-icon-theme-0.21-r1

Description

Elementary icons forked from upstream, extended and m

Added to portage

2025-03-08

ethtool - 6.11
Ebuild name:

sys-apps/ethtool-6.11

Description

Utility for examining and tuning ethernet-based network interfaces

Added to portage

2025-03-08

exfatprogs - 1.2.8
Ebuild name:

sys-fs/exfatprogs-1.2.8

Description

Userspace utilities for the exFAT filesystem

Added to portage

2025-03-08

faker - 37.0.0
Ebuild name:

dev-python/faker-37.0.0

Description

A Python package that generates fake data for you

Added to portage

2025-03-08

fcgiwrap - 1.1.0_p20150419
Ebuild name:

www-misc/fcgiwrap-1.1.0_p20150419

Description

Simple FastCGI wrapper for CGI scripts (CGI support for nginx)

Added to portage

2025-03-08

fping - 5.3
Ebuild name:

net-analyzer/fping-5.3

Description

Utility to ping multiple hosts at once

Added to portage

2025-03-08

fsspec - 2025.3.0
Ebuild name:

dev-python/fsspec-2025.3.0

Description

A specification that python filesystems should adhere to

Added to portage

2025-03-08

fuzion - 0.092
Ebuild name:

dev-lang/fuzion-0.092

Description

A language with a focus on simplicity, safety and correctness

Added to portage

2025-03-08

gcc - 13.3.1_p20250307
Ebuild name:

sys-devel/gcc-13.3.1_p20250307

Description

The GNU Compiler Collection

Added to portage

2025-03-08

gentoo-kernel - 6.1.130
Ebuild name:

sys-kernel/gentoo-kernel-6.1.130

Description

Linux kernel built with Gentoo patches

Added to portage

2025-03-08

gentoo-kernel - 6.12.18
Ebuild name:

sys-kernel/gentoo-kernel-6.12.18

Description

Linux kernel built with Gentoo patches

Added to portage

2025-03-08

gentoo-kernel - 6.13.6
Ebuild name:

sys-kernel/gentoo-kernel-6.13.6

Description

Linux kernel built with Gentoo patches

Added to portage

2025-03-08

gentoo-kernel - 6.6.81
Ebuild name:

sys-kernel/gentoo-kernel-6.6.81

Description

Linux kernel built with Gentoo patches

Added to portage

2025-03-08

gentoo-kernel-bin - 6.1.130
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.1.130

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2025-03-08

gentoo-kernel-bin - 6.12.18
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.12.18

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2025-03-08

gentoo-kernel-bin - 6.13.6
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.13.6

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2025-03-08

gentoo-kernel-bin - 6.6.81
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.6.81

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2025-03-08

gentoo-sources - 6.1.130
Ebuild name:

sys-kernel/gentoo-sources-6.1.130

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2025-03-08

gentoo-sources - 6.12.18
Ebuild name:

sys-kernel/gentoo-sources-6.12.18

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2025-03-08

gentoo-sources - 6.13.6
Ebuild name:

sys-kernel/gentoo-sources-6.13.6

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2025-03-08

gentoo-sources - 6.6.81
Ebuild name:

sys-kernel/gentoo-sources-6.6.81

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2025-03-08

gentoo-syntax - 15
Ebuild name:

app-vim/gentoo-syntax-15

Description

vim plugin Gentoo and Portage syntax highlighting

Added to portage

2025-03-08

git-delete-merged-branches - 7.5.0
Ebuild name:

dev-vcs/git-delete-merged-branches-7.5.0

Description

Command-line tool to delete merged Git branches

Added to portage

2025-03-08

gmime - 3.2.15
Ebuild name:

dev-libs/gmime-3.2.15

Description

Library for creating and parsing MIME messages

Added to portage

2025-03-08

gnupg - 2.2.45-r1
Ebuild name:

app-crypt/gnupg-2.2.45-r1

Description

The GNU Privacy Guard, a GPL OpenPGP implementation

Added to portage

2025-03-08

gnupg - 2.4.6-r2
Ebuild name:

app-crypt/gnupg-2.4.6-r2

Description

The GNU Privacy Guard, a GPL OpenPGP implementation

Added to portage

2025-03-08

gnupg - 2.4.7-r1
Ebuild name:

app-crypt/gnupg-2.4.7-r1

Description

The GNU Privacy Guard, a GPL OpenPGP implementation

Added to portage

2025-03-08

gnupg - 2.5.1-r1
Ebuild name:

app-crypt/gnupg-2.5.1-r1

Description

The GNU Privacy Guard, a GPL OpenPGP implementation

Added to portage

2025-03-08

html-xml-utils - 8.7
Ebuild name:

app-text/html-xml-utils-8.7

Description

A number of simple utilities for manipulating HTML and XML files

Added to portage

2025-03-08

huggingface_hub - 0.26.5
Ebuild name:

sci-libs/huggingface_hub-0.26.5

Description

a client library to interact with the Hugging Face Hub

Added to portage

2025-03-08

ipykernel - 7.0.0_alpha1
Ebuild name:

dev-python/ipykernel-7.0.0_alpha1

Description

IPython Kernel for Jupyter

Added to portage

2025-03-08

javatoolkit - 0.6.8
Ebuild name:

dev-java/javatoolkit-0.6.8

Description

Collection of Gentoo-specific tools for Java

Added to portage

2025-03-08

kitty - 0.40.0
Ebuild name:

x11-terms/kitty-0.40.0

Description

Fast, feature-rich, GPU-based terminal

Added to portage

2025-03-08

kitty-shell-integration - 0.40.0
Ebuild name:

x11-terms/kitty-shell-integration-0.40.0

Description

Shell integration scripts for kitty, a GPU-based terminal

Added to portage

2025-03-08

kitty-terminfo - 0.40.0
Ebuild name:

x11-terms/kitty-terminfo-0.40.0

Description

Terminfo for kitty, a GPU-based terminal emulator

Added to portage

2025-03-08

libqalculate - 5.5.2
Ebuild name:

sci-libs/libqalculate-5.5.2

Description

A modern multi-purpose calculator library

Added to portage

2025-03-08

libxmlb - 0.3.21
Ebuild name:

dev-libs/libxmlb-0.3.21

Description

Library to help create and query binary XML blobs

Added to portage

2025-03-08

mime-types-data - 3.2025.0304
Ebuild name:

dev-ruby/mime-types-data-3.2025.0304

Description

Registry for information about MIME media type definitions

Added to portage

2025-03-08

mixlib-shellout - 3.3.8
Ebuild name:

dev-ruby/mixlib-shellout-3.3.8

Description

Run external commands on Unix or Windows

Added to portage

2025-03-08

mkdocs-bootstrap - 1.1.1-r1
Ebuild name:

dev-python/mkdocs-bootstrap-1.1.1-r1

Description

Bootstrap theme for MkDocs

Added to portage

2025-03-08

mkdocs-bootswatch - 1.1-r3
Ebuild name:

dev-python/mkdocs-bootswatch-1.1-r3

Description

Bootswatch themes for MkDocs

Added to portage

2025-03-08

mold - 2.37.1
Ebuild name:

sys-devel/mold-2.37.1

Description

A Modern Linker

Added to portage

2025-03-08

mu - 1.12.8
Ebuild name:

net-mail/mu-1.12.8

Description

Set of tools to deal with Maildirs, in particular, searching and indexing

Added to portage

2025-03-08

mu - 1.12.9
Ebuild name:

net-mail/mu-1.12.9

Description

Set of tools to deal with Maildirs, in particular, searching and indexing

Added to portage

2025-03-08

obs-studio - 31.0.2
Ebuild name:

media-video/obs-studio-31.0.2

Description

Software for Recording and Streaming Live Video Content

Added to portage

2025-03-08

oidn - 2.3.2
Ebuild name:

media-libs/oidn-2.3.2

Description

Intel® Open Image Denoise library

Added to portage

2025-03-08

open-iscsi - 2.1.11
Ebuild name:

sys-block/open-iscsi-2.1.11

Description

A performant, transport independent, multi-platform implementation of R

Added to portage

2025-03-08

open-isns - 0.103
Ebuild name:

sys-block/open-isns-0.103

Description

iSNS server and client for Linux

Added to portage

2025-03-08

pdm - 2.22.4
Ebuild name:

dev-python/pdm-2.22.4

Description

Python package and dependency manager supporting the latest PEP standards

Added to portage

2025-03-08

pkgconf - 2.4.3
Ebuild name:

dev-util/pkgconf-2.4.3

Description

pkg-config compatible replacement with no dependencies other than C99

Added to portage

2025-03-08

poppler - 25.03.0
Ebuild name:

app-text/poppler-25.03.0

Description

PDF rendering library based on the xpdf-3.0 code base

Added to portage

2025-03-08

pycurl - 7.45.6
Ebuild name:

dev-python/pycurl-7.45.6

Description

Python bindings for curl/libcurl

Added to portage

2025-03-08

pypy - 3.11.7.3.19_p4
Ebuild name:

dev-lang/pypy-3.11.7.3.19_p4

Description

A fast, compliant alternative implementation of the Python () language

Added to portage

2025-03-08

pytest-asyncio - 0.23.8
Ebuild name:

dev-python/pytest-asyncio-0.23.8

Description

Library for testing asyncio code with pytest

Added to portage

2025-03-08

python-json-logger - 3.3.0
Ebuild name:

dev-python/python-json-logger-3.3.0

Description

Standard python logging to output log data as json objects

Added to portage

2025-03-08

qtile - 0.31.0
Ebuild name:

x11-wm/qtile-0.31.0

Description

A full-featured, hackable tiling window manager written in Python

Added to portage

2025-03-08

recog - 3.1.14
Ebuild name:

dev-ruby/recog-3.1.14

Description

Pattern recognition for hosts, services, and content

Added to portage

2025-03-08

requests-unixsocket - 0.4.1
Ebuild name:

dev-python/requests-unixsocket-0.4.1

Description

Use requests to talk HTTP via a UNIX domain socket

Added to portage

2025-03-08

rescrobbled - 0.7.2
Ebuild name:

media-sound/rescrobbled-0.7.2

Description

MPRIS music scrobbler daemon

Added to portage

2025-03-08

ruff - 0.9.10
Ebuild name:

dev-util/ruff-0.9.10

Description

An extremely fast Python linter, written in Rust

Added to portage

2025-03-08

sequel - 5.90.0
Ebuild name:

dev-ruby/sequel-5.90.0

Description

A lightweight database toolkit for Ruby

Added to portage

2025-03-08

signal-desktop-bin - 7.45.0
Ebuild name:

net-im/signal-desktop-bin-7.45.0

Description

Allows you to send and receive messages of Signal Messenger on you

Added to portage

2025-03-08

spidermonkey - 128.8.0
Ebuild name:

dev-lang/spidermonkey-128.8.0

Description

Mozilla's JavaScript engine written in C and C++

Added to portage

2025-03-08

sqlglot - 26.9.0
Ebuild name:

dev-python/sqlglot-26.9.0

Description

An easily customizable SQL parser and transpiler

Added to portage

2025-03-08

stripe-mock - 0.193.0
Ebuild name:

dev-util/stripe-mock-0.193.0

Description

Mock HTTP server that responds like the real Stripe API

Added to portage

2025-03-08

symon - 2.89
Ebuild name:

net-analyzer/symon-2.89

Description

Performance and information monitoring tool

Added to portage

2025-03-08

tavern - 2.12.0
Ebuild name:

dev-python/tavern-2.12.0

Description

A tool, library, and Pytest plugin for testing RESTful APIs

Added to portage

2025-03-08

tcl - 8.6.16
Ebuild name:

dev-lang/tcl-8.6.16

Description

Tool Command Language

Added to portage

2025-03-08

tinc - 1.0.36-r1
Ebuild name:

net-vpn/tinc-1.0.36-r1

Description

tinc is an easy to configure VPN implementation

Added to portage

2025-03-08

tk - 8.6.16
Ebuild name:

dev-lang/tk-8.6.16

Description

Tk Widget Set

Added to portage

2025-03-08

tox - 4.24.2
Ebuild name:

dev-python/tox-4.24.2

Description

virtualenv-based automation of test activities

Added to portage

2025-03-08

tpm2-tools - 5.7
Ebuild name:

app-crypt/tpm2-tools-5.7

Description

Tools for the TPM 2.0 TSS

Added to portage

2025-03-08

tpm2-totp - 0.3.0-r1
Ebuild name:

app-crypt/tpm2-totp-0.3.0-r1

Description

Attest the trustworthiness of a device against a human using time-base

Added to portage

2025-03-08

tpm2-tss - 4.0.2-r2
Ebuild name:

app-crypt/tpm2-tss-4.0.2-r2

Description

TCG Trusted Platform Module 2.0 Software Stack

Added to portage

2025-03-08

tpm2-tss - 4.1.3-r1
Ebuild name:

app-crypt/tpm2-tss-4.1.3-r1

Description

TCG Trusted Platform Module 2.0 Software Stack

Added to portage

2025-03-08

tpm2-tss - 4.1.3-r2
Ebuild name:

app-crypt/tpm2-tss-4.1.3-r2

Description

TCG Trusted Platform Module 2.0 Software Stack

Added to portage

2025-03-08

transformers - 4.48.3
Ebuild name:

sci-libs/transformers-4.48.3

Description

State-of-the-art Machine Learning for JAX, PyTorch and TensorFlow

Added to portage

2025-03-08

transformers - 4.49.0
Ebuild name:

sci-libs/transformers-4.49.0

Description

State-of-the-art Machine Learning for JAX, PyTorch and TensorFlow

Added to portage

2025-03-08

transient - 0.8.5
Ebuild name:

app-emacs/transient-0.8.5

Description

Transient commands abstraction for GNU Emacs

Added to portage

2025-03-08

trousers - 0.3.15
Ebuild name:

app-crypt/trousers-0.3.15

Description

An open-source TCG Software Stack (TSS) v1.1 implementation

Added to portage

2025-03-08

trousers - 0.3.15-r1
Ebuild name:

app-crypt/trousers-0.3.15-r1

Description

An open-source TCG Software Stack (TSS) v1.1 implementation

Added to portage

2025-03-08

types-gdb - 15.0.0.20250308
Ebuild name:

dev-python/types-gdb-15.0.0.20250308

Description

Typing stubs for gdb

Added to portage

2025-03-08

ubuntu-keyring - 2020.02.11.2
Ebuild name:

app-crypt/ubuntu-keyring-2020.02.11.2

Description

GnuPG archive keys of the Ubuntu archive

Added to portage

2025-03-08

ubuntu-keyring - 2020.06.17.1
Ebuild name:

app-crypt/ubuntu-keyring-2020.06.17.1

Description

GnuPG archive keys of the Ubuntu archive

Added to portage

2025-03-08

userspace-rcu - 0.15.1
Ebuild name:

dev-libs/userspace-rcu-0.15.1

Description

Userspace RCU (read-copy-update) library

Added to portage

2025-03-08

vanilla-kernel - 6.1.130
Ebuild name:

sys-kernel/vanilla-kernel-6.1.130

Description

Linux kernel built from vanilla upstream sources

Added to portage

2025-03-08

vanilla-kernel - 6.12.18
Ebuild name:

sys-kernel/vanilla-kernel-6.12.18

Description

Linux kernel built from vanilla upstream sources

Added to portage

2025-03-08

vanilla-kernel - 6.13.6
Ebuild name:

sys-kernel/vanilla-kernel-6.13.6

Description

Linux kernel built from vanilla upstream sources

Added to portage

2025-03-08

vanilla-kernel - 6.6.81
Ebuild name:

sys-kernel/vanilla-kernel-6.6.81

Description

Linux kernel built from vanilla upstream sources

Added to portage

2025-03-08

vanilla-sources - 6.1.130
Ebuild name:

sys-kernel/vanilla-sources-6.1.130

Description

Full sources for the Linux kernel

Added to portage

2025-03-08

vanilla-sources - 6.12.18
Ebuild name:

sys-kernel/vanilla-sources-6.12.18

Description

Full sources for the Linux kernel

Added to portage

2025-03-08

vanilla-sources - 6.13.6
Ebuild name:

sys-kernel/vanilla-sources-6.13.6

Description

Full sources for the Linux kernel

Added to portage

2025-03-08

vanilla-sources - 6.6.81
Ebuild name:

sys-kernel/vanilla-sources-6.6.81

Description

Full sources for the Linux kernel

Added to portage

2025-03-08

wine-vanilla - 10.3
Ebuild name:

app-emulation/wine-vanilla-10.3

Description

Free implementation of Windows(tm) on Unix, without external patchs

Added to portage

2025-03-08

xdp-tools - 1.5.3
Ebuild name:

net-libs/xdp-tools-1.5.3

Description

The libxdp library and various tools for use with XDP

Added to portage

2025-03-08

yaz - 5.34.4
Ebuild name:

dev-libs/yaz-5.34.4

Description

C/C++ toolkit for Z39.50v3 clients and servers

Added to portage

2025-03-08

ytmusicapi - 1.10.2
Ebuild name:

dev-python/ytmusicapi-1.10.2

Description

Unofficial API for YouTube Music

Added to portage

2025-03-08

ytree - 2.10
Ebuild name:

app-misc/ytree-2.10

Description

Curses-based file manager

Added to portage

2025-03-08

zmq-anyio - 0.3.6
Ebuild name:

dev-python/zmq-anyio-0.3.6

Description

Asynchronous API for ZMQ using AnyIO

Added to portage

2025-03-08

zoom - 6.3.11.7212
Ebuild name:

net-im/zoom-6.3.11.7212

Description

Video conferencing and web conferencing service

Added to portage

2025-03-08

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: 55.7 ms