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:

88546

userrating:

average rating: 1.2 (52 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->VI

3. Practice Lesson #1


You should have a practice file called vilesson.txt in
your home directory. We will use it now:


$ vi vilesson.txt

Please note that in this lesson we will only practice the very
basics of vi. It is up to you to explore the editor further using
the provided cheat-sheet.


General Rules



  1. Do not use arrow keys to move the cursor
  2. Do not use PgDn or PgUp keys
  3. Do not use Home or End keys

If you accidently violate any of the above rules and cause strange
characters to be inserted into the file, or if anything else
unexpected happens, and you don't know how to correct it, press
Escape followed with :q! (quit without
saving
command). Then open the file again and continue the
lesson.


All exercises in Practice Lesson #1 consist of
Actions (marked here as A:) and Verifications
(marked here as V:).


Moving Around Text


First we will move around the file line by line.



A:
Press j three times.
V:
Cursor should now be resting on the fourth line.
A:
Type 8j
V:
Cursor should have moved 8 lines down to "Mr. John Bigfoot".
A:
Go up 2 lines by pressing k twice. Now go up 7 more
lines using the combination of a number and the k command.
V:
Your cursor should be on the "Big Town" line.

There is a way to move to a specific line number.



A:
Type :set number and press Enter key.
V:
Line numbers should be displayed at the left margin.
A:
Type 33G
V:
Your cursor should be resting at line #33.
A:
Type :set nonumber
V:
Line numbers should disappear.
A:
Go to the first line in the file by typing 1G (as in
line #1, GO).
V:
Your cursor should be at the top of the file.
A:
To go to the last line in the file, you do not need to specify
the line number at all (it would often be inconvenient). Type
G
V:
Cursor should be at the last line of the file.

To move sideways we will use command l (letter el)
to move right, and command h to move left. First go
back to the beginning of the line "40 PR Special (Pink Squirrel)".
When you're done, continue with the exercise.



A:
Press l three times.
V:
Cursor should be on character "P".
A:
Type 10l (number 10 followed by letter el)
V:
Cursor should be resting on white space between words "Special"
and "Pink".
A:
Press h twice.
V:
Cursor should be on character "a" of the letter "Special".
A:
Now go directly to the end of the line by pressing $
(dollar sign).
V:
Cursor should be at the end of the line.
A:
Go back to the beginning of the line by pressing 0 (zero).
V:
Cursor should be at the beginning of the line.

We can also move using words, sentences and paragraphs as delimiters.
First make sure your cursor is still at the beginning of the line
"40 PR Special (Pink Squirrel)".



A:
Press w (as in word) twice.
V:
Cursor should be at the beginning of the word "Special".
A:
Type 3w
V:
Cursor should be at the beginning of the word "Squirrel".
Note that vi knows that "(" is not a part of the word, and it
counts those elements separately.
A:
Go two paragraphs down by pressing 2} (right curly
brace).
V:
Cursor should be resting before the beginning of the
paragraph "We are looking forward [...]"
A:
Go to the previous sentence by pressing ( (left
parenthesis).
V:
Cursor should be on the word "We". Note:
Using sentences as delimiters is known to be broken in a couple
of vi implementations.
A:
Move to the end of the word by pressing e (as in end
of the word
).
V:
Cursor should be resting on the letter "e".
A:
To move one page forward, press Ctrl-F
V:
Depending on your terminal definition, the cursor should have
moved an appropriate number of lines forward. In our case, since
the file is short, you are most likely at the last line.
A:
Press Ctrl-B to go back one page.
V:
Cursor should have moved up one terminal page. Note:
On some older DOS versions of vi this command might scroll up the
page without moving the cursor. If this happens to you, press
Ctrl-B again.

Searching


Make sure your cursor is at the top of the file, then proceed
with the exercise.



A:
Press /, type your and press Enter
V:
Cursor should be on the word "your" in the middle of the sentence
"Thank you for placing your order with us".
A:
Press n (for 'next').
V:
Cursor should be on the word "your" before words "March 25".
A:
Press G to go to the end of the file.
V:
Cursor should be at the bottom of the file.
A:
Press ?, type ( and press Enter
V:
Your cursor should be on the left parenthesis before the word
"Moscow".

Deleting, Copying, And Pasting


We will practice commands d (delete),
p and P (paste), and the command
. (period, which means repeat last edit).
Make sure your cursor is still on the left paren before the word
"Moscow".



A:
Type d$
V:
You have just asked to delete to the end of line: d for
delete and $ for end of line (to
indicate the scope of the operation). Entire description of the
"Stock Option" drink should have disappeared.
A:
Press n to find the next instance of "(" (that was
our last search).
V:
Cursor should be on the left paren before the word "Ping-Pong".
A:
Repeat the previous edit (delete to end of the line) by pressing
. (period).
V:
Description of the "Day in TAC" drink should have disappeared.
A:
Press n again followed by . (period).
V:
Description of the "PR Special" drink should have disappeared.
A:
Repeat the last operation.
V:
All of the descriptions of the drinks (please ignore the fact that
some of them are intentionally wrong) should be gone.
A:
Exit the file without saving it by typing command :q!
V:
You should be at the UNIX shell command prompt.

Bring the file back into the editor with the command:



$ vi vilesson.txt

By now you have noticed that one of the drinks is really an appetizer.
We need to move it into the right place.



A:
Type /Early and press Enter
V:
Cursor should be on the line with "Early Release".
A:
Delete the whole line by pressing d twice.
V:
Line should be gone.
A:
Press P (upper case).
V:
The line you deleted is pasted above "Sales Engineer Special".
A:
Now press u for undo, remember which line
your cursor is on and then press p (lowercase).
V:
The line you deleted is pasted below your cursor line.

Note that uppercase P pastes text above the cursor line,
lowercase p pastes below.


If you only wish to copy the original line(s) without deleting at
the same time, use the yank command.



A:
Move you cursor to the second line, type 3Y, move your
cursor all the way down by pressing G and press
p
V:
Lines 2, 3, and 4 should have been pasted under "Tony Thomas".
A:
Now press u to undo the changes.
V:
The lines you have pasted should have disappeared.

The above operation could also be accomplished using lowercase
yank and the symbol for the object to be copied.



A:
Move your cursor back to line 2. Type commands y}Gp
V:
Lines 2, 3, and 4 should have been pasted under "Tony Thomas".
A:
Now undo the changes.
V:
The lines you have pasted should have disappeared.

Replacing Text


You have just noticed that the name of the addressee is spelled
"Bigfoot". It should be "Bigshot". You will now globally change
it.



A:
Press : (vi command line), type
%s/Bigfoot/Bigshot/g and press Enter
V:
All instances of "Bigfoot" should have changed to "Bigshot".

What you have typed means command line (:), the whole
file
(%), substitute (s), Bigfoot with Bigshot
(/Bigfoot/Bigshot/), any occurance on a line (g). Without
the last g, the substitution would be performed only
once per line. In our case it would not make any difference, but
it is a cheap insurance to take. The character % at
the beginning of the command means literally from the first to
the last line
. You could specify a narrower range of lines.
:13,19s/Bigfoot/Bigshot/ would perform the substitution
on a range of lines 13 through 19.


It is possible to replace specific number of words with whatever
text we wish to type in.



A:
Press / and then type send and press
Enter. Now type cw (for change word),
type be delivering and press Escape
V:
The word "send" should have been replaced with "be delivering".
Note that only the word "send" was replaced.

You could also specify
multiple words to be replaced, for example c3w. This
has a distinct advantage over more conventional overwriting because
it has clear word-boundary delimiters.


Overwriting one character, however, can be useful as a quick
correction. Note that the word "Febeuary" is misspelled.



A:
Place your cursor on the second "e" in that word and press r
twice.
V:
The word "Febeuary" should now read "February".

The first time you pressed r above it meant replace,
the second time with letter r. You do not need to finish
the command with Escape because there is an understanding
that only one letter will be input. This was single-letter
overwriting. Should you wish to overwrite continuously, you would
use the letter R instead. You would also need to finish
the command by pressing Escape since the number of
characters to be overwritten is not pre-determined.


Changing Case


Notice that the word "serVEd" has improperly capitalized two letters.



A:
Go to the word "serVEd", place your cursor over the first miscapitalized
letter and press ~ (tilde) twice.
V:
The word should now read "served".

Saving Files


It is time to save the changes.



A:
Press : (for command line), type w
(for write) and press Enter
V:
The changes have been saved. There could be a one-line note at
the bottom of the screen saying, "vilesson.txt: 48 lines, 954
characters" (or something similar) to confirm a successful save.

There are other ways to save files, so please read the cheat-sheet
for the command summary.


Inserting Text


There are three parts to entering text:



  1. input command (A, I, O, R, a, c, i, o)
  2. text to be inserted (anything you wish)
  3. termination of input command (Escape key)

The third part is always the same. All text input commands
listed above are terminated with Escape key. Part one
is where the variation occurs.



A:
Move the cursor to the beginning of line 38. Press i
and start typing text. When you finish the sentence, press
Escape.
V:
As you have noticed, i inserts text before the
letter the cursor rests on.

To enter text after the cursor, you would use a
(append) command. Now move your cursor to the second line
in the table listing drinks to be delivered.



A:
Press o.
V:
A new blank line should have been opened below the cursor line.
A:
Type some text. Press Escape.
V:
Text should have been entered on the blank line.
A:
Press u.
V:
Text you entered should have disappeared.
A:
Now press capital O, type some text and press
Escape.
V:
Text should have been entered on the line above the former cursor
line.

Note that the capitalized version of the same command opens the
line for text input above the cursor line. Note similarities
to the p and P commands. Press u.


Make sure you are approximately in the middle of the line of text (any
line).



A:
Press I (the capitalized version of the insert
command). Start typing text. Press Escape.
V:
Text should have been entered at the beginning of the line.
A:
Press u to undo changes.
V:
Text you entered should have disappeared.
A:
Now press A (the capitalized version of the append
command, type some text and terminate the command.
V:
Text should have been appended to the end of the line.
A:
Press u to undo changes.
V:
Text you entered should have disappeared.

Exiting file


You can exit file with or without saving changes.



A:
To save and exit, type :wq and press Enter.
V:
File has been saved and you should be at the UNIX command prompt.
A:
Open the file using vi vileson.txt and make some
changes (if you are entering text, please remember to terminate
the text input command with Escape). Type :q
and press Enter.
V:
Normally that would allow you to quit file, but since you have
changed the file, vi most likely will ask you to either save or
use bang (! command) to overwrite the protection.
A:
Type :q! and press Enter.
V:
You should be back at the UNIX command prompt.

Note that bang also works in conjunction with :w
and :wq commands.


End Of Practice Lesson #1



/* The article above and any accompanying files are freely
* distributable, but please leave this notice and the text intact.
* Home for this document: http://www.infobound.com/vi.html
* Copyright (C) 1994, 1999 Tony Thomas
* Contact author through email:
tony@infobound.com
* Last revision Feb 23, 1999
* UNIX is a trademark of X/Open
*/

rate this article:
current rating: average rating: 1.3 (46 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
2026-09-20
adwaita-icon-theme - 50.0
Ebuild name:

x11-themes/adwaita-icon-theme-50.0

Description

GNOME default icon theme

Added to portage

2026-09-20

at-spi2-core - 2.60.7
Ebuild name:

app-accessibility/at-spi2-core-2.60.7

Description

D-Bus accessibility specifications and registration daemon

Added to portage

2026-09-20

automake - 1.19
Ebuild name:

dev-build/automake-1.19

Description

Used to generate Makefile.in from Makefile.am

Added to portage

2026-09-20

automake-vanilla - 1.19
Ebuild name:

dev-build/automake-vanilla-1.19

Description

Used to generate Makefile.in from Makefile.am

Added to portage

2026-09-20

automake-wrapper - 20260920
Ebuild name:

dev-build/automake-wrapper-20260920

Description

Wrapper for automake to manage multiple automake versions

Added to portage

2026-09-20

cairomm - 1.18.1
Ebuild name:

dev-cpp/cairomm-1.18.1

Description

C++ bindings for the Cairo vector graphics library

Added to portage

2026-09-20

cups-filters - 9999
Ebuild name:

net-print/cups-filters-9999

Description

Cups filters

Added to portage

2026-09-20

editor - 0-r8
Ebuild name:

virtual/editor-0-r8

Description

Virtual for editor

Added to portage

2026-09-20

eigen - 3.4.1-r1
Ebuild name:

dev-cpp/eigen-3.4.1-r1

Description

C++ template library for linear algebra

Added to portage

2026-09-20

gcc - 15.3.1_p20260918
Ebuild name:

sys-devel/gcc-15.3.1_p20260918

Description

The GNU Compiler Collection

Added to portage

2026-09-20

gcr - 4.4.1
Ebuild name:

app-crypt/gcr-4.4.1

Description

Libraries for cryptographic UIs and accessing PKCS11 modules

Added to portage

2026-09-20

gdm - 50.3
Ebuild name:

gnome-base/gdm-50.3

Description

GNOME Display Manager for managing graphical display servers and user logins

Added to portage

2026-09-20

gdm - 50.3-r1
Ebuild name:

gnome-base/gdm-50.3-r1

Description

GNOME Display Manager for managing graphical display servers and user logins

Added to portage

2026-09-20

gnome-calendar - 50.0
Ebuild name:

gnome-extra/gnome-calendar-50.0

Description

Manage your calendars with simple and modern interface

Added to portage

2026-09-20

gnome-control-center - 50.4
Ebuild name:

gnome-base/gnome-control-center-50.4

Description

GNOME's main interface to configure various aspects of the des

Added to portage

2026-09-20

gnome-session - 50.1
Ebuild name:

gnome-base/gnome-session-50.1

Description

Gnome session manager

Added to portage

2026-09-20

gnome-session-openrc - 50.0
Ebuild name:

gnome-base/gnome-session-openrc-50.0

Description

Gnome session leader for OpenRC

Added to portage

2026-09-20

gnome-settings-daemon - 50.1
Ebuild name:

gnome-base/gnome-settings-daemon-50.1

Description

Gnome Settings Daemon

Added to portage

2026-09-20

gnome-shell - 50.5
Ebuild name:

gnome-base/gnome-shell-50.5

Description

Provides core UI functions for the GNOME desktop

Added to portage

2026-09-20

gnome-shell-extension-applications-overview-tooltip - 24-r1
Ebuild name:

gnome-extra/gnome-shell-extension-applications-overview-tooltip-24-r1

Description

Show tooltip with full name a

Added to portage

2026-09-20

gnome-shell-extension-dash-to-panel - 74
Ebuild name:

gnome-extra/gnome-shell-extension-dash-to-panel-74

Description

An icon taskbar for the Gnome Shell

Added to portage

2026-09-20

gnome-shell-extension-desktop-icons-ng - 51.0.8
Ebuild name:

gnome-extra/gnome-shell-extension-desktop-icons-ng-51.0.8

Description

Desktop icon support for GNOME Shell

Added to portage

2026-09-20

gnome-shell-extensions - 50.4
Ebuild name:

gnome-extra/gnome-shell-extensions-50.4

Description

JavaScript extensions for GNOME Shell

Added to portage

2026-09-20

gnome-shell-frippery - 50.0
Ebuild name:

gnome-extra/gnome-shell-frippery-50.0

Description

Unofficial extension pack providing GNOME 2-like features

Added to portage

2026-09-20

gsettings-desktop-schemas - 50.1
Ebuild name:

gnome-base/gsettings-desktop-schemas-50.1

Description

Collection of GSettings schemas for GNOME desktop

Added to portage

2026-09-20

gtkmm - 4.22.0
Ebuild name:

dev-cpp/gtkmm-4.22.0

Description

C++ interface for GTK+

Added to portage

2026-09-20

howm - 1.5.0
Ebuild name:

app-emacs/howm-1.5.0

Description

Note-taking tool on Emacs

Added to portage

2026-09-20

ht - 2.3
Ebuild name:

app-emacs/ht-2.3

Description

The missing hash table library for Emacs

Added to portage

2026-09-20

htmlize - 1.59
Ebuild name:

app-emacs/htmlize-1.59

Description

HTML-ize font-lock buffers in Emacs

Added to portage

2026-09-20

httpd - 1.1-r1
Ebuild name:

app-emacs/httpd-1.1-r1

Description

A HTTP server embedded in the Emacs

Added to portage

2026-09-20

hydra - 0.15.0
Ebuild name:

app-emacs/hydra-0.15.0

Description

Make Emacs bindings that stick around

Added to portage

2026-09-20

icicles - 2018.02.13.23733
Ebuild name:

app-emacs/icicles-2018.02.13.23733

Description

Minibuffer input completion and cycling

Added to portage

2026-09-20

libadwaita - 1.9.4
Ebuild name:

gui-libs/libadwaita-1.9.4

Description

Building blocks for modern GNOME applications

Added to portage

2026-09-20

libcec - 8.1.7
Ebuild name:

dev-libs/libcec-8.1.7

Description

Library for communicating with the Pulse-Eight USB HDMI-CEC Adaptor

Added to portage

2026-09-20

libcupsfilters - 9999
Ebuild name:

net-print/libcupsfilters-9999

Description

library for developing printing features, split out of cups-filters

Added to portage

2026-09-20

libdvdread - 7.1.1
Ebuild name:

media-libs/libdvdread-7.1.1

Description

Library for DVD navigation tools

Added to portage

2026-09-20

libltdl - 2.6.2
Ebuild name:

dev-libs/libltdl-2.6.2

Description

A shared library tool for developers

Added to portage

2026-09-20

libtool - 2.6.2
Ebuild name:

dev-build/libtool-2.6.2

Description

A shared library tool for developers

Added to portage

2026-09-20

minicoredumper - 2.1.0
Ebuild name:

sys-process/minicoredumper-2.1.0

Description

Core dump file processor

Added to portage

2026-09-20

mutter - 50.5
Ebuild name:

x11-wm/mutter-50.5

Description

GNOME compositing window manager based on Clutter

Added to portage

2026-09-20

nautilus - 50.3.1
Ebuild name:

gnome-base/nautilus-50.3.1

Description

Default file manager for the GNOME desktop

Added to portage

2026-09-20

networkmanager-libreswan - 1.2.31
Ebuild name:

net-vpn/networkmanager-libreswan-1.2.31

Description

NetworkManager libreswan plugin

Added to portage

2026-09-20

openpgp-keys-ddevault - 20250219
Ebuild name:

sec-keys/openpgp-keys-ddevault-20250219

Description

Drew DeVault's PGP signing key

Added to portage

2026-09-20

openpgp-keys-paulhardy - 20220319
Ebuild name:

sec-keys/openpgp-keys-paulhardy-20220319

Description

OpenPGP keys used by Paul Hardy

Added to portage

2026-09-20

pch-session - 50.0
Ebuild name:

gnome-extra/pch-session-50.0

Description

Unofficial gnome based session with different default settings and ext

Added to portage

2026-09-20

sddm - 0.21.0_p20260819
Ebuild name:

x11-misc/sddm-0.21.0_p20260819

Description

Simple Desktop Display Manager

Added to portage

2026-09-20

shotwell - 33.0
Ebuild name:

media-gfx/shotwell-33.0

Description

Open source photo manager for GNOME

Added to portage

2026-09-20

unifont - 18.0.01
Ebuild name:

media-fonts/unifont-18.0.01

Description

Unicode bitmap font with full Basic Multilingual Plane coverage

Added to portage

2026-09-20

uzdoom - 5.0.1
Ebuild name:

games-engines/uzdoom-5.0.1

Description

Modder-friendly hardware-accelerated source port of the DOOM engine

Added to portage

2026-09-20

xdg-desktop-portal-gnome - 50.0
Ebuild name:

sys-apps/xdg-desktop-portal-gnome-50.0

Description

Backend implementation for xdg-desktop-portal using GNOME

Added to portage

2026-09-20

2026-09-19
airline - 0.12
Ebuild name:

app-vim/airline-0.12

Description

vim plugin lean & mean statusline for vim that's light as air

Added to portage

2026-09-19

android-studio - 2026.1.4.8
Ebuild name:

dev-util/android-studio-2026.1.4.8

Description

Android development environment based on IntelliJ IDEA

Added to portage

2026-09-19

aws-crt-cpp - 0.43.7
Ebuild name:

dev-cpp/aws-crt-cpp-0.43.7

Description

C++ wrapper around the aws-c-* libraries

Added to portage

2026-09-19

awscli - 2.36.49
Ebuild name:

app-admin/awscli-2.36.49

Description

Universal Command Line Environment for AWS

Added to portage

2026-09-19

borgmatic - 2.1.8
Ebuild name:

app-backup/borgmatic-2.1.8

Description

Automatically create, prune and verify backups with borgbackup

Added to portage

2026-09-19

boto3 - 1.43.98
Ebuild name:

dev-python/boto3-1.43.98

Description

The AWS SDK for Python

Added to portage

2026-09-19

botocore - 1.43.98
Ebuild name:

dev-python/botocore-1.43.98

Description

Low-level, data-driven core of boto 3

Added to portage

2026-09-19

camlidl - 1.13-r1
Ebuild name:

dev-ml/camlidl-1.13-r1

Description

Stub code generator for OCaml

Added to portage

2026-09-19

clang - 24.0.0_pre20260919
Ebuild name:

dev-python/clang-24.0.0_pre20260919

Description

Python bindings for llvm-core/clang

Added to portage

2026-09-19

clang - 24.0.0_pre20260919
Ebuild name:

llvm-core/clang-24.0.0_pre20260919

Description

C language family frontend for LLVM

Added to portage

2026-09-19

clang-common - 24.0.0_pre20260919
Ebuild name:

llvm-core/clang-common-24.0.0_pre20260919

Description

Common files shared between multiple slots of clang

Added to portage

2026-09-19

clang-runtime - 19.1.7-r2
Ebuild name:

llvm-runtimes/clang-runtime-19.1.7-r2

Description

Meta-ebuild for clang runtime libraries

Added to portage

2026-09-19

clang-runtime - 20.1.8-r2
Ebuild name:

llvm-runtimes/clang-runtime-20.1.8-r2

Description

Meta-ebuild for clang runtime libraries

Added to portage

2026-09-19

clang-runtime - 21.1.8-r1
Ebuild name:

llvm-runtimes/clang-runtime-21.1.8-r1

Description

Meta-ebuild for clang runtime libraries

Added to portage

2026-09-19

clang-runtime - 22-r1
Ebuild name:

llvm-runtimes/clang-runtime-22-r1

Description

Meta-ebuild for clang runtime libraries

Added to portage

2026-09-19

clang-runtime - 23-r2
Ebuild name:

llvm-runtimes/clang-runtime-23-r2

Description

Meta-ebuild for clang runtime libraries

Added to portage

2026-09-19

cmigemo - 1.8.0
Ebuild name:

app-text/cmigemo-1.8.0

Description

Migemo library implementation in C

Added to portage

2026-09-19

compiler-rt - 24.0.0_pre20260919
Ebuild name:

llvm-runtimes/compiler-rt-24.0.0_pre20260919

Description

Compiler runtime library for clang (built-in part)

Added to portage

2026-09-19

compiler-rt-sanitizers - 24.0.0_pre20260919
Ebuild name:

llvm-runtimes/compiler-rt-sanitizers-24.0.0_pre20260919

Description

Compiler runtime libraries for clang (sanit

Added to portage

2026-09-19

conky - 1.24.2-r1
Ebuild name:

app-admin/conky-1.24.2-r1

Description

An advanced, highly configurable system monitor for X

Added to portage

2026-09-19

cups-meta - 2
Ebuild name:

net-print/cups-meta-2

Description

Metapackage for a fully configured cups printer setup

Added to portage

2026-09-19

deno-bin - 2.9.7
Ebuild name:

dev-lang/deno-bin-2.9.7

Description

Modern runtime for JavaScript and TypeScript

Added to portage

2026-09-19

dina - 2.93-r1
Ebuild name:

media-fonts/dina-2.93-r1

Description

Monospace bitmap font, primarily aimed at programmers

Added to portage

2026-09-19

editorconfig-vim - 1.2.1
Ebuild name:

app-vim/editorconfig-vim-1.2.1

Description

vim plugin Support EditorConfig files

Added to portage

2026-09-19

ffmpeg - 9.0.2
Ebuild name:

media-video/ffmpeg-9.0.2

Description

Complete solution to record/convert/stream audio and video

Added to portage

2026-09-19

filelock - 4.0.1
Ebuild name:

dev-python/filelock-4.0.1

Description

A platform independent file lock for Python

Added to portage

2026-09-19

flang - 24.0.0_pre20260919
Ebuild name:

llvm-core/flang-24.0.0_pre20260919

Description

LLVM's Fortran frontend

Added to portage

2026-09-19

flang-rt - 24.0.0_pre20260919
Ebuild name:

llvm-runtimes/flang-rt-24.0.0_pre20260919

Description

LLVM's Fortran runtime

Added to portage

2026-09-19

fsspec - 2026.9.0
Ebuild name:

dev-python/fsspec-2026.9.0

Description

A specification that python filesystems should adhere to

Added to portage

2026-09-19

gfloat - 0.5.2-r2
Ebuild name:

dev-python/gfloat-0.5.2-r2

Description

Generic floating-point types in Python

Added to portage

2026-09-19

htmldoc - 1.9.24
Ebuild name:

app-text/htmldoc-1.9.24

Description

Convert HTML pages into a PDF document

Added to portage

2026-09-19

ibus-table - 1.18.0
Ebuild name:

app-i18n/ibus-table-1.18.0

Description

Tables engines for IBus

Added to portage

2026-09-19

icicles - 2018.10.15.23738
Ebuild name:

app-emacs/icicles-2018.10.15.23738

Description

Minibuffer input completion and cycling

Added to portage

2026-09-19

igrep - 2.113
Ebuild name:

app-emacs/igrep-2.113

Description

Added to portage

2026-09-19

indent-bars - 0.9.2
Ebuild name:

app-emacs/indent-bars-0.9.2

Description

Fast, configurable indentation guide-bars for Emacs

Added to portage

2026-09-19

inetutils - 2.8-r1
Ebuild name:

net-misc/inetutils-2.8-r1

Description

Collection of common network programs

Added to portage

2026-09-19

inf-clojure - 3.3.0
Ebuild name:

app-emacs/inf-clojure-3.3.0

Description

Major mode for Clojure code

Added to portage

2026-09-19

inf-clojure - 3.4.0
Ebuild name:

app-emacs/inf-clojure-3.4.0

Description

Major mode for Clojure code

Added to portage

2026-09-19

kirigami-addons - 1.14.1
Ebuild name:

dev-libs/kirigami-addons-1.14.1

Description

Visual end user components for Kirigami-based applications

Added to portage

2026-09-19

libass - 0.17.5-r1
Ebuild name:

media-libs/libass-0.17.5-r1

Description

Library for SSA/ASS subtitles rendering

Added to portage

2026-09-19

libayatana-appindicator - 0.6.0
Ebuild name:

dev-libs/libayatana-appindicator-0.6.0

Description

Ayatana Application Indicators (Shared Library)

Added to portage

2026-09-19

libayatana-indicator - 0.9.5
Ebuild name:

dev-libs/libayatana-indicator-0.9.5

Description

Ayatana Application Indicators (Shared Library)

Added to portage

2026-09-19

libclc - 24.0.0_pre20260919
Ebuild name:

llvm-runtimes/libclc-24.0.0_pre20260919

Description

OpenCL C library

Added to portage

2026-09-19

libcupsfilters - 2.2.1
Ebuild name:

net-print/libcupsfilters-2.2.1

Description

library for developing printing features, split out of cups-filters

Added to portage

2026-09-19

libcxx - 24.0.0_pre20260919
Ebuild name:

llvm-runtimes/libcxx-24.0.0_pre20260919

Description

New implementation of the C++ standard library, targeting C

Added to portage

2026-09-19

libcxxabi - 24.0.0_pre20260919
Ebuild name:

llvm-runtimes/libcxxabi-24.0.0_pre20260919

Description

Low level support for a standard C++ library

Added to portage

2026-09-19

libgcc - 24.0.0_pre20260919
Ebuild name:

llvm-runtimes/libgcc-24.0.0_pre20260919

Description

Compiler runtime library for clang, compatible with libgcc_

Added to portage

2026-09-19

libheif - 1.23.4
Ebuild name:

media-libs/libheif-1.23.4

Description

ISO/IEC 23008-12 HEIF file format decoder and encoder

Added to portage

2026-09-19

libunibreak - 8.0
Ebuild name:

dev-libs/libunibreak-8.0

Description

Line and word breaking library

Added to portage

2026-09-19

libunwind - 24.0.0_pre20260919
Ebuild name:

llvm-runtimes/libunwind-24.0.0_pre20260919

Description

C++ runtime stack unwinder from LLVM

Added to portage

2026-09-19

lit - 24.0.0_pre20260919
Ebuild name:

dev-python/lit-24.0.0_pre20260919

Description

A stand-alone install of the LLVM suite testing tool

Added to portage

2026-09-19

lld - 24.0.0_pre20260919
Ebuild name:

llvm-core/lld-24.0.0_pre20260919

Description

The LLVM linker (link editor)

Added to portage

2026-09-19

lldb - 24.0.0_pre20260919
Ebuild name:

llvm-core/lldb-24.0.0_pre20260919

Description

The LLVM debugger

Added to portage

2026-09-19

llvm - 24.0.0_pre20260919
Ebuild name:

dev-ml/llvm-24.0.0_pre20260919

Description

OCaml bindings for LLVM

Added to portage

2026-09-19

llvm - 24.0.0_pre20260919
Ebuild name:

llvm-core/llvm-24.0.0_pre20260919

Description

Low Level Virtual Machine

Added to portage

2026-09-19

llvm-common - 24.0.0_pre20260919
Ebuild name:

llvm-core/llvm-common-24.0.0_pre20260919

Description

Common files shared between multiple slots of LLVM

Added to portage

2026-09-19

mlir - 24.0.0_pre20260919
Ebuild name:

llvm-core/mlir-24.0.0_pre20260919

Description

Multi-Level Intermediate Representation (library only)

Added to portage

2026-09-19

msgpack-cxx - 9.0.0
Ebuild name:

dev-cpp/msgpack-cxx-9.0.0

Description

MessagePack for C++

Added to portage

2026-09-19

mxml - 4.0.5-r1
Ebuild name:

dev-libs/mxml-4.0.5-r1

Description

A small XML parsing library that you can use to read XML data files or strin

Added to portage

2026-09-19

nanobind - 3.1.0
Ebuild name:

dev-python/nanobind-3.1.0

Description

Tiny and efficient C++/Python bindings

Added to portage

2026-09-19

netkit-telnetd - 0.17-r15
Ebuild name:

net-misc/netkit-telnetd-0.17-r15

Description

Standard Linux telnet client and server

Added to portage

2026-09-19

openmp - 24.0.0_pre20260919
Ebuild name:

llvm-runtimes/openmp-24.0.0_pre20260919

Description

OpenMP runtime libraries for LLVM/clang compiler

Added to portage

2026-09-19

openmp-amdgcn-amd-amdhsa - 24.0.0_pre20260919
Ebuild name:

llvm-runtimes/openmp-amdgcn-amd-amdhsa-24.0.0_pre20260919

Description

OpenMP target library for amdgcn devices

Added to portage

2026-09-19

openmp-nvptx64-nvidia-cuda - 24.0.0_pre20260919
Ebuild name:

llvm-runtimes/openmp-nvptx64-nvidia-cuda-24.0.0_pre20260919

Description

OpenMP target library for nvptx64 devic

Added to portage

2026-09-19

openmp-spirv64-intel - 24.0.0_pre20260919
Ebuild name:

llvm-runtimes/openmp-spirv64-intel-24.0.0_pre20260919

Description

OpenMP target library for spirv64 Intel devic

Added to portage

2026-09-19

openpgp-keys-michaelrsweet - 20260917
Ebuild name:

sec-keys/openpgp-keys-michaelrsweet-20260917

Description

OpenPGP keys used by Michael R Sweet

Added to portage

2026-09-19

parse - 1.22.2
Ebuild name:

dev-python/parse-1.22.2

Description

Parse strings using a specification based on the Python format() syntax

Added to portage

2026-09-19

pdfio - 1.6.5
Ebuild name:

app-text/pdfio-1.6.5

Description

Simple C library for reading and writing PDFs

Added to portage

2026-09-19

pdfio - 9999
Ebuild name:

app-text/pdfio-9999

Description

Simple C library for reading and writing PDFs

Added to portage

2026-09-19

pfl - 3.6.0
Ebuild name:

app-portage/pfl-3.6.0

Description

Searchable online file/package database for Gentoo

Added to portage

2026-09-19

platformdirs - 4.11.11
Ebuild name:

dev-python/platformdirs-4.11.11

Description

A small Python module for determining appropriate platform-specific

Added to portage

2026-09-19

polly - 24.0.0_pre20260919
Ebuild name:

llvm-core/polly-24.0.0_pre20260919

Description

Polyhedral optimizations for LLVM

Added to portage

2026-09-19

powerdevil - 6.7.5-r1
Ebuild name:

kde-plasma/powerdevil-6.7.5-r1

Description

Power management for KDE Plasma Shell

Added to portage

2026-09-19

psycopg - 3.3.6
Ebuild name:

dev-python/psycopg-3.3.6

Description

PostgreSQL database adapter for Python

Added to portage

2026-09-19

pv - 1.12.0
Ebuild name:

sys-apps/pv-1.12.0

Description

Pipe Viewer a tool for monitoring the progress of data through a pipe

Added to portage

2026-09-19

python-slugify - 9.1.0
Ebuild name:

dev-python/python-slugify-9.1.0

Description

A Python Slugify application that handles Unicode

Added to portage

2026-09-19

pyzotero - 1.15.2
Ebuild name:

dev-python/pyzotero-1.15.2

Description

A Python client for the Zotero API

Added to portage

2026-09-19

qlog - 0.53.0
Ebuild name:

media-radio/qlog-0.53.0

Description

Amateur radio logbook software

Added to portage

2026-09-19

sphinx-gallery - 0.22.1
Ebuild name:

dev-python/sphinx-gallery-0.22.1

Description

Sphinx extension to automatically generate an examples gallery

Added to portage

2026-09-19

spidermonkey - 140.16.0
Ebuild name:

dev-lang/spidermonkey-140.16.0

Description

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

Added to portage

2026-09-19

spidermonkey - 153.3.0
Ebuild name:

dev-lang/spidermonkey-153.3.0

Description

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

Added to portage

2026-09-19

sqlmap - 1.10.9
Ebuild name:

dev-db/sqlmap-1.10.9

Description

An automatic SQL injection and database takeover tool

Added to portage

2026-09-19

telnet-bsd - 1.2-r6
Ebuild name:

net-misc/telnet-bsd-1.2-r6

Description

Telnet and telnetd ported from OpenBSD with IPv6 support

Added to portage

2026-09-19

tox - 4.62.0
Ebuild name:

dev-python/tox-4.62.0

Description

virtualenv-based automation of test activities

Added to portage

2026-09-19

ttf - 1.1.0
Ebuild name:

media-libs/ttf-1.1.0

Description

Simple C library for using TrueType and OpenType font files

Added to portage

2026-09-19

ttf - 9999
Ebuild name:

media-libs/ttf-9999

Description

Simple C library for using TrueType and OpenType font files

Added to portage

2026-09-19

unibilium - 2.1.4
Ebuild name:

dev-libs/unibilium-2.1.4

Description

A very basic terminfo library

Added to portage

2026-09-19

uv - 0.12.17
Ebuild name:

dev-python/uv-0.12.17

Description

A Python package installer and resolver, written in Rust

Added to portage

2026-09-19

uv-build - 0.12.17
Ebuild name:

dev-python/uv-build-0.12.17

Description

PEP517 uv build backend

Added to portage

2026-09-19

virtualenv - 21.7.15
Ebuild name:

dev-python/virtualenv-21.7.15

Description

Virtual Python Environment builder

Added to portage

2026-09-19

volatility3 - 2.28.2
Ebuild name:

app-forensics/volatility3-2.28.2

Description

Framework for analyzing volatile memory

Added to portage

2026-09-19

wine-staging - 11.18
Ebuild name:

app-emulation/wine-staging-11.18

Description

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

Added to portage

2026-09-19

wine-vanilla - 11.18
Ebuild name:

app-emulation/wine-vanilla-11.18

Description

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

Added to portage

2026-09-19

wordpress - 6.4.11
Ebuild name:

www-apps/wordpress-6.4.11

Description

Wordpress PHP and MySQL based content management system (CMS)

Added to portage

2026-09-19

wordpress - 6.5.11
Ebuild name:

www-apps/wordpress-6.5.11

Description

Wordpress PHP and MySQL based content management system (CMS)

Added to portage

2026-09-19

wordpress - 6.6.8
Ebuild name:

www-apps/wordpress-6.6.8

Description

Wordpress PHP and MySQL based content management system (CMS)

Added to portage

2026-09-19

wordpress - 6.7.8
Ebuild name:

www-apps/wordpress-6.7.8

Description

Wordpress PHP and MySQL based content management system (CMS)

Added to portage

2026-09-19

wordpress - 6.8.9
Ebuild name:

www-apps/wordpress-6.8.9

Description

Wordpress PHP and MySQL based content management system (CMS)

Added to portage

2026-09-19

wordpress - 6.9.8
Ebuild name:

www-apps/wordpress-6.9.8

Description

Wordpress PHP and MySQL based content management system (CMS)

Added to portage

2026-09-19

wordpress - 7.0.5
Ebuild name:

www-apps/wordpress-7.0.5

Description

Wordpress PHP and MySQL based content management system (CMS)

Added to portage

2026-09-19

xmlstarlet - 1.7.0
Ebuild name:

app-text/xmlstarlet-1.7.0

Description

A set of tools to transform, query, validate, and edit XML documents

Added to portage

2026-09-19

yaspin - 3.5.1
Ebuild name:

dev-python/yaspin-3.5.1

Description

Yet Another Terminal Spinner

Added to portage

2026-09-19

rdf newsfeed | rss newsfeed | Atom newsfeed
Copyright 2004-2025 Sascha Nitsch Unternehmensberatung GmbH
- Copyright and legal notices -
Time to create this page: 60.9 ms