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:

75886

userrating:

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


May, 25th 2007:
April, 26th 2007:
Apr, 10th. 2007:
Druckversion . pdf icon
You are here: Tutorials per portage category->app-editors->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: no votes yet
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-06-01
R - 4.5.0
Ebuild name:

dev-lang/R-4.5.0

Description

Language and environment for statistical computing and graphics

Added to portage

2025-06-01

aiohttp - 3.12.6
Ebuild name:

dev-python/aiohttp-3.12.6

Description

HTTP client/server for asyncio

Added to portage

2025-06-01

aiounittest - 1.5.0-r1
Ebuild name:

dev-python/aiounittest-1.5.0-r1

Description

Test asyncio code more easily

Added to portage

2025-06-01

audioop-lts - 0.2.1
Ebuild name:

dev-python/audioop-lts-0.2.1

Description

An LTS port of Python's audioop module

Added to portage

2025-06-01

audioread - 3.0.1-r1
Ebuild name:

dev-python/audioread-3.0.1-r1

Description

Wrapper for audio file decoding using FFmpeg or GStreamer

Added to portage

2025-06-01

beets - 2.3.1
Ebuild name:

media-sound/beets-2.3.1

Description

Media library management system for obsessive music geeks

Added to portage

2025-06-01

bindfs - 1.18.0
Ebuild name:

sys-fs/bindfs-1.18.0

Description

FUSE filesystem for bind mounting with altered permissions

Added to portage

2025-06-01

cattrs - 25.1.0
Ebuild name:

dev-python/cattrs-25.1.0

Description

Composable complex class support for attrs and dataclasses

Added to portage

2025-06-01

cmd2 - 2.6.0
Ebuild name:

dev-python/cmd2-2.6.0

Description

Extra features for standard library's cmd module

Added to portage

2025-06-01

colorized-logs - 2.7
Ebuild name:

sys-apps/colorized-logs-2.7

Description

Tools for logs with ANSI color

Added to portage

2025-06-01

csv - 3.3.5
Ebuild name:

dev-ruby/csv-3.3.5

Description

The CSV library provides a complete interface to CSV files and data

Added to portage

2025-06-01

curtsies - 0.4.2-r1
Ebuild name:

dev-python/curtsies-0.4.2-r1

Description

Curses-like terminal wrapper, with colored strings

Added to portage

2025-06-01

debian-archive-keyring - 2025.1
Ebuild name:

app-crypt/debian-archive-keyring-2025.1

Description

GnuPG archive keys of the Debian archive

Added to portage

2025-06-01

diffoscope - 297
Ebuild name:

dev-util/diffoscope-297

Description

Will try to get to the bottom of what makes files or directories different

Added to portage

2025-06-01

dill - 0.4.0
Ebuild name:

dev-python/dill-0.4.0

Description

Serialize all of Python (almost)

Added to portage

2025-06-01

eselect-zig - 2
Ebuild name:

app-eselect/eselect-zig-2

Description

Manages Zig versions

Added to portage

2025-06-01

exempi - 2.6.6
Ebuild name:

media-libs/exempi-2.6.6

Description

Port of the Adobe XMP SDK to work on UNIX

Added to portage

2025-06-01

gcc - 13.3.1_p20250530
Ebuild name:

sys-devel/gcc-13.3.1_p20250530

Description

The GNU Compiler Collection

Added to portage

2025-06-01

gcc - 14.3.1_p20250530
Ebuild name:

sys-devel/gcc-14.3.1_p20250530

Description

The GNU Compiler Collection

Added to portage

2025-06-01

gcc - 15.1.1_p20250531
Ebuild name:

sys-devel/gcc-15.1.1_p20250531

Description

The GNU Compiler Collection

Added to portage

2025-06-01

git-machete - 3.35.1
Ebuild name:

dev-vcs/git-machete-3.35.1

Description

Probably the sharpest git repo organizer & rebase/merge workflow aut

Added to portage

2025-06-01

gnome-mahjongg - 47.2
Ebuild name:

games-board/gnome-mahjongg-47.2

Description

Disassemble a pile of tiles by removing matching pairs

Added to portage

2025-06-01

gnome-software - 47.5
Ebuild name:

gnome-extra/gnome-software-47.5

Description

Gnome install & update software

Added to portage

2025-06-01

gnome-sudoku - 47.3
Ebuild name:

