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:

67277

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
2024-04-30
Business-ISBN - 3.9.0
Ebuild name:

dev-perl/Business-ISBN-3.9.0

Description

Work with ISBN as objects

Added to portage

2024-04-30

Business-ISBN-Data - 20240426.1.0
Ebuild name:

dev-perl/Business-ISBN-Data-20240426.1.0

Description

Data pack for Business

Added to portage

2024-04-30

Business-ISMN - 1.204.0
Ebuild name:

dev-perl/Business-ISMN-1.204.0

Description

International Standard Music Numbers

Added to portage

2024-04-30

Business-ISSN - 1.6.0
Ebuild name:

dev-perl/Business-ISSN-1.6.0

Description

Object and functions to work with International Standard Serial Number

Added to portage

2024-04-30

CGI-Simple - 1.281.0
Ebuild name:

dev-perl/CGI-Simple-1.281.0

Description

A Simple totally OO CGI interface that is CGI.pm compliant

Added to portage

2024-04-30

CPAN-Changes - 0.500.3
Ebuild name:

dev-perl/CPAN-Changes-0.500.3

Description

Read and write Changes files

Added to portage

2024-04-30

CPAN-Meta-Check - 0.18.0
Ebuild name:

dev-perl/CPAN-Meta-Check-0.18.0

Description

Verify requirements in a CPAN object

Added to portage

2024-04-30

CPAN-Mini - 1.111.17
Ebuild name:

dev-perl/CPAN-Mini-1.111.17

Description

Create a minimal mirror of CPAN

Added to portage

2024-04-30

CPAN-Perl-Releases - 5.202.404.270
Ebuild name:

dev-perl/CPAN-Perl-Releases-5.202.404.270

Description

Mapping Perl releases on CPAN to the location of the tarb

Added to portage

2024-04-30

Carp-Assert-More - 2.4.0
Ebuild name:

dev-perl/Carp-Assert-More-2.4.0

Description

Convenience assertions for common situations

Added to portage

2024-04-30

Compress-Raw-Lzma - 2.212.0
Ebuild name:

dev-perl/Compress-Raw-Lzma-2.212.0

Description

Perl interface for reading and writing lzma, lzip, and xz files/

Added to portage

2024-04-30

DBD-Pg - 3.18.0
Ebuild name:

dev-perl/DBD-Pg-3.18.0

Description

PostgreSQL database driver for the DBI module

Added to portage

2024-04-30

DBD-mysql - 5.4.0
Ebuild name:

dev-perl/DBD-mysql-5.4.0

Description

MySQL driver for the Perl5 Database Interface (DBI)

Added to portage

2024-04-30

Data-Printer - 1.2.1
Ebuild name:

dev-perl/Data-Printer-1.2.1

Description

Colored and full-featured pretty print of Perl data structures and obje

Added to portage

2024-04-30

Data-UUID - 1.227.0
Ebuild name:

dev-perl/Data-UUID-1.227.0

Description

Generate Globally/Universally Unique Identifiers (GUIDs/UUIDs)

Added to portage

2024-04-30

Email-Sender - 2.601.0
Ebuild name:

dev-perl/Email-Sender-2.601.0

Description

A library for sending email

Added to portage

2024-04-30

Email-Valid - 1.204.0
Ebuild name:

dev-perl/Email-Valid-1.204.0

Description

Check validity of Internet email addresses

Added to portage

2024-04-30

alectryon - 1.4.0-r2
Ebuild name:

sci-mathematics/alectryon-1.4.0-r2

Description

Toolkit for literate programming in Coq

Added to portage

2024-04-30

awscli - 1.32.94
Ebuild name:

app-admin/awscli-1.32.94

Description

Universal Command Line Environment for AWS

Added to portage

2024-04-30

bash - 5.1_p16-r10
Ebuild name:

app-shells/bash-5.1_p16-r10

Description

The standard GNU Bourne again shell

Added to portage

2024-04-30

bash - 5.2_p26-r3
Ebuild name:

app-shells/bash-5.2_p26-r3

Description

The standard GNU Bourne again shell

Added to portage

2024-04-30

bash - 5.3_alpha-r2
Ebuild name:

app-shells/bash-5.3_alpha-r2

Description

The standard GNU Bourne again shell

Added to portage

2024-04-30

bpftool - 6.8.2
Ebuild name:

dev-util/bpftool-6.8.2

Description

Tool for inspection and simple manipulation of eBPF programs and maps

Added to portage

2024-04-30

calamares - 3.3.6
Ebuild name:

app-admin/calamares-3.3.6

Description

Distribution-independent installer framework

Added to portage

2024-04-30

ccls - 0.20240202
Ebuild name:

dev-util/ccls-0.20240202

Description

C/C++/ObjC language server

Added to portage

2024-04-30

discord - 0.0.52
Ebuild name:

net-im/discord-0.0.52

Description

All-in-one voice and text chat for gamers

Added to portage

2024-04-30

dist-kernel - 6.1.89
Ebuild name:

virtual/dist-kernel-6.1.89

Description

Virtual to depend on any Distribution Kernel

Added to portage

2024-04-30

firefox - 125.0.3
Ebuild name:

www-client/firefox-125.0.3

Description

Firefox Web Browser

Added to portage

2024-04-30

gentoo-kernel - 6.1.89
Ebuild name:

sys-kernel/gentoo-kernel-6.1.89

Description

Linux kernel built with Gentoo patches

Added to portage

2024-04-30

gentoo-kernel-bin - 6.1.89
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.1.89

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2024-04-30

git - 2.45.0
Ebuild name:

dev-vcs/git-2.45.0

Description

Stupid content tracker distributed VCS designed for speed and efficiency

Added to portage

2024-04-30

inkscape - 1.3.2-r2
Ebuild name:

media-gfx/inkscape-1.3.2-r2

Description

SVG based generic vector-drawing program

Added to portage

2024-04-30

libpwquality - 1.4.5-r2
Ebuild name:

dev-libs/libpwquality-1.4.5-r2

Description

Library for password quality checking and generating random password

Added to portage

2024-04-30

melange - 0.6.11
Ebuild name:

dev-build/melange-0.6.11

Description

Build APK packages from source code using declarative pipelines

Added to portage

2024-04-30

ocaml - 4.14.2
Ebuild name:

dev-lang/ocaml-4.14.2

Description

Programming language supporting functional, imperative & object-oriented

Added to portage

2024-04-30

racket-mode - 9999
Ebuild name:

app-emacs/racket-mode-9999

Description

Emacs modes for Racket edit, REPL, check-syntax, debug, profile, and mor

Added to portage

2024-04-30

rainbow-delimiters - 2.1.5
Ebuild name:

app-emacs/rainbow-delimiters-2.1.5

Description

Highlight nested parentheses, brackets, and braces according to

Added to portage

2024-04-30

supervisor - 4.2.5-r1
Ebuild name:

app-admin/supervisor-4.2.5-r1

Description

A system for controlling process state under UNIX

Added to portage

2024-04-30

torrentinfo - 1.8.7
Ebuild name:

net-p2p/torrentinfo-1.8.7

Description

A torrent file parser

Added to portage

2024-04-30

tuba - 0.7.2
Ebuild name:

net-misc/tuba-0.7.2

Description

Browse the Fediverse (GTK client)

Added to portage

2024-04-30

ubuntu-keyring - 2021.03.26
Ebuild name:

app-crypt/ubuntu-keyring-2021.03.26

Description

GnuPG archive keys of the Ubuntu archive

Added to portage

2024-04-30

ubuntu-keyring - 2023.11.28.1
Ebuild name:

app-crypt/ubuntu-keyring-2023.11.28.1

Description

GnuPG archive keys of the Ubuntu archive

Added to portage

2024-04-30

vanilla-kernel - 6.1.89
Ebuild name:

sys-kernel/vanilla-kernel-6.1.89

Description

Linux kernel built from vanilla upstream sources

Added to portage

2024-04-30

veracrypt - 1.25.9
Ebuild name:

app-crypt/veracrypt-1.25.9

Description

Disk encryption with strong security based on TrueCrypt

Added to portage

2024-04-30

veracrypt - 1.26.7
Ebuild name:

app-crypt/veracrypt-1.26.7

Description

Disk encryption with strong security based on TrueCrypt

Added to portage

2024-04-30

wayland-protocols - 1.36
Ebuild name:

dev-libs/wayland-protocols-1.36

Description

Wayland protocol files

Added to portage

2024-04-30

