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:

80458

userrating:

average rating: 1.2 (50 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.2 (24 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-08-28
alembic - 1.16.5
Ebuild name:

dev-python/alembic-1.16.5

Description

Database migrations tool, written by the author of SQLAlchemy

Added to portage

2025-08-28

awscli - 1.42.19
Ebuild name:

app-admin/awscli-1.42.19

Description

Universal Command Line Environment for AWS

Added to portage

2025-08-28

boto3 - 1.40.19
Ebuild name:

dev-python/boto3-1.40.19

Description

The AWS SDK for Python

Added to portage

2025-08-28

botocore - 1.40.19
Ebuild name:

dev-python/botocore-1.40.19

Description

Low-level, data-driven core of boto 3

Added to portage

2025-08-28

chrome-binary-plugins - 139.0.7258.154
Ebuild name:

www-plugins/chrome-binary-plugins-139.0.7258.154

Description

Binary plugins from Google Chrome for use in Chrom

Added to portage

2025-08-28

chrome-binary-plugins - 140.0.7339.41_beta
Ebuild name:

www-plugins/chrome-binary-plugins-140.0.7339.41_beta

Description

Binary plugins from Google Chrome for use in C

Added to portage

2025-08-28

chromium - 139.0.7258.154
Ebuild name:

www-client/chromium-139.0.7258.154

Description

Open-source version of Google Chrome web browser

Added to portage

2025-08-28

chrony - 4.8
Ebuild name:

net-misc/chrony-4.8

Description

NTP client and server programs

Added to portage

2025-08-28

claude-code - 1.0.93
Ebuild name:

dev-util/claude-code-1.0.93

Description

Claude Code - an agentic coding tool by Anthropic

Added to portage

2025-08-28

dnscrypt-proxy - 2.1.13
Ebuild name:

net-dns/dnscrypt-proxy-2.1.13

Description

Flexible DNS proxy, with support for encrypted DNS protocols

Added to portage

2025-08-28

dustrac - 2.1.1
Ebuild name:

games-sports/dustrac-2.1.1

Description

Tile-based, cross-platform 2D racing game

Added to portage

2025-08-28

firefox-bin - 142.0.1
Ebuild name:

www-client/firefox-bin-142.0.1

Description

Firefox Web Browser

Added to portage

2025-08-28

flameshot - 13.1.0
Ebuild name:

media-gfx/flameshot-13.1.0

Description

Powerful yet simple to use screenshot software

Added to portage

2025-08-28

fonttools - 4.59.2
Ebuild name:

dev-python/fonttools-4.59.2

Description

Library for manipulating TrueType, OpenType, AFM and Type1 fonts

Added to portage

2025-08-28

google-chrome - 139.0.7258.154
Ebuild name:

www-client/google-chrome-139.0.7258.154

Description

The web browser from Google

Added to portage

2025-08-28

google-chrome-beta - 140.0.7339.41
Ebuild name:

www-client/google-chrome-beta-140.0.7339.41

Description

The web browser from Google

Added to portage

2025-08-28

google-chrome-unstable - 141.0.7367.0
Ebuild name:

www-client/google-chrome-unstable-141.0.7367.0

Description

The web browser from Google

Added to portage

2025-08-28

hashcat - 7.1.2
Ebuild name:

app-crypt/hashcat-7.1.2

Description

World's fastest and most advanced password recovery utility

Added to portage

2025-08-28

hypothesis - 6.138.6
Ebuild name:

dev-python/hypothesis-6.138.6

Description

A library for property based testing

Added to portage

2025-08-28

joblib - 1.5.2
Ebuild name:

dev-python/joblib-1.5.2

Description

Tools to provide lightweight pipelining in Python

Added to portage

2025-08-28

jupyter-lsp - 2.3.0
Ebuild name:

dev-python/jupyter-lsp-2.3.0

Description

Multi-Language Server WebSocket proxy for Jupyter Notebook/Lab

Added to portage

2025-08-28

libthreadar - 1.6.1
Ebuild name:

dev-libs/libthreadar-1.6.1

Description

Threading library used by dar archiver

Added to portage

2025-08-28

loky - 3.5.6
Ebuild name:

dev-python/loky-3.5.6

Description

Robust and reusable Executor for joblib

Added to portage

2025-08-28

microsoft-edge - 139.0.3405.119
Ebuild name:

www-client/microsoft-edge-139.0.3405.119

Description

The web browser from Microsoft

Added to portage

2025-08-28

microsoft-edge-beta - 140.0.3485.31
Ebuild name:

www-client/microsoft-edge-beta-140.0.3485.31

Description

The web browser from Microsoft

Added to portage

2025-08-28

microsoft-edge-dev - 141.0.3514.0
Ebuild name:

www-client/microsoft-edge-dev-141.0.3514.0

Description

The web browser from Microsoft

Added to portage

2025-08-28

nftables - 1.1.5
Ebuild name:

net-firewall/nftables-1.1.5

Description

Linux kernel firewall, NAT and packet mangling tools

Added to portage

2025-08-28

opera - 120.0.5543.201
Ebuild name:

www-client/opera-120.0.5543.201

Description

A fast and secure web browser

Added to portage

2025-08-28

projectile - 2.8.0-r1
Ebuild name:

app-emacs/projectile-2.8.0-r1

Description

A project interaction library for Emacs

Added to portage

2025-08-28

prompt-toolkit - 3.0.52
Ebuild name:

dev-python/prompt-toolkit-3.0.52

Description

Building powerful interactive command lines in Python

Added to portage

2025-08-28

pyspelling - 2.11
Ebuild name:

dev-python/pyspelling-2.11

Description

Spell checker automation tool

Added to portage

2025-08-28

rapidfuzz - 3.14.0
Ebuild name:

dev-python/rapidfuzz-3.14.0

Description

Rapid fuzzy string matching in Python using various string metrics

Added to portage

2025-08-28

rapidfuzz-cpp - 3.3.3
Ebuild name:

dev-cpp/rapidfuzz-cpp-3.3.3

Description

Rapid fuzzy string matching in C++

Added to portage

2025-08-28

rpds-py - 0.27.1
Ebuild name:

dev-python/rpds-py-0.27.1

Description

Python bindings to Rust's persistent data structures (rpds)

Added to portage

2025-08-28

sedlex - 3.6
Ebuild name:

dev-ml/sedlex-3.6

Description

Added to portage

2025-08-28

soupsieve - 2.8
Ebuild name:

dev-python/soupsieve-2.8

Description

A modern CSS selector implementation for BeautifulSoup

Added to portage

2025-08-28

spdx_licenses - 1.4.0
Ebuild name:

dev-ml/spdx_licenses-1.4.0

Description

A library providing a strict SPDX License Expression parser

Added to portage

2025-08-28

sqlglot - 27.9.0
Ebuild name:

dev-python/sqlglot-27.9.0

Description

An easily customizable SQL parser and transpiler

Added to portage

2025-08-28

stdcompat - 21.1
Ebuild name:

dev-ml/stdcompat-21.1

Description

Compatibility module for OCaml standard library

Added to portage

2025-08-28

stripe - 12.5.0
Ebuild name:

dev-python/stripe-12.5.0

Description

Stripe Python bindings

Added to portage

2025-08-28

tifffile - 2025.8.28
Ebuild name:

dev-python/tifffile-2025.8.28

Description

Read and write TIFF files

Added to portage

2025-08-28

vivaldi-snapshot - 7.6.3791.3
Ebuild name:

www-client/vivaldi-snapshot-7.6.3791.3

Description

A browser for our friends

Added to portage

2025-08-28

wayfire - 0.10.0
Ebuild name:

gui-wm/wayfire-0.10.0

Description

compiz like 3D wayland compositor

Added to portage

2025-08-28

wayfire-plugins-extra - 0.10.0
Ebuild name:

gui-libs/wayfire-plugins-extra-0.10.0

Description

extra plugins for wayfire

Added to portage

2025-08-28

wcm - 0.10.0
Ebuild name:

gui-apps/wcm-0.10.0

Description

Wayfire Config Manager

Added to portage

2025-08-28

wf-config - 0.10.0
Ebuild name:

gui-libs/wf-config-0.10.0

Description

library for managing wayfire configuration files

Added to portage

2025-08-28

wf-shell - 0.10.0
Ebuild name:

gui-apps/wf-shell-0.10.0

Description

Compiz like 3D wayland compositor

Added to portage

2025-08-28

yt-dlp - 2025.08.27
Ebuild name:

net-misc/yt-dlp-2025.08.27

Description

youtube-dl fork with additional features and fixes

Added to portage

2025-08-28

yubihsm-shell - 2.6.0
Ebuild name:

app-crypt/yubihsm-shell-2.6.0

Description

Components used to interact with the YubiHSM 2

Added to portage

2025-08-28

yyjson - 0.12.0
Ebuild name:

dev-libs/yyjson-0.12.0

Description

Fast JSON library in C

Added to portage

2025-08-28

2025-08-27
algol68g - 3.8.0
Ebuild name:

dev-lang/algol68g-3.8.0

Description

Algol 68 Genie compiler-interpreter

Added to portage

2025-08-27

asclock - 2.0.12-r5
Ebuild name:

x11-plugins/asclock-2.0.12-r5

Description

Clock applet for AfterStep

Added to portage

2025-08-27

authlib - 1.6.3
Ebuild name:

dev-python/authlib-1.6.3

Description

A Python library in building OAuth and OpenID Connect servers and clients

Added to portage

2025-08-27

awscli - 1.42.18
Ebuild name:

app-admin/awscli-1.42.18

Description

Universal Command Line Environment for AWS

Added to portage

2025-08-27

boto3 - 1.40.18
Ebuild name:

dev-python/boto3-1.40.18

Description

The AWS SDK for Python

Added to portage

2025-08-27

botocore - 1.40.18
Ebuild name:

dev-python/botocore-1.40.18

Description

Low-level, data-driven core of boto 3

Added to portage

2025-08-27

cfn-lint - 1.39.1
Ebuild name:

dev-python/cfn-lint-1.39.1

Description

CloudFormation Linter

Added to portage

2025-08-27

clang - 21.1.0
Ebuild name:

dev-python/clang-21.1.0

Description

Python bindings for llvm-core/clang

Added to portage

2025-08-27

clang - 21.1.0
Ebuild name:

llvm-core/clang-21.1.0

Description

C language family frontend for LLVM

Added to portage

2025-08-27

clang-common - 21.1.0
Ebuild name:

llvm-core/clang-common-21.1.0

Description

Common files shared between multiple slots of clang

Added to portage

2025-08-27

clang-runtime - 21.1.0
Ebuild name:

llvm-core/clang-runtime-21.1.0

Description

Meta-ebuild for clang runtime libraries

Added to portage

2025-08-27

compiler-rt - 21.1.0
Ebuild name:

llvm-runtimes/compiler-rt-21.1.0

Description

Compiler runtime library for clang (built-in part)

Added to portage

2025-08-27

compiler-rt-sanitizers - 21.1.0
Ebuild name:

llvm-runtimes/compiler-rt-sanitizers-21.1.0

Description

Compiler runtime libraries for clang (sanitizers & xray

Added to portage

2025-08-27

discord - 0.0.107
Ebuild name:

net-im/discord-0.0.107

Description

All-in-one voice and text chat for gamers

Added to portage

2025-08-27

email-validator - 2.3.0
Ebuild name:

dev-python/email-validator-2.3.0

Description

A robust email syntax and deliverability validation library

Added to portage

2025-08-27

fakefs - 3.0.2
Ebuild name:

dev-ruby/fakefs-3.0.2

Description

A fake filesystem. Use it in your tests

Added to portage

2025-08-27

faker - 37.6.0
Ebuild name:

dev-python/faker-37.6.0

Description

A Python package that generates fake data for you

Added to portage

2025-08-27

fd - 10.3.0
Ebuild name:

sys-apps/fd-10.3.0

Description

Alternative to find that provides sensible defaults for 80% of the use cases

Added to portage

2025-08-27

flang - 21.1.0
Ebuild name:

llvm-core/flang-21.1.0

Description

LLVM's Fortran frontend

Added to portage

2025-08-27

flang-rt - 21.1.0
Ebuild name:

llvm-runtimes/flang-rt-21.1.0

Description

LLVM's Fortran runtime

Added to portage

2025-08-27

fonttools - 4.59.0-r1
Ebuild name:

dev-python/fonttools-4.59.0-r1

Description

Library for manipulating TrueType, OpenType, AFM and Type1 fonts

Added to portage

2025-08-27

fonttools - 4.59.1-r1
Ebuild name:

dev-python/fonttools-4.59.1-r1

Description

Library for manipulating TrueType, OpenType, AFM and Type1 fonts

Added to portage

2025-08-27

fractal - 12.1
Ebuild name:

net-im/fractal-12.1

Description

Matrix messaging app for GNOME written in Rust

Added to portage

2025-08-27

geos - 3.14.0
Ebuild name:

sci-libs/geos-3.14.0

Description

Geometry engine library for Geographic Information Systems

Added to portage

2025-08-27

griffe - 1.13.0
Ebuild name:

dev-python/griffe-1.13.0

Description

Signature generator for Python programs

Added to portage

2025-08-27

harfbuzz - 11.4.4
Ebuild name:

media-libs/harfbuzz-11.4.4

Description

An OpenType text shaping engine

Added to portage

2025-08-27

kubo - 0.36.0
Ebuild name:

net-p2p/kubo-0.36.0

Description

Main implementation of IPFS

Added to portage

2025-08-27

libclc - 21.1.0
Ebuild name:

llvm-core/libclc-21.1.0

Description

OpenCL C library

Added to portage

2025-08-27

libcxx - 21.1.0
Ebuild name:

llvm-runtimes/libcxx-21.1.0

Description

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

Added to portage

2025-08-27

libcxxabi - 21.1.0
Ebuild name:

llvm-runtimes/libcxxabi-21.1.0

Description

Low level support for a standard C++ library

Added to portage

2025-08-27

libgcc - 21.1.0
Ebuild name:

llvm-runtimes/libgcc-21.1.0

Description

Compiler runtime library for clang, compatible with libgcc_s

Added to portage

2025-08-27

libunwind - 21.1.0
Ebuild name:

llvm-runtimes/libunwind-21.1.0

Description

C++ runtime stack unwinder from LLVM

Added to portage

2025-08-27

lit - 21.1.0
Ebuild name:

dev-python/lit-21.1.0

Description

A stand-alone install of the LLVM suite testing tool

Added to portage

2025-08-27

lld - 21.1.0
Ebuild name:

llvm-core/lld-21.1.0

Description

The LLVM linker (link editor)

Added to portage

2025-08-27

lldb - 21.1.0
Ebuild name:

llvm-core/lldb-21.1.0

Description

The LLVM debugger

Added to portage

2025-08-27

llvm - 21.1.0
Ebuild name:

dev-ml/llvm-21.1.0

Description

OCaml bindings for LLVM

Added to portage

2025-08-27

llvm - 21.1.0
Ebuild name:

llvm-core/llvm-21.1.0

Description

Low Level Virtual Machine

Added to portage

2025-08-27

llvm-common - 21.1.0
Ebuild name:

llvm-core/llvm-common-21.1.0

Description

Common files shared between multiple slots of LLVM

Added to portage

2025-08-27

maturin - 1.9.4
Ebuild name:

dev-util/maturin-1.9.4

Description

Build and publish crates with pyo3, rust-cpython and cffi bindings

Added to portage

2025-08-27

mkdocs-autorefs - 1.4.3
Ebuild name:

dev-python/mkdocs-autorefs-1.4.3

Description

Automatically link across pages in MkDoc

Added to portage

2025-08-27

mkdocstrings-python - 1.18.0
Ebuild name:

dev-python/mkdocstrings-python-1.18.0

Description

Python handler for dev-python/mkdocstrings

Added to portage

2025-08-27

mlir - 21.1.0
Ebuild name:

llvm-core/mlir-21.1.0

Description

Multi-Level Intermediate Representation (library only)

Added to portage

2025-08-27

nginx - 1.28.0-r1
Ebuild name:

www-servers/nginx-1.28.0-r1

Description

Added to portage

2025-08-27

nginx - 1.29.0-r3
Ebuild name:

www-servers/nginx-1.29.0-r3

Description

Added to portage

2025-08-27

nginx - 1.29.1-r1
Ebuild name:

www-servers/nginx-1.29.1-r1

Description

Added to portage

2025-08-27

nginx-unit - 1.34.2-r1
Ebuild name:

www-servers/nginx-unit-1.34.2-r1

Description

Dynamic web and application server

Added to portage

2025-08-27

nuitka - 2.7.13
Ebuild name:

dev-python/nuitka-2.7.13

Description

Python to native compiler

Added to portage

2025-08-27

num - 1.6-r1
Ebuild name:

dev-ml/num-1.6-r1

Description

Library for arbitrary-precision integer and rational arithmetic

Added to portage

2025-08-27

offload - 21.1.0
Ebuild name:

llvm-runtimes/offload-21.1.0

Description

OpenMP offloading support

Added to portage

2025-08-27

openmp - 21.1.0
Ebuild name:

llvm-runtimes/openmp-21.1.0

Description

OpenMP runtime library for LLVM/clang compiler

Added to portage

2025-08-27

orjson - 3.11.3
Ebuild name:

dev-python/orjson-3.11.3

Description

Fast, correct Python JSON library supporting dataclasses, datetimes, and n

Added to portage

2025-08-27

pbs-installer - 2025.08.27
Ebuild name:

dev-python/pbs-installer-2025.08.27

Description

Installer for Python Build Standalone

Added to portage

2025-08-27

pkg-config - 1.6.3
Ebuild name:

dev-ruby/pkg-config-1.6.3

Description

A pkg-config implementation by Ruby

Added to portage

2025-08-27

platformdirs - 4.4.0
Ebuild name:

dev-python/platformdirs-4.4.0

Description

A small Python module for determining appropriate platform-specific d

Added to portage

2025-08-27

polly - 21.1.0
Ebuild name:

llvm-core/polly-21.1.0

Description

Polyhedral optimizations for LLVM

Added to portage

2025-08-27

postgis - 3.6.0_rc2
Ebuild name:

dev-db/postgis-3.6.0_rc2

Description

Geographic Objects for PostgreSQL

Added to portage

2025-08-27

ppxlib - 0.36.1-r1
Ebuild name:

dev-ml/ppxlib-0.36.1-r1

Description

Base library and tools for ppx rewriters

Added to portage

2025-08-27

proj - 9.6.2
Ebuild name:

sci-libs/proj-9.6.2

Description

PROJ coordinate transformation software

Added to portage

2025-08-27

projectile - 2.9.1
Ebuild name:

app-emacs/projectile-2.9.1

Description

A project interaction library for Emacs

Added to portage

2025-08-27

proofgeneral - 4.5
Ebuild name:

app-emacs/proofgeneral-4.5

Description

A generic interface for proof assistants

Added to portage

2025-08-27

python-lsp-server - 1.13.1
Ebuild name:

dev-python/python-lsp-server-1.13.1

Description

Python Language Server for the Language Server Protocol

Added to portage

2025-08-27

qdirstat - 1.9_p20250726-r1
Ebuild name:

sys-apps/qdirstat-1.9_p20250726-r1

Description

Qt-based directory statistics

Added to portage

2025-08-27

qmmp - 2.2.8
Ebuild name:

media-sound/qmmp-2.2.8

Description

Qt-based audio player with winamp/xmms skins support

Added to portage

2025-08-27

recog - 3.1.21
Ebuild name:

dev-ruby/recog-3.1.21

Description

Pattern recognition for hosts, services, and content

Added to portage

2025-08-27

rofi-calc - 2.4.0
Ebuild name:

x11-misc/rofi-calc-2.4.0

Description

Do live calculations in rofi

Added to portage

2025-08-27

rubyzip - 3.0.2
Ebuild name:

dev-ruby/rubyzip-3.0.2

Description

A ruby library for reading and writing zip files

Added to portage

2025-08-27

sent - 1_p20230110
Ebuild name:

x11-misc/sent-1_p20230110

Description

Simple plaintext presentation tool

Added to portage

2025-08-27

spacefm - 1.0.6-r5
Ebuild name:

x11-misc/spacefm-1.0.6-r5

Description

A multi-panel tabbed file manager

Added to portage

2025-08-27

sus - 0.34.0
Ebuild name:

dev-ruby/sus-0.34.0

Description

A fast and scalable test runner

Added to portage

2025-08-27

trove-classifiers - 2025.8.26.11
Ebuild name:

dev-python/trove-classifiers-2025.8.26.11

Description

Canonical source for classifiers on PyPI (pypi.org)

Added to portage

2025-08-27

umbrello - 25.11.70_pre20250827
Ebuild name:

kde-apps/umbrello-25.11.70_pre20250827

Description

KDE UML Modeller

Added to portage

2025-08-27

vitables - 3.1.0
Ebuild name:

sci-misc/vitables-3.1.0

Description

A graphical tool for browsing / editing files in both PyTables and HDF5 for

Added to portage

2025-08-27

vivaldi-snapshot - 7.6.3787.3
Ebuild name:

www-client/vivaldi-snapshot-7.6.3787.3

Description

A browser for our friends

Added to portage

2025-08-27

waypipe - 0.9.2-r1
Ebuild name:

gui-apps/waypipe-0.9.2-r1

Description

Transparent network proxy for Wayland compositors

Added to portage

2025-08-27

xfsprogs - 6.16.0
Ebuild name:

sys-fs/xfsprogs-6.16.0

Description

XFS filesystem utilities

Added to portage

2025-08-27

zfs - 2.3.4
Ebuild name:

sys-fs/zfs-2.3.4

Description

Userland utilities for ZFS Linux kernel module

Added to portage

2025-08-27

zfs - 2.4.0_rc1
Ebuild name:

sys-fs/zfs-2.4.0_rc1

Description

Userland utilities for ZFS Linux kernel module

Added to portage

2025-08-27

zfs-kmod - 2.3.4
Ebuild name:

sys-fs/zfs-kmod-2.3.4

Description

Linux ZFS kernel module for sys-fs/zfs

Added to portage

2025-08-27

zfs-kmod - 2.4.0_rc1
Ebuild name:

sys-fs/zfs-kmod-2.4.0_rc1

Description

Linux ZFS kernel module for sys-fs/zfs

Added to portage

2025-08-27

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.1 ms