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:

81703

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.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-10-27
bcmail - 1.82
Ebuild name:

dev-java/bcmail-1.82

Description

The Bouncy Castle Java S/MIME APIs for handling S/MIME protocols

Added to portage

2025-10-27

bcpg - 1.82
Ebuild name:

dev-java/bcpg-1.82

Description

Java cryptography APIs

Added to portage

2025-10-27

bcpkix - 1.82
Ebuild name:

dev-java/bcpkix-1.82

Description

Java APIs for CMS, PKCS, EAC, TSP, CMP, CRMF, OCSP, and certificate generation

Added to portage

2025-10-27

bcprov - 1.82
Ebuild name:

dev-java/bcprov-1.82

Description

Java cryptography APIs

Added to portage

2025-10-27

bcutil - 1.82
Ebuild name:

dev-java/bcutil-1.82

Description

Java APIs for ASN.1 extension and utility APIs used to support bcpkix and bctl

Added to portage

2025-10-27

biglybt - 3.9.0.0-r1
Ebuild name:

net-p2p/biglybt-3.9.0.0-r1

Description

Feature-filled Bittorrent client based on Azureus

Added to portage

2025-10-27

cairosvg - 2.8.2-r1
Ebuild name:

media-gfx/cairosvg-2.8.2-r1

Description

CLI and library to export SVG to PDF, PostScript, and PNG

Added to portage

2025-10-27

cargo-nextest - 0.9.108
Ebuild name:

dev-util/cargo-nextest-0.9.108

Description

Next-generation test runner for Rust

Added to portage

2025-10-27

cargo-tarpaulin - 0.34.1
Ebuild name:

dev-util/cargo-tarpaulin-0.34.1

Description

Cargo-Tarpaulin is a tool to determine code coverage achieved via t

Added to portage

2025-10-27

click-plugins - 1.1.1.2
Ebuild name:

dev-python/click-plugins-1.1.1.2

Description

Module for click to enable registering CLI commands via entry poin

Added to portage

2025-10-27

confuse - 2.0.1-r1
Ebuild name:

dev-python/confuse-2.0.1-r1

Description

A configuration library for Python that uses YAML

Added to portage

2025-10-27

courier-imap - 5.3.1
Ebuild name:

net-mail/courier-imap-5.3.1

Description

An IMAP daemon designed specifically for maildirs

Added to portage

2025-10-27

csvkit - 2.1.0-r1
Ebuild name:

dev-python/csvkit-2.1.0-r1

Description

A suite of utilities for converting to and working with CSV

Added to portage

2025-10-27

gcc - 16.0.0_p20251026
Ebuild name:

sys-devel/gcc-16.0.0_p20251026

Description

The GNU Compiler Collection

Added to portage

2025-10-27

git-sources - 6.18_rc3
Ebuild name:

sys-kernel/git-sources-6.18_rc3

Description

The very latest -git version of the Linux kernel

Added to portage

2025-10-27

joycond - 0.1.0_p20250412
Ebuild name:

games-util/joycond-0.1.0_p20250412

Description

Daemon that uses hid-nintendo evdev devices to implement joycon

Added to portage

2025-10-27

jupyter-console - 6.6.3-r1
Ebuild name:

dev-python/jupyter-console-6.6.3-r1

Description

A terminal-based console frontend for Jupyter kernels

Added to portage

2025-10-27

jupyter-lsp - 2.3.0-r1
Ebuild name:

dev-python/jupyter-lsp-2.3.0-r1

Description

Multi-Language Server WebSocket proxy for Jupyter Notebook/Lab

Added to portage

2025-10-27

jupyter-server-mathjax - 0.2.6-r1
Ebuild name:

dev-python/jupyter-server-mathjax-0.2.6-r1

Description

MathJax resources as a Jupyter Server Extension

Added to portage

2025-10-27

libblockdev - 3.4.0
Ebuild name:

sys-libs/libblockdev-3.4.0

Description

Library for manipulating block devices

Added to portage

2025-10-27

libnbd - 1.22.5-r1
Ebuild name:

sys-libs/libnbd-1.22.5-r1

Description

NBD client library in userspace

Added to portage

2025-10-27

libnbd - 1.23.4-r2
Ebuild name:

sys-libs/libnbd-1.23.4-r2

Description

NBD client library in userspace

Added to portage

2025-10-27

libnbd - 1.23.9-r1
Ebuild name:

sys-libs/libnbd-1.23.9-r1