games-puzzle/gnome-sudoku-47.3

Description

Test your logic skills in this number grid puzzle

Added to portage

2025-06-01

gnome-system-monitor - 47.1
Ebuild name:

gnome-extra/gnome-system-monitor-47.1

Description

The Gnome System Monitor

Added to portage

2025-06-01

gnome-user-docs - 47.6
Ebuild name:

gnome-extra/gnome-user-docs-47.6

Description

GNOME end user documentation

Added to portage

2025-06-01

hugo - 0.147.7
Ebuild name:

www-apps/hugo-0.147.7

Description

Fast static HTML and CSS website generator

Added to portage

2025-06-01

hypothesis - 6.132.0
Ebuild name:

dev-python/hypothesis-6.132.0

Description

A library for property based testing

Added to portage

2025-06-01

ipython - 8.37.0
Ebuild name:

dev-python/ipython-8.37.0

Description

Advanced interactive shell for Python

Added to portage

2025-06-01

ipython - 9.3.0
Ebuild name:

dev-python/ipython-9.3.0

Description

Advanced interactive shell for Python

Added to portage

2025-06-01

jsonschema-path - 0.3.4-r1
Ebuild name:

dev-python/jsonschema-path-0.3.4-r1

Description

JSONSchema Spec with object-oriented paths

Added to portage

2025-06-01

lap - 0.5.12
Ebuild name:

dev-python/lap-0.5.12

Description

Linear Assignment Problem solver (LAPJV/LAPMOD)

Added to portage

2025-06-01

libconfig - 1.8.1
Ebuild name:

dev-libs/libconfig-1.8.1

Description

Libconfig is a simple library for manipulating structured configuration fi

Added to portage

2025-06-01

oauth2 - 2.0.12
Ebuild name:

dev-ruby/oauth2-2.0.12

Description

Wrapper for the OAuth 2.0 protocol with a similar style to the OAuth gem

Added to portage

2025-06-01

optipng - 7.9.1
Ebuild name:

media-gfx/optipng-7.9.1

Description

Recompress PNG files to a smaller size without loss of information

Added to portage

2025-06-01

overrides - 7.7.0-r1
Ebuild name:

dev-python/overrides-7.7.0-r1

Description

A decorator to automatically detect mismatch when overriding a method

Added to portage

2025-06-01

parso - 0.8.4-r1
Ebuild name:

dev-python/parso-0.8.4-r1

Description

A python parser that supports error recovery and round-trip parsing

Added to portage

2025-06-01

po-mode - 0.22
Ebuild name:

app-emacs/po-mode-0.22

Description

Major mode for GNU gettext PO files

Added to portage

2025-06-01

poke - 3.0
Ebuild name:

app-emacs/poke-3.0

Description

Emacs meets GNU poke

Added to portage

2025-06-01

ptyxis - 47.13
Ebuild name:

x11-terms/ptyxis-47.13

Description

A terminal for a container-oriented desktop

Added to portage

2025-06-01

puddletag - 2.4.0-r1
Ebuild name:

media-sound/puddletag-2.4.0-r1

Description

Audio tag editor

Added to portage

2025-06-01

pyacoustid - 1.3.0-r1
Ebuild name:

dev-python/pyacoustid-1.3.0-r1

Description

Python bindings for Chromaprint and the AcoustID web service

Added to portage

2025-06-01

pyxdg - 0.28-r2
Ebuild name:

dev-python/pyxdg-0.28-r2

Description

A Python module to deal with freedesktop.org specifications

Added to portage

2025-06-01

quodlibet - 4.6.0-r3
Ebuild name:

media-sound/quodlibet-4.6.0-r3

Description

audio library tagger, manager, and player for GTK+

Added to portage

2025-06-01

quodlibet - 4.7.1
Ebuild name:

media-sound/quodlibet-4.7.1

Description

audio library tagger, manager, and player for GTK+

Added to portage

2025-06-01

screen - 4.9.1-r2
Ebuild name:

app-misc/screen-4.9.1-r2

Description

screen manager with VT100/ANSI terminal emulation

Added to portage

2025-06-01

snakeoil - 0.10.11
Ebuild name:

dev-python/snakeoil-0.10.11

Description

misc common functionality and useful optimizations

Added to portage

2025-06-01

vifm - 0.14.2
Ebuild name:

app-misc/vifm-0.14.2

Description

Console file manager with vi(m)-like keybindings

Added to portage

2025-06-01

zig - 0.14.1
Ebuild name:

dev-lang/zig-0.14.1

Description

A robust, optimal, and maintainable programming language

Added to portage

2025-06-01

zig-bin - 0.14.1
Ebuild name:

dev-lang/zig-bin-0.14.1

Description

A robust, optimal, and maintainable programming language

Added to portage

2025-06-01

2025-05-31
apsw - 3.50.0.0
Ebuild name:

dev-python/apsw-3.50.0.0

Description

APSW - Another Python SQLite Wrapper

Added to portage

2025-05-31

awscli - 1.40.26
Ebuild name:

app-admin/awscli-1.40.26

Description

Universal Command Line Environment for AWS

Added to portage

2025-05-31

base64 - 0.3.0
Ebuild name:

dev-ruby/base64-0.3.0

Description

Support for encoding and decoding binary data using a Base64 representation.

Added to portage

2025-05-31

bash - 5.3_rc1_p20250530
Ebuild name:

app-shells/bash-5.3_rc1_p20250530

Description

The standard GNU Bourne again shell

Added to portage

2025-05-31

bcc - 0.35.0
Ebuild name:

dev-util/bcc-0.35.0

Description

Tools for BPF-based Linux IO analysis, networking, monitoring, and more

Added to portage

2025-05-31

benchmark - 0.4.1
Ebuild name:

dev-ruby/benchmark-0.4.1

Description

A performance benchmarking library

Added to portage

2025-05-31

bigdecimal - 3.2.1
Ebuild name:

dev-ruby/bigdecimal-3.2.1

Description

Arbitrary-precision decimal floating-point number library for Ruby

Added to portage

2025-05-31

boto3 - 1.38.27
Ebuild name:

dev-python/boto3-1.38.27

Description

The AWS SDK for Python

Added to portage

2025-05-31

botocore - 1.38.27
Ebuild name:

dev-python/botocore-1.38.27

Description

Low-level, data-driven core of boto 3

Added to portage

2025-05-31

caja - 1.28.0-r2
Ebuild name:

mate-base/caja-1.28.0-r2

Description

Caja file manager for the MATE desktop

Added to portage

2025-05-31

caja-actions - 1.28.0-r1
Ebuild name:

mate-extra/caja-actions-1.28.0-r1

Description

Caja Actions

Added to portage

2025-05-31

caldav - 1.6.0
Ebuild name:

dev-python/caldav-1.6.0

Description

CalDAV (RFC4791) client library for Python

Added to portage

2025-05-31

cinnamon - 6.2.9-r1
Ebuild name:

gnome-extra/cinnamon-6.2.9-r1

Description

A fork of GNOME Shell with layout similar to GNOME 2

Added to portage

2025-05-31

cinnamon - 6.4.8-r1
Ebuild name:

gnome-extra/cinnamon-6.4.8-r1

Description

A fork of GNOME Shell with layout similar to GNOME 2

Added to portage

2025-05-31

dia - 0.97.3-r4
Ebuild name:

app-office/dia-0.97.3-r4

Description

Diagram/flowchart creation program

Added to portage

2025-05-31

epiphany - 46.4-r1
Ebuild name:

www-client/epiphany-46.4-r1

Description

GNOME webbrowser based on Webkit

Added to portage

2025-05-31

epiphany - 47.2-r1
Ebuild name:

www-client/epiphany-47.2-r1

Description

GNOME webbrowser based on Webkit

Added to portage

2025-05-31

epiphany - 47.7-r1
Ebuild name:

www-client/epiphany-47.7-r1

Description

GNOME webbrowser based on Webkit

Added to portage

2025-05-31

evince - 46.3.1-r1
Ebuild name:

app-text/evince-46.3.1-r1

Description

Simple document viewer for GNOME

Added to portage

2025-05-31

evince - 48.0-r1
Ebuild name:

app-text/evince-48.0-r1

Description

Simple document viewer for GNOME

Added to portage

2025-05-31

evolution - 3.52.4-r3
Ebuild name:

mail-client/evolution-3.52.4-r3

Description

Integrated mail, addressbook and calendaring functionality

Added to portage

2025-05-31

evolution - 3.54.3-r1
Ebuild name:

mail-client/evolution-3.54.3-r1

Description

Integrated mail, addressbook and calendaring functionality

Added to portage

2025-05-31

evolution-data-server - 3.52.4-r3
Ebuild name:

gnome-extra/evolution-data-server-3.52.4-r3

Description

Evolution groupware backend

Added to portage

2025-05-31

evolution-data-server - 3.54.3-r1
Ebuild name:

gnome-extra/evolution-data-server-3.54.3-r1

Description

Evolution groupware backend

Added to portage

2025-05-31

evolution-ews - 3.52.4-r1
Ebuild name:

gnome-extra/evolution-ews-3.52.4-r1

Description

Evolution module for connecting to Microsoft Exchange Web Servi

Added to portage

2025-05-31

evolution-ews - 3.54.3.0-r1
Ebuild name:

gnome-extra/evolution-ews-3.54.3.0-r1

Description

Evolution module for connecting to Microsoft Exchange Web Ser

Added to portage

2025-05-31

fantomas - 7.0.2
Ebuild name:

dev-dotnet/fantomas-7.0.2

Description

FSharp source code formatter

Added to portage

2025-05-31

gentoo-elections - 0_p20240831
Ebuild name:

app-misc/gentoo-elections-0_p20240831

Description

Gentoo election control data and scripts

Added to portage

2025-05-31

glade - 3.40.0-r2
Ebuild name:

dev-util/glade-3.40.0-r2

Description

A user interface designer for GTK+ and GNOME

Added to portage

2025-05-31

gnome-applets - 3.46.0-r1
Ebuild name:

gnome-base/gnome-applets-3.46.0-r1

Description

Applets for the GNOME Flashback Panel

Added to portage

2025-05-31

gnome-applets - 3.50.0-r1
Ebuild name:

gnome-base/gnome-applets-3.50.0-r1

Description

Applets for the GNOME Flashback Panel

Added to portage

2025-05-31

gnome-applets - 3.52.0-r1
Ebuild name:

gnome-base/gnome-applets-3.52.0-r1

Description

Applets for the GNOME Flashback Panel

Added to portage

2025-05-31

gnome-applets - 3.54.0-r1
Ebuild name:

gnome-base/gnome-applets-3.54.0-r1

Description

Applets for the GNOME Flashback Panel

Added to portage

2025-05-31

gnome-boxes - 46.1-r1
Ebuild name:

gnome-extra/gnome-boxes-46.1-r1

Description

Simple GNOME application to access remote or virtual systems

Added to portage

2025-05-31

gnome-boxes - 47.0-r1
Ebuild name:

gnome-extra/gnome-boxes-47.0-r1

Description

Simple GNOME application to access remote or virtual systems

Added to portage

2025-05-31

gnome-builder - 46.3-r1
Ebuild name:

dev-util/gnome-builder-46.3-r1

Description

An IDE for writing GNOME-based software

Added to portage

2025-05-31

gnome-builder - 47.2-r1
Ebuild name:

dev-util/gnome-builder-47.2-r1

Description

An IDE for writing GNOME-based software

Added to portage

2025-05-31

gnome-calculator - 46.1-r1
Ebuild name:

gnome-extra/gnome-calculator-46.1-r1

Description

A calculator application for GNOME

Added to portage

2025-05-31

gnome-calculator - 47.1-r1
Ebuild name:

gnome-extra/gnome-calculator-47.1-r1

Description

A calculator application for GNOME

Added to portage

2025-05-31

gnome-calculator - 47.3-r1
Ebuild name:

gnome-extra/gnome-calculator-47.3-r1

Description

A calculator application for GNOME

Added to portage

2025-05-31

gnome-chemistry-utils - 0.14.17_p6-r4
Ebuild name:

sci-chemistry/gnome-chemistry-utils-0.14.17_p6-r4

Description

Programs and library containing GTK widgets and C

Added to portage

2025-05-31

gnome-connections - 46.0-r1
Ebuild name:

net-misc/gnome-connections-46.0-r1

Description

A remote desktop client for the GNOME desktop environment

Added to portage

2025-05-31

gnome-connections - 47.0-r1
Ebuild name:

net-misc/gnome-connections-47.0-r1

Description

A remote desktop client for the GNOME desktop environment

Added to portage

2025-05-31

gnome-connections - 47.2.1-r1
Ebuild name:

net-misc/gnome-connections-47.2.1-r1

Description

A remote desktop client for the GNOME desktop environment

Added to portage

2025-05-31

gnome-control-center - 46.4-r2
Ebuild name:

gnome-base/gnome-control-center-46.4-r2

Description

GNOME's main interface to configure various aspects of the

Added to portage

2025-05-31

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

gnome-base/gnome-control-center-47.3-r1

Description

GNOME's main interface to configure various aspects of the

Added to portage

2025-05-31

gnome-maps - 46.11-r1
Ebuild name:

sci-geosciences/gnome-maps-46.11-r1

Description

A map application for GNOME

Added to portage

2025-05-31

gnome-maps - 47.3-r1
Ebuild name:

sci-geosciences/gnome-maps-47.3-r1

Description

A map application for GNOME

Added to portage

2025-05-31

gnome-online-accounts - 3.48.1-r1
Ebuild name:

net-libs/gnome-online-accounts-3.48.1-r1

Description

GNOME framework for accessing online accounts

Added to portage

2025-05-31

gnome-online-accounts - 3.50.4-r1
Ebuild name:

net-libs/gnome-online-accounts-3.50.4-r1

Description

GNOME framework for accessing online accounts

Added to portage

2025-05-31

gnome-online-accounts - 3.52.3.1-r1
Ebuild name:

net-libs/gnome-online-accounts-3.52.3.1-r1

Description

GNOME framework for accessing online accounts

Added to portage

2025-05-31

gnome-shell - 46.7-r1
Ebuild name:

gnome-base/gnome-shell-46.7-r1

Description

Provides core UI functions for the GNOME desktop

Added to portage

2025-05-31

gnome-shell - 47.3-r2
Ebuild name:

gnome-base/gnome-shell-47.3-r2

Description

Provides core UI functions for the GNOME desktop

Added to portage

2025-05-31

gnome-system-monitor - 45.0.2-r1
Ebuild name:

gnome-extra/gnome-system-monitor-45.0.2-r1

Description

The Gnome System Monitor

Added to portage

2025-05-31

gnome-system-monitor - 46.0-r2
Ebuild name:

gnome-extra/gnome-system-monitor-46.0-r2

Description

The Gnome System Monitor

Added to portage

2025-05-31

gnome-system-monitor - 47.0-r1
Ebuild name:

gnome-extra/gnome-system-monitor-47.0-r1

Description

The Gnome System Monitor

Added to portage

2025-05-31

gnumeric - 1.12.57-r1
Ebuild name:

app-office/gnumeric-1.12.57-r1

Description

The GNOME Spreadsheet

Added to portage

2025-05-31

gnumeric - 1.12.59-r1
Ebuild name:

app-office/gnumeric-1.12.59-r1

Description

The GNOME Spreadsheet

Added to portage

2025-05-31

goffice - 0.10.57-r1
Ebuild name:

x11-libs/goffice-0.10.57-r1

Description

A library of document-centric objects and utilities

Added to portage

2025-05-31

goffice - 0.10.59-r1
Ebuild name:

x11-libs/goffice-0.10.59-r1

Description

A library of document-centric objects and utilities

Added to portage

2025-05-31

gtk-doc - 1.33.2-r2
Ebuild name:

dev-util/gtk-doc-1.33.2-r2

Description

GTK+ Documentation Generator

Added to portage

2025-05-31

gtk-doc - 1.34.0-r1
Ebuild name:

dev-util/gtk-doc-1.34.0-r1

Description

GTK+ Documentation Generator

Added to portage

2025-05-31

gtksourceview - 2.10.5-r5
Ebuild name:

x11-libs/gtksourceview-2.10.5-r5

Description

Text widget implementing syntax highlighting and other features

Added to portage

2025-05-31

gtksourceview - 3.24.11-r2
Ebuild name:

x11-libs/gtksourceview-3.24.11-r2

Description

A text widget implementing syntax highlighting and other features

Added to portage

2025-05-31

gtksourceview - 3.24.11-r4
Ebuild name:

x11-libs/gtksourceview-3.24.11-r4

Description

A text widget implementing syntax highlighting and other features

Added to portage

2025-05-31

gtksourceview - 4.8.4-r2
Ebuild name:

x11-libs/gtksourceview-4.8.4-r2

Description

A text widget implementing syntax highlighting and other features

Added to portage

2025-05-31

gtksourceview - 5.12.1-r2
Ebuild name:

gui-libs/gtksourceview-5.12.1-r2

Description

A text widget implementing syntax highlighting and other features

Added to portage

2025-05-31

gtksourceview - 5.14.2-r1
Ebuild name:

gui-libs/gtksourceview-5.14.2-r1

Description

A text widget implementing syntax highlighting and other features

Added to portage

2025-05-31

gtranslator - 46.1-r1
Ebuild name:

app-text/gtranslator-46.1-r1

Description

GNOME Translation Editor

Added to portage

2025-05-31

gtranslator - 47.1-r1
Ebuild name:

app-text/gtranslator-47.1-r1

Description

GNOME Translation Editor

Added to portage

2025-05-31

gvfs - 1.52.3-r2
Ebuild name:

gnome-base/gvfs-1.52.3-r2

Description

Virtual filesystem implementation for GIO

Added to portage

2025-05-31

gvfs - 1.56.1-r2
Ebuild name:

gnome-base/gvfs-1.56.1-r2

Description

Virtual filesystem implementation for GIO

Added to portage

2025-05-31

hypothesis - 6.131.32
Ebuild name:

dev-python/hypothesis-6.131.32

Description

A library for property based testing

Added to portage

2025-05-31

incus - 6.13
Ebuild name:

app-containers/incus-6.13

Description

Modern, secure and powerful system container and virtual machine manager

Added to portage

2025-05-31

iotop-c - 1.30
Ebuild name:

sys-process/iotop-c-1.30

Description

top utility for IO (C port)

Added to portage

2025-05-31

iproute2 - 6.15.0
Ebuild name:

sys-apps/iproute2-6.15.0

Description

kernel routing and traffic control utilities

Added to portage

2025-05-31

kbd - 2.8.0
Ebuild name:

sys-apps/kbd-2.8.0

Description

Keyboard and console utilities

Added to portage

2025-05-31

libfprint - 1.94.9
Ebuild name:

sys-auth/libfprint-1.94.9

Description

Library to add support for consumer fingerprint readers

Added to portage

2025-05-31

libgda - 5.2.9-r3
Ebuild name:

gnome-extra/libgda-5.2.9-r3

Description

GNOME database access library

Added to portage

2025-05-31

libgedit-gtksourceview - 299.0.4-r1
Ebuild name:

gui-libs/libgedit-gtksourceview-299.0.4-r1

Description

Gedit Technology - Source code editing widget

Added to portage

2025-05-31

libgedit-gtksourceview - 299.3.0-r1
Ebuild name:

gui-libs/libgedit-gtksourceview-299.3.0-r1

Description

Gedit Technology - Source code editing widget

Added to portage

2025-05-31

libgedit-gtksourceview - 299.4.0-r1
Ebuild name:

gui-libs/libgedit-gtksourceview-299.4.0-r1

Description

Gedit Technology - Source code editing widget

Added to portage

2025-05-31

libgepub - 0.7.1-r1
Ebuild name:

app-text/libgepub-0.7.1-r1

Description

GObject based library for handling and rendering epub documents

Added to portage

2025-05-31

libglade - 2.6.4-r5
Ebuild name:

gnome-base/libglade-2.6.4-r5

Description

Library to construct graphical interfaces at runtime

Added to portage

2025-05-31

libgrss - 0.7.0-r2
Ebuild name:

net-libs/libgrss-0.7.0-r2

Description

Library for easy management of RSS/Atom/Pie feeds

Added to portage

2025-05-31

libgsf - 1.14.53-r1
Ebuild name:

gnome-extra/libgsf-1.14.53-r1

Description

The GNOME Structured File Library

Added to portage

2025-05-31

libgweather - 4.4.2-r1
Ebuild name:

dev-libs/libgweather-4.4.2-r1

Description

Location and timezone database and weather-lookup library

Added to portage

2025-05-31

libmateweather - 1.28.0-r1
Ebuild name:

dev-libs/libmateweather-1.28.0-r1

Description

MATE library to access weather information from online services

Added to portage

2025-05-31

librsvg - 2.40.21-r1
Ebuild name:

gnome-base/librsvg-2.40.21-r1

Description

Scalable Vector Graphics (SVG) rendering library

Added to portage

2025-05-31

librsvg - 2.57.3-r3
Ebuild name:

gnome-base/librsvg-2.57.3-r3

Description

Scalable Vector Graphics (SVG) rendering library

Added to portage

2025-05-31

librsvg - 2.58.2-r3
Ebuild name:

gnome-base/librsvg-2.58.2-r3

Description

Scalable Vector Graphics (SVG) rendering library

Added to portage

2025-05-31

librsvg - 2.58.5-r1
Ebuild name:

gnome-base/librsvg-2.58.5-r1

Description

Scalable Vector Graphics (SVG) rendering library

Added to portage

2025-05-31

libvncserver - 0.9.15-r1
Ebuild name:

net-libs/libvncserver-0.9.15-r1

Description

library for creating vnc servers

Added to portage

2025-05-31

libxslt - 1.1.43-r1
Ebuild name:

dev-libs/libxslt-1.1.43-r1

Description

XSLT libraries and tools

Added to portage

2025-05-31

magic-wormhole - 0.19.2
Ebuild name:

dev-python/magic-wormhole-0.19.2

Description

Get Things From One Computer To Another, Safely

Added to portage

2025-05-31

mate-applets - 1.28.0-r1
Ebuild name:

mate-base/mate-applets-1.28.0-r1

Description

Applets for the MATE Desktop and Panel

Added to portage

2025-05-31

mate-calc - 1.28.0-r1
Ebuild name:

mate-extra/mate-calc-1.28.0-r1

Description

Calculator for MATE

Added to portage

2025-05-31

mate-control-center - 1.28.0-r2
Ebuild name:

mate-base/mate-control-center-1.28.0-r2

Description

The MATE Desktop configuration tool

Added to portage

2025-05-31

mate-media - 1.28.1-r2
Ebuild name:

mate-extra/mate-media-1.28.1-r2

Description

Multimedia related programs for the MATE desktop

Added to portage

2025-05-31

mate-notification-daemon - 1.28.1-r2
Ebuild name:

x11-misc/mate-notification-daemon-1.28.1-r2

Description

MATE Notification daemon

Added to portage

2025-05-31

mate-panel - 1.28.1-r1
Ebuild name:

mate-base/mate-panel-1.28.1-r1

Description

The MATE panel

Added to portage

2025-05-31

mate-panel - 1.28.4-r1
Ebuild name:

mate-base/mate-panel-1.28.4-r1

Description

The MATE panel

Added to portage

2025-05-31

mate-system-monitor - 1.28.0-r1
Ebuild name:

mate-extra/mate-system-monitor-1.28.0-r1

Description

The MATE System Monitor

Added to portage

2025-05-31

mate-system-monitor - 1.28.1-r1
Ebuild name:

mate-extra/mate-system-monitor-1.28.1-r1

Description

The MATE System Monitor

Added to portage

2025-05-31

mitmproxy-linux - 0.12.5
Ebuild name:

net-proxy/mitmproxy-linux-0.12.5

Description

mitmproxy's Rust bits

Added to portage

2025-05-31

mitmproxy-rs - 0.12.5
Ebuild name:

net-proxy/mitmproxy-rs-0.12.5

Description

mitmproxy's Rust bits

Added to portage

2025-05-31

nemo - 6.2.8-r1
Ebuild name:

gnome-extra/nemo-6.2.8-r1

Description

A file manager for Cinnamon, forked from Nautilus

Added to portage

2025-05-31

netdiscover - 0.20
Ebuild name:

net-analyzer/netdiscover-0.20

Description

Active/passive address reconnaissance tool

Added to portage

2025-05-31

nprolog - 4.36
Ebuild name:

dev-lang/nprolog-4.36

Description

Interpreter and compiler to be compatible with Arity/Prolog32

Added to portage

2025-05-31

osu-lazer - 2025.424.0
Ebuild name:

games-arcade/osu-lazer-2025.424.0

Description

A free-to-win rhythm game and a final iteration of the osu game c

Added to portage

2025-05-31

pandoc-bin - 3.7.0.2
Ebuild name:

app-text/pandoc-bin-3.7.0.2

Description

Conversion between markup formats (binary package)

Added to portage

2025-05-31

pathable - 0.5.0_alpha2
Ebuild name:

dev-python/pathable-0.5.0_alpha2

Description

Object-oriented paths

Added to portage

2025-05-31

planner - 0.14.91-r1
Ebuild name:

app-office/planner-0.14.91-r1

Description

Project manager for Gnome

Added to portage

2025-05-31

planner - 0.14.92-r1
Ebuild name:

app-office/planner-0.14.92-r1

Description

Project manager for Gnome

Added to portage

2025-05-31

plz - 0.7.2
Ebuild name:

app-emacs/plz-0.7.2

Description

HTTP library with curl backend for GNU Emacs

Added to portage

2025-05-31

plz - 0.9.1
Ebuild name:

app-emacs/plz-0.9.1

Description

HTTP library with curl backend for GNU Emacs

Added to portage

2025-05-31

process_executer - 3.2.4
Ebuild name:

dev-ruby/process_executer-3.2.4

Description

An API for executing commands in a subprocess

Added to portage

2025-05-31

pyrate-limiter - 3.7.1
Ebuild name:

dev-python/pyrate-limiter-3.7.1

Description

Python Rate-Limiter using Leaky-Bucket Algorimth Family

Added to portage

2025-05-31

pytest-regressions - 2.8.0
Ebuild name:

dev-python/pytest-regressions-2.8.0

Description

Easy to use fixtures to write regression tests

Added to portage

2025-05-31

rake - 13.3.0
Ebuild name:

dev-ruby/rake-13.3.0

Description

Make-like scripting in Ruby

Added to portage

2025-05-31

sasquatch - 4.5.1.5
Ebuild name:

app-arch/sasquatch-4.5.1.5

Description

An extended version of sasquashfs-tools

Added to portage

2025-05-31

scrcpy - 3.2-r1
Ebuild name:

app-mobilephone/scrcpy-3.2-r1

Description

Display and control your Android device

Added to portage

2025-05-31

sddm - 0.21.0_p20250502-r1
Ebuild name:

x11-misc/sddm-0.21.0_p20250502-r1

Description

Simple Desktop Display Manager

Added to portage

2025-05-31

simsimd - 6.4.5
Ebuild name:

dev-python/simsimd-6.4.5

Description

Fastest SIMD-Accelerated Vector Similarity Functions for x86 and Arm

Added to portage

2025-05-31

spidermonkey - 128.11.0
Ebuild name:

dev-lang/spidermonkey-128.11.0

Description

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

Added to portage

2025-05-31

sqlite - 3.50.0
Ebuild name:

dev-db/sqlite-3.50.0

Description

SQL database engine

Added to portage

2025-05-31

srt - 1.5.4-r1
Ebuild name:

net-libs/srt-1.5.4-r1

Description

Secure Reliable Transport (SRT) library and tools

Added to portage

2025-05-31

tesseract - 5.5.1
Ebuild name:

app-text/tesseract-5.5.1

Description

An OCR Engine, originally developed at HP, now open source

Added to portage

2025-05-31

tracker - 3.6.0-r2
Ebuild name:

app-misc/tracker-3.6.0-r2

Description

A tagging metadata database, search tool and indexer

Added to portage

2025-05-31

tracker-miners - 3.6.2-r2
Ebuild name:

app-misc/tracker-miners-3.6.2-r2

Description

Collection of data extractors for Tracker/Nepomuk

Added to portage

2025-05-31

uncrustify - 0.81.0
Ebuild name:

dev-util/uncrustify-0.81.0

Description

C/C++/C/D/Java/Pawn code indenter and beautifier

Added to portage

2025-05-31

uv - 0.7.9
Ebuild name:

dev-python/uv-0.7.9

Description

A Python package installer and resolver, written in Rust

Added to portage

2025-05-31

uv-build - 0.7.9
Ebuild name:

dev-python/uv-build-0.7.9

Description

PEP517 uv build backend

Added to portage

2025-05-31

warlock - 2.1.0
Ebuild name:

dev-python/warlock-2.1.0

Description

Python object model built on JSON schema and JSON patch

Added to portage

2025-05-31

ydotool - 1.0.4-r4
Ebuild name:

x11-misc/ydotool-1.0.4-r4

Description

Generic command-line automation tool (no X

Added to portage

2025-05-31

yelp - 42.2-r2
Ebuild name:

gnome-extra/yelp-42.2-r2

Description

Help browser for GNOME

Added to portage

2025-05-31

yelp-tools - 42.1-r1
Ebuild name:

app-text/yelp-tools-42.1-r1

Description

Collection of tools for building and converting documentation

Added to portage

2025-05-31

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