xca - 2.5.0
Ebuild name:

app-crypt/xca-2.5.0

Description

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

Added to portage

2024-04-30

xca - 2.6.0
Ebuild name:

app-crypt/xca-2.6.0

Description

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

Added to portage

2024-04-30

xor-analyze - 0.5-r1
Ebuild name:

app-crypt/xor-analyze-0.5-r1

Description

Program for cryptanalyzing xor 'encryption' with variable key length

Added to portage

2024-04-30

yubihsm-connector - 3.0.4
Ebuild name:

app-crypt/yubihsm-connector-3.0.4

Description

Server to expose YubiHSM 2 to network

Added to portage

2024-04-30

2024-04-29
Crypt-SMIME - 0.300.0
Ebuild name:

dev-perl/Crypt-SMIME-0.300.0

Description

S/MIME message signing, verification, encryption and decryption

Added to portage

2024-04-29

Faker - 24.14.1
Ebuild name:

dev-python/Faker-24.14.1

Description

A Python package that generates fake data for you

Added to portage

2024-04-29

WWW-Mechanize - 2.180.0
Ebuild name:

dev-perl/WWW-Mechanize-2.180.0

Description

Handy web browsing in a Perl object

Added to portage

2024-04-29

XML-LibXML - 2.21.0
Ebuild name:

dev-perl/XML-LibXML-2.21.0

Description

Perl binding for libxml2

Added to portage

2024-04-29

XML-Parser - 2.470.0
Ebuild name:

dev-perl/XML-Parser-2.470.0

Description

A perl module for parsing XML documents

Added to portage

2024-04-29

asahi-sources - 6.8.6_p4
Ebuild name:

sys-kernel/asahi-sources-6.8.6_p4

Description

Asahi Linux kernel sources

Added to portage

2024-04-29

blinker - 1.8.1
Ebuild name:

dev-python/blinker-1.8.1

Description

Fast, simple object-to-object and broadcast signaling

Added to portage

2024-04-29

bsnes-jg - 1.2.0
Ebuild name:

games-emulation/bsnes-jg-1.2.0

Description

Jolly Good Fork of bsnes

Added to portage

2024-04-29

evolution - 3.52.1
Ebuild name:

mail-client/evolution-3.52.1

Description

Integrated mail, addressbook and calendaring functionality

Added to portage

2024-04-29

evolution-data-server - 3.52.1
Ebuild name:

gnome-extra/evolution-data-server-3.52.1

Description

Evolution groupware backend

Added to portage

2024-04-29

evolution-ews - 3.52.1
Ebuild name:

gnome-extra/evolution-ews-3.52.1

Description

Evolution module for connecting to Microsoft Exchange Web Services

Added to portage

2024-04-29

fail2ban - 1.1.0
Ebuild name:

net-analyzer/fail2ban-1.1.0

Description

Scans log files and bans IPs that show malicious signs

Added to portage

2024-04-29

firefox-bin - 125.0.3
Ebuild name:

www-client/firefox-bin-125.0.3

Description

Firefox Web Browser

Added to portage

2024-04-29

gambatte-jg - 0.6.0
Ebuild name:

games-emulation/gambatte-jg-0.6.0

Description

Jolly Good Fork of Gambatte

Added to portage

2024-04-29

gcc - 15.0.0_pre20240428
Ebuild name:

sys-devel/gcc-15.0.0_pre20240428

Description

The GNU Compiler Collection

Added to portage

2024-04-29

gentle - 1.0.0
Ebuild name:

app-portage/gentle-1.0.0

Description

Gentoo Lazy Entry - a metadata.xml generator

Added to portage

2024-04-29

gentoo-sources - 6.1.89
Ebuild name:

sys-kernel/gentoo-sources-6.1.89

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2024-04-29

git-sources - 6.9_rc6
Ebuild name:

sys-kernel/git-sources-6.9_rc6

Description

The very latest -git version of the Linux kernel

Added to portage

2024-04-29

gmult - 14.0
Ebuild name:

games-kids/gmult-14.0

Description

Multiplication Puzzle emulates the multiplication game found in Emacs

Added to portage

2024-04-29

gnome-calendar - 46.1
Ebuild name:

gnome-extra/gnome-calendar-46.1

Description

Manage your calendars with simple and modern interface

Added to portage

2024-04-29

gnome-contacts - 46.0
Ebuild name:

gnome-extra/gnome-contacts-46.0

Description

GNOME contact management application

Added to portage

2024-04-29

gnome-control-center - 45.4
Ebuild name:

gnome-base/gnome-control-center-45.4

Description

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

Added to portage

2024-04-29

grep - 3.11-r1
Ebuild name:

sys-apps/grep-3.11-r1

Description

GNU regular expression matcher

Added to portage

2024-04-29

gtk - 4.14.3
Ebuild name:

gui-libs/gtk-4.14.3

Description

GTK is a multi-platform toolkit for creating graphical user interfaces

Added to portage

2024-04-29

hugo - 0.125.4
Ebuild name:

www-apps/hugo-0.125.4

Description

Fast static HTML and CSS website generator

Added to portage

2024-04-29

jbuilder - 2.12.0
Ebuild name:

dev-ruby/jbuilder-2.12.0

Description

Create JSON structures via a Builder-style DSL

Added to portage

2024-04-29

jgrf - 1.1.0
Ebuild name:

games-emulation/jgrf-1.1.0

Description

The Jolly Good Reference Frontend

Added to portage

2024-04-29

lcms - 2.16-r1
Ebuild name:

media-libs/lcms-2.16-r1

Description

A lightweight, speed optimized color management engine

Added to portage

2024-04-29

libadwaita - 1.5.0
Ebuild name:

gui-libs/libadwaita-1.5.0

Description

Building blocks for modern GNOME applications

Added to portage

2024-04-29

libcap-ng - 0.8.5
Ebuild name:

sys-libs/libcap-ng-0.8.5

Description

POSIX 1003.1e capabilities

Added to portage

2024-04-29

liblc3 - 1.1.1
Ebuild name:

media-sound/liblc3-1.1.1

Description

LC3 is an efficient low latency audio codec

Added to portage

2024-04-29

libmicrohttpd - 1.0.1
Ebuild name:

net-libs/libmicrohttpd-1.0.1

Description

Small C library to run an HTTP server as part of another application

Added to portage

2024-04-29

lidarr-bin - 2.3.1.4171
Ebuild name:

www-apps/lidarr-bin-2.3.1.4171

Description

Looks and smells like Sonarr but made for music

Added to portage

2024-04-29

line-profiler - 4.1.3
Ebuild name:

dev-python/line-profiler-4.1.3

Description

Line-by-line profiler

Added to portage

2024-04-29

linksys-tftp - 1.2.1-r4
Ebuild name:

net-ftp/linksys-tftp-1.2.1-r4

Description

TFTP client suitable for uploading to the Linksys WRT54G Wireless Rou

Added to portage

2024-04-29

lxgw-wenkai - 1.330
Ebuild name:

media-fonts/lxgw-wenkai-1.330

Description

An open-source Chinese font derived from Fontworks' Klee One

Added to portage

2024-04-29

mattermost-desktop-bin - 5.8.0_rc2
Ebuild name:

net-im/mattermost-desktop-bin-5.8.0_rc2

Description

Mattermost Desktop application

Added to portage

2024-04-29

mednafen-jg - 1.32.1
Ebuild name:

games-emulation/mednafen-jg-1.32.1

Description

Jolly Good Port of Mednafen

Added to portage

2024-04-29

myst-parser - 3.0.1
Ebuild name:

dev-python/myst-parser-3.0.1

Description

Extended commonmark compliant parser, with bridges to Sphinx

Added to portage

2024-04-29

ncurses-compat - 6.4_p20240414
Ebuild name:

sys-libs/ncurses-compat-6.4_p20240414

Description

Console display library (ABI version 5)

Added to portage

2024-04-29

nestopia-jg - 1.52.1
Ebuild name:

games-emulation/nestopia-jg-1.52.1

Description

Jolly Good Fork of Nestopia

Added to portage

2024-04-29

nextcloud - 29.0.0
Ebuild name:

www-apps/nextcloud-29.0.0

Description

Personal cloud that runs on your own server

Added to portage

2024-04-29

pedro - 1.14
Ebuild name:

net-misc/pedro-1.14

Description

Pedro is a subscription/notification communications system

Added to portage

2024-04-29

prowlarr-bin - 1.17.0.4448
Ebuild name:

www-apps/prowlarr-bin-1.17.0.4448

Description

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

Added to portage

2024-04-29

pyqtgraph - 0.13.7
Ebuild name:

dev-python/pyqtgraph-0.13.7

Description

A pure-python graphics and GUI library built on PyQt and numpy

Added to portage

2024-04-29

pytest-xdist - 3.6.1
Ebuild name:

dev-python/pytest-xdist-3.6.1

Description

Distributed testing and loop-on-failing modes

Added to portage

2024-04-29

qemu - 7.2.11
Ebuild name:

app-emulation/qemu-7.2.11

Description

QEMU + Kernel-based Virtual Machine userland tools

Added to portage

2024-04-29

qemu - 8.2.3
Ebuild name:

app-emulation/qemu-8.2.3

Description

QEMU + Kernel-based Virtual Machine userland tools

Added to portage

2024-04-29

qemu - 9.0.0
Ebuild name:

app-emulation/qemu-9.0.0

Description

QEMU + Kernel-based Virtual Machine userland tools

Added to portage

2024-04-29

radarr-bin - 5.5.1.8747
Ebuild name:

www-apps/radarr-bin-5.5.1.8747

Description

A fork of Sonarr to work with movies a la Couchpotato

Added to portage

2024-04-29

rapidyaml - 0.6.0
Ebuild name:

dev-cpp/rapidyaml-0.6.0

Description

Library to parse and emit YAML, and do it fast

Added to portage

2024-04-29

readarr-bin - 0.3.25.2515
Ebuild name:

www-apps/readarr-bin-0.3.25.2515

Description

An ebook and audiobook collection manager for Usenet and BitTorren

Added to portage

2024-04-29

regex - 2024.4.28
Ebuild name:

dev-python/regex-2024.4.28

Description

Alternative regular expression module to replace re

Added to portage

2024-04-29

sequoia-chameleon-gnupg - 0.8.0
Ebuild name:

app-crypt/sequoia-chameleon-gnupg-0.8.0

Description

Sequoia's reimplementation of the GnuPG interface

Added to portage

2024-04-29

sequoia-sq - 0.35.0
Ebuild name:

app-crypt/sequoia-sq-0.35.0

Description

CLI of the Sequoia OpenPGP implementation

Added to portage

2024-04-29

sequoia-sqv - 1.2.1
Ebuild name:

app-crypt/sequoia-sqv-1.2.1

Description

A simple OpenPGP signature verification program

Added to portage

2024-04-29

signal-cli-bin - 0.13.1-r1
Ebuild name:

net-im/signal-cli-bin-0.13.1-r1

Description

Send and receive messages of Signal Messenger over a command line i

Added to portage

2024-04-29

signal-cli-bin - 0.13.2-r1
Ebuild name:

net-im/signal-cli-bin-0.13.2-r1

Description

Send and receive messages of Signal Messenger over a command line i

Added to portage

2024-04-29

slime - 2.30
Ebuild name:

app-emacs/slime-2.30

Description

SLIME, the Superior Lisp Interaction Mode (Extended)

Added to portage

2024-04-29

systemd - 255.5-r1
Ebuild name:

sys-apps/systemd-255.5-r1

Description

System and service manager for Linux

Added to portage

2024-04-29

ubuntu-keyring - 2020.02.11.2
Ebuild name:

app-crypt/ubuntu-keyring-2020.02.11.2

Description

GnuPG archive keys of the Ubuntu archive

Added to portage

2024-04-29

ubuntu-keyring - 2020.06.17.1
Ebuild name:

app-crypt/ubuntu-keyring-2020.06.17.1

Description

GnuPG archive keys of the Ubuntu archive

Added to portage

2024-04-29

vanilla-sources - 6.1.89
Ebuild name:

sys-kernel/vanilla-sources-6.1.89

Description

Full sources for the Linux kernel

Added to portage

2024-04-29

vendor-reset - 0.1.1_pre20221205-r2
Ebuild name:

app-emulation/vendor-reset-0.1.1_pre20221205-r2

Description

Linux kernel vendor specific hardware reset module

Added to portage

2024-04-29

xconsole - 1.1.0
Ebuild name:

x11-apps/xconsole-1.1.0

Description

monitor system console messages with X

Added to portage

2024-04-29

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