Description

NBD client library in userspace

Added to portage

2025-10-27

mkdocs-htmlproofer-plugin - 1.4.0
Ebuild name:

dev-python/mkdocs-htmlproofer-plugin-1.4.0

Description

A MkDocs plugin that validates URLs in rendered HTML fil

Added to portage

2025-10-27

musescore - 4.6.3
Ebuild name:

media-sound/musescore-4.6.3

Description

WYSIWYG Music Score Typesetter

Added to portage

2025-10-27

onlyoffice-bin - 9.1.0
Ebuild name:

app-office/onlyoffice-bin-9.1.0

Description

A free and open source office and productivity suite (binary versio

Added to portage

2025-10-27

openbsd-netcat - 1.234_p1
Ebuild name:

net-analyzer/openbsd-netcat-1.234_p1

Description

The OpenBSD network swiss army knife

Added to portage

2025-10-27

pgLatLon - 0.16
Ebuild name:

dev-db/pgLatLon-0.16

Description

Spatial database extension for the PostgreSQL

Added to portage

2025-10-27

php - 8.3.27
Ebuild name:

dev-lang/php-8.3.27

Description

The PHP language runtime engine

Added to portage

2025-10-27

php - 8.4.14
Ebuild name:

dev-lang/php-8.4.14

Description

The PHP language runtime engine

Added to portage

2025-10-27

postfix - 3.10.5
Ebuild name:

mail-mta/postfix-3.10.5

Description

A fast and secure drop-in replacement for sendmail

Added to portage

2025-10-27

postfix - 3.11_pre20251026
Ebuild name:

mail-mta/postfix-3.11_pre20251026

Description

A fast and secure drop-in replacement for sendmail

Added to portage

2025-10-27

prowlarr-bin - 2.1.5.5216
Ebuild name:

www-apps/prowlarr-bin-2.1.5.5216

Description

An indexer manager/proxy to integrate with your various PVR apps

Added to portage

2025-10-27

pysnmp - 7.1.22
Ebuild name:

dev-python/pysnmp-7.1.22

Description

Python SNMP library

Added to portage

2025-10-27

radarr-bin - 6.0.3.10276
Ebuild name:

www-apps/radarr-bin-6.0.3.10276

Description

A fork of Sonarr to work with movies a la Couchpotato

Added to portage

2025-10-27

redo+ - 1.19
Ebuild name:

app-emacs/redo+-1.19

Description

Redo/undo system for Emacs

Added to portage

2025-10-27

sbc - 2.1
Ebuild name:

media-libs/sbc-2.1

Description

Audio codec to connect bluetooth HQ audio devices as headphones or loudspeakers

Added to portage

2025-10-27

serpent - 1.42
Ebuild name:

dev-python/serpent-1.42

Description

A simple serialization library based on ast.literal_eval

Added to portage

2025-10-27

signal-desktop-bin - 7.75.1
Ebuild name:

net-im/signal-desktop-bin-7.75.1

Description

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

Added to portage

2025-10-27

tarlz - 0.28.1
Ebuild name:

app-arch/tarlz-0.28.1

Description

A parallel archiver combining tar and lzip

Added to portage

2025-10-27

vivaldi-snapshot - 7.7.3845.3
Ebuild name:

www-client/vivaldi-snapshot-7.7.3845.3

Description

A browser for our friends

Added to portage

2025-10-27

zope-schema - 8.1
Ebuild name:

dev-python/zope-schema-8.1

Description

Zope schema Architecture

Added to portage

2025-10-27

2025-10-26
action_text-trix - 2.1.15
Ebuild name:

dev-ruby/action_text-trix-2.1.15

Description

A rich text editor for everyday writing

Added to portage

2025-10-26

actioncable - 8.1.0
Ebuild name:

dev-ruby/actioncable-8.1.0

Description

Integrated WebSockets for Rails

Added to portage

2025-10-26

actionmailbox - 8.1.0
Ebuild name:

dev-ruby/actionmailbox-8.1.0

Description

Framework for designing email-service layers

Added to portage

2025-10-26

actionmailer - 8.1.0
Ebuild name:

dev-ruby/actionmailer-8.1.0

Description

Framework for designing email-service layers

Added to portage

2025-10-26

actionpack - 8.1.0
Ebuild name:

dev-ruby/actionpack-8.1.0

Description

Eases web-request routing, handling, and response

Added to portage

2025-10-26

actiontext - 8.1.0
Ebuild name:

dev-ruby/actiontext-8.1.0

Description

Edit and display rich text in Rails applications

Added to portage

2025-10-26

actionview - 8.1.0
Ebuild name:

dev-ruby/actionview-8.1.0

Description

Simple, battle-tested conventions and helpers for building web pages

Added to portage

2025-10-26

activejob - 8.1.0
Ebuild name:

dev-ruby/activejob-8.1.0

Description

Job framework with pluggable queues

Added to portage

2025-10-26

activemodel - 8.1.0
Ebuild name:

dev-ruby/activemodel-8.1.0

Description

Toolkit for building modeling frameworks like Active Record and Active R

Added to portage

2025-10-26

activerecord - 8.1.0
Ebuild name:

dev-ruby/activerecord-8.1.0

Description

Implements the ActiveRecord pattern (Fowler, PoEAA) for ORM

Added to portage

2025-10-26

activestorage - 8.1.0
Ebuild name:

dev-ruby/activestorage-8.1.0

Description

Attach cloud and local files in Rails applications

Added to portage

2025-10-26

activesupport - 8.1.0
Ebuild name:

dev-ruby/activesupport-8.1.0

Description

Utility Classes and Extension to the Standard Library

Added to portage

2025-10-26

atuin - 18.10.0
Ebuild name:

app-shells/atuin-18.10.0

Description

Shell history manager supporting encrypted synchronisation

Added to portage

2025-10-26

b2sdk - 2.10.1
Ebuild name:

dev-python/b2sdk-2.10.1

Description

Library to access Backblaze B2 cloud storage

Added to portage

2025-10-26

batteries - 3.10.0
Ebuild name:

dev-ml/batteries-3.10.0

Description

A community-maintained standard library extension

Added to portage

2025-10-26

beartype - 0.22.4
Ebuild name:

dev-python/beartype-0.22.4

Description

Unbearably fast runtime type checking in pure Python

Added to portage

2025-10-26

berkeleydb - 18.1.15
Ebuild name:

dev-python/berkeleydb-18.1.15

Description

Python bindings for Oracle Berkeley DB

Added to portage

2025-10-26

boxfort - 0.1.5
Ebuild name:

dev-libs/boxfort-0.1.5

Description

Convenient & cross-platform sandboxing C library

Added to portage

2025-10-26

courier-imap - 5.2.11-r2
Ebuild name:

net-mail/courier-imap-5.2.11-r2

Description

An IMAP daemon designed specifically for maildirs

Added to portage

2025-10-26

criterion - 2.4.3
Ebuild name:

dev-libs/criterion-2.4.3

Description

Cross platform unit testing framework for C and C++

Added to portage

2025-10-26

croc - 10.2.7
Ebuild name:

net-misc/croc-10.2.7

Description

Easily and securely send things from one computer to another

Added to portage

2025-10-26

django-otp - 1.6.3
Ebuild name:

dev-python/django-otp-1.6.3

Description

Django framework adding two-factor authentication using one-time passwo

Added to portage

2025-10-26

exaile - 4.2.0
Ebuild name:

media-sound/exaile-4.2.0

Description

GTK+ based media player aiming to be similar to Amarok

Added to portage

2025-10-26

fasthenry - 3.0.24.03.14
Ebuild name:

sci-electronics/fasthenry-3.0.24.03.14

Description

Three dimensional inductance computation program, Whiteley R

Added to portage

2025-10-26

fwupd-efi - 1.8
Ebuild name:

sys-apps/fwupd-efi-1.8

Description

EFI executable for fwupd

Added to portage

2025-10-26

gcc - 15.2.1_p20251025
Ebuild name:

sys-devel/gcc-15.2.1_p20251025

Description

The GNU Compiler Collection

Added to portage

2025-10-26

ghostty - 1.2.3
Ebuild name:

x11-terms/ghostty-1.2.3

Description

Fast, feature-rich, and cross-platform terminal emulator

Added to portage

2025-10-26

ghostty-terminfo - 1.2.3
Ebuild name:

x11-terms/ghostty-terminfo-1.2.3

Description

Terminfo for ghostty, a fast, feature-rich, and cross-platform ter

Added to portage

2025-10-26

glib - 2.86.1
Ebuild name:

dev-libs/glib-2.86.1

Description

The GLib library of C routines

Added to portage

2025-10-26

gnome-control-center - 48.3-r1
Ebuild name:

gnome-base/gnome-control-center-48.3-r1

Description

GNOME's main interface to configure various aspects of the

Added to portage

2025-10-26

gnome-control-center - 48.4-r1
Ebuild name:

gnome-base/gnome-control-center-48.4-r1

Description

GNOME's main interface to configure various aspects of the

Added to portage

2025-10-26

gpyutils - 0.15.3
Ebuild name:

app-portage/gpyutils-0.15.3

Description

Utitilies for maintaining Python packages

Added to portage

2025-10-26

highway - 1.3.0
Ebuild name:

dev-cpp/highway-1.3.0

Description

Performance-portable, length-agnostic SIMD with runtime dispatch

Added to portage

2025-10-26

hypothesis - 6.142.4
Ebuild name:

dev-python/hypothesis-6.142.4

Description

A library for property based testing

Added to portage

2025-10-26

iminuit - 2.31.3
Ebuild name:

dev-python/iminuit-2.31.3

Description

Minuit numerical function minimization in Python

Added to portage

2025-10-26

klayout - 0.30.4
Ebuild name:

sci-electronics/klayout-0.30.4

Description

Viewer and editor for GDS and OASIS integrated circuit layouts

Added to portage

2025-10-26

kwin - 6.5.0-r1
Ebuild name:

kde-plasma/kwin-6.5.0-r1

Description

Flexible, composited Window Manager for windowing systems on Linux

Added to portage

2025-10-26

libdbusmenu - 16.04.0-r4
Ebuild name:

dev-libs/libdbusmenu-16.04.0-r4

Description

Library to pass menu structure across DBus

Added to portage

2025-10-26

libheif - 1.20.2
Ebuild name:

media-libs/libheif-1.20.2

Description

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

Added to portage

2025-10-26

libinput - 1.29.2
Ebuild name:

dev-libs/libinput-1.29.2

Description

Library to handle input devices in Wayland

Added to portage

2025-10-26

libjcat - 0.2.5
Ebuild name:

dev-libs/libjcat-0.2.5

Description

Library and tool for reading and writing Jcat files

Added to portage

2025-10-26

librdkafka - 2.12.1
Ebuild name:

dev-libs/librdkafka-2.12.1

Description

Apache Kafka C/C++ client library

Added to portage

2025-10-26

libxkbcommon - 1.12.2
Ebuild name:

x11-libs/libxkbcommon-1.12.2

Description

Keymap handling library for toolkits and window systems

Added to portage

2025-10-26

libxmlb - 0.3.24
Ebuild name:

dev-libs/libxmlb-0.3.24

Description

Library to help create and query binary XML blobs

Added to portage

2025-10-26

linux-firmware - 20251021
Ebuild name:

sys-kernel/linux-firmware-20251021

Description

Linux firmware files

Added to portage

2025-10-26

live - 2025.10.13
Ebuild name:

media-plugins/live-2025.10.13

Description

Libraries for standards-based RTP/RTCP/RTSP multimedia streaming

Added to portage

2025-10-26

maildrop - 3.1.8-r1
Ebuild name:

mail-filter/maildrop-3.1.8-r1

Description

Mail delivery agent/filter

Added to portage

2025-10-26

maildrop - 3.2.1
Ebuild name:

mail-filter/maildrop-3.2.1

Description

Mail delivery agent/filter

Added to portage

2025-10-26

merlin - 5.6
Ebuild name:

dev-ml/merlin-5.6

Description

Context sensitive completion for OCaml in Vim and Emacs

Added to portage

2025-10-26

minify-html - 0.18.1
Ebuild name:

dev-python/minify-html-0.18.1

Description

Extremely fast and smart HTML + JS + CSS minifier

Added to portage

2025-10-26

neko - 2.4.1
Ebuild name:

dev-lang/neko-2.4.1

Description

Neko is a high-level dynamically typed programming language

Added to portage

2025-10-26

nut - 2.8.4
Ebuild name:

sys-power/nut-2.8.4

Description

Network-UPS Tools

Added to portage

2025-10-26

openconnect - 9.12-r2
Ebuild name:

net-vpn/openconnect-9.12-r2

Description

Free client for Cisco AnyConnect SSL VPN software

Added to portage

2025-10-26

openhab-bin - 5.0.2
Ebuild name:

app-misc/openhab-bin-5.0.2

Description

An open-source automation software for your home

Added to portage

2025-10-26

openmpi - 4.1.6-r1
Ebuild name:

sys-cluster/openmpi-4.1.6-r1

Description

A high-performance message passing library (MPI)

Added to portage

2025-10-26

openmpi - 5.0.6-r1
Ebuild name:

sys-cluster/openmpi-5.0.6-r1

Description

A high-performance message passing library (MPI)

Added to portage

2025-10-26

openmpi - 5.0.8
Ebuild name:

sys-cluster/openmpi-5.0.8

Description

A high-performance message passing library (MPI)

Added to portage

2025-10-26

pikepdf - 10.0.0
Ebuild name:

dev-python/pikepdf-10.0.0

Description

Python library to work with pdf files based on qpdf

Added to portage

2025-10-26

pipewire - 1.4.7-r3
Ebuild name:

media-video/pipewire-1.4.7-r3

Description

Multimedia processing graphs

Added to portage

2025-10-26

pipewire - 1.4.8-r3
Ebuild name:

media-video/pipewire-1.4.8-r3

Description

Multimedia processing graphs

Added to portage

2025-10-26

pipewire - 1.4.9-r1
Ebuild name:

media-video/pipewire-1.4.9-r1

Description

Multimedia processing graphs

Added to portage

2025-10-26

portage - 3.0.69.3-r1
Ebuild name:

sys-apps/portage-3.0.69.3-r1

Description

The package management and distribution system for Gentoo

Added to portage

2025-10-26

psycopg - 3.2.12
Ebuild name:

dev-python/psycopg-3.2.12

Description

PostgreSQL database adapter for Python

Added to portage

2025-10-26

pwndbg - 20251020
Ebuild name:

dev-debug/pwndbg-20251020

Description

A GDB plug-in that makes debugging with GDB suck less

Added to portage

2025-10-26

python-dotenv - 1.2.1
Ebuild name:

dev-python/python-dotenv-1.2.1

Description

Manage .env files

Added to portage

2025-10-26

pytorch - 2.9.0
Ebuild name:

sci-ml/pytorch-2.9.0

Description

Tensors and Dynamic neural networks in Python

Added to portage

2025-10-26

qemu - 10.0.6
Ebuild name:

app-emulation/qemu-10.0.6

Description

QEMU + Kernel-based Virtual Machine userland tools

Added to portage

2025-10-26

qemu - 10.1.2
Ebuild name:

app-emulation/qemu-10.1.2

Description

QEMU + Kernel-based Virtual Machine userland tools

Added to portage

2025-10-26

rails - 8.1.0
Ebuild name:

dev-ruby/rails-8.1.0

Description

ruby on rails is a web-application and persistence framework

Added to portage

2025-10-26

railties - 8.1.0
Ebuild name:

dev-ruby/railties-8.1.0

Description

Tools for creating, working with, and running Rails applications

Added to portage

2025-10-26

re2 - 2025.08.12
Ebuild name:

dev-libs/re2-2025.08.12

Description

An efficient, principled regular expression library

Added to portage

2025-10-26

reformatter - 0.6
Ebuild name:

app-emacs/reformatter-0.6

Description

Define commands which run reformatters on the Emacs buffers

Added to portage

2025-10-26

signal-desktop-bin - 7.72.1
Ebuild name:

net-im/signal-desktop-bin-7.72.1

Description

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

Added to portage

2025-10-26

signal-desktop-bin - 7.76.0
Ebuild name:

net-im/signal-desktop-bin-7.76.0

Description

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

Added to portage

2025-10-26

socket_wrapper - 1.5.1
Ebuild name:

net-libs/socket_wrapper-1.5.1

Description

Library passing all socket communications through unix sockets

Added to portage

2025-10-26

strawberry - 1.2.14
Ebuild name:

media-sound/strawberry-1.2.14

Description

Modern music player and library organizer based on Clementine and Qt

Added to portage

2025-10-26

syslog-ng - 4.10.2
Ebuild name:

app-admin/syslog-ng-4.10.2

Description

syslog replacement with advanced filtering features

Added to portage

2025-10-26

systemd - 257.10
Ebuild name:

sys-apps/systemd-257.10

Description

System and service manager for Linux

Added to portage

2025-10-26

termcolor - 3.2.0
Ebuild name:

dev-python/termcolor-3.2.0

Description

ANSI Color formatting for output in terminal

Added to portage

2025-10-26

zfs - 2.4.0_rc3
Ebuild name:

sys-fs/zfs-2.4.0_rc3

Description

Linux kernel module and userland utilities for ZFS

Added to portage

2025-10-26

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