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:

82099

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-11-16
86Box - 5.2-r1
Ebuild name:

app-emulation/86Box-5.2-r1

Description

Emulator of x86-based machines based on PCem

Added to portage

2025-11-16

ansible-pylibssh - 1.3.0
Ebuild name:

dev-python/ansible-pylibssh-1.3.0

Description

Python bindings for libssh client specific to Ansible use case

Added to portage

2025-11-16

aotriton-bin - 0.11b-r1
Ebuild name:

sci-libs/aotriton-bin-0.11b-r1

Description

Ahead of Time (AOT) Triton Math Library (binary package)

Added to portage

2025-11-16

curl - 8.17.0-r1
Ebuild name:

net-misc/curl-8.17.0-r1

Description

A Client that groks URLs

Added to portage

2025-11-16

elasticsearch - 8.19.2
Ebuild name:

dev-ruby/elasticsearch-8.19.2

Description

Ruby integrations for ES, elasticsearch module

Added to portage

2025-11-16

elasticsearch - 9.2.0
Ebuild name:

dev-ruby/elasticsearch-9.2.0

Description

Ruby integrations for ES, elasticsearch module

Added to portage

2025-11-16

elasticsearch-api - 8.19.2
Ebuild name:

dev-ruby/elasticsearch-api-8.19.2

Description

Ruby integrations for ES, elasticsearch-api module

Added to portage

2025-11-16

elasticsearch-api - 9.2.0
Ebuild name:

dev-ruby/elasticsearch-api-9.2.0

Description

Ruby integrations for ES, elasticsearch-api module

Added to portage

2025-11-16

erb - 6.0.0
Ebuild name:

dev-ruby/erb-6.0.0

Description

An easy to use but powerful templating system for Ruby

Added to portage

2025-11-16

fake-py - 0.11.10
Ebuild name:

dev-python/fake-py-0.11.10

Description

Minimalistic, standalone alternative fake data generator with no depende

Added to portage

2025-11-16

filezilla - 3.69.5
Ebuild name:

net-ftp/filezilla-3.69.5

Description

FTP client with lots of useful features and an intuitive interface

Added to portage

2025-11-16

fish - 4.2.1
Ebuild name:

app-shells/fish-4.2.1

Description

Friendly Interactive SHell

Added to portage

2025-11-16

fzf - 0.67.0
Ebuild name:

app-shells/fzf-0.67.0

Description

General-purpose command-line fuzzy finder, written in Golang

Added to portage

2025-11-16

gcc - 15.2.1_p20251115
Ebuild name:

sys-devel/gcc-15.2.1_p20251115

Description

The GNU Compiler Collection

Added to portage

2025-11-16

goland - 2025.2.4
Ebuild name:

dev-util/goland-2025.2.4

Description

Golang IDE by JetBrains

Added to portage

2025-11-16

hipBLASLt - 7.1.0-r2
Ebuild name:

sci-libs/hipBLASLt-7.1.0-r2

Description

General matrix-matrix operations library for AMD Instinct accelerators

Added to portage

2025-11-16

hypothesis - 6.148.0
Ebuild name:

dev-python/hypothesis-6.148.0

Description

A library for property based testing

Added to portage

2025-11-16

mocha - 2.8.2
Ebuild name:

dev-ruby/mocha-2.8.2

Description

Mocking and stubbing using a syntax like that of JMock and SchMock

Added to portage

2025-11-16

pg_background - 1.5
Ebuild name:

dev-db/pg_background-1.5

Description

Postgres Background Worker

Added to portage

2025-11-16

popwin - 1.0.0
Ebuild name:

app-emacs/popwin-1.0.0

Description

Popup window manager for Emacs

Added to portage

2025-11-16

pycharm-community - 2025.2.4
Ebuild name:

dev-util/pycharm-community-2025.2.4

Description

Intelligent Python IDE with unique code assistance and analysis

Added to portage

2025-11-16

pycharm-professional - 2025.2.4
Ebuild name:

dev-util/pycharm-professional-2025.2.4

Description

Intelligent Python IDE with unique code assistance and analy

Added to portage

2025-11-16

pytest-localftpserver - 1.4.0
Ebuild name:

dev-python/pytest-localftpserver-1.4.0

Description

A PyTest plugin which provides an FTP fixture for your tests

Added to portage

2025-11-16

rmg - 0.8.7
Ebuild name:

games-emulation/rmg-0.8.7

Description

Rosalie's Mupen GUI

Added to portage

2025-11-16

rocm_bandwidth_test - 7.1.0-r1
Ebuild name:

dev-util/rocm_bandwidth_test-7.1.0-r1

Description

Bandwidth test for ROCm

Added to portage

2025-11-16

signal-desktop-bin - 7.79.0
Ebuild name:

net-im/signal-desktop-bin-7.79.0

Description

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

Added to portage

2025-11-16

sshfs - 3.7.5
Ebuild name:

net-fs/sshfs-3.7.5

Description

Fuse-filesystem utilizing the sftp service

Added to portage

2025-11-16

starship - 1.24.1
Ebuild name:

app-shells/starship-1.24.1

Description

The minimal, blazing-fast, and infinitely customizable prompt for any sh

Added to portage

2025-11-16

syd - 3.45.0
Ebuild name:

sys-apps/syd-3.45.0

Description

seccomp and landlock based application sandbox with support for namespaces

Added to portage

2025-11-16

syd-tui - 0.2.2
Ebuild name:

sys-apps/syd-tui-0.2.2

Description

Syd's Terminal User Interface

Added to portage

2025-11-16

systemtap - 5.4
Ebuild name:

dev-debug/systemtap-5.4

Description

Linux trace/probe tool

Added to portage

2025-11-16

tavern - 3.0.1
Ebuild name:

dev-python/tavern-3.0.1

Description

A tool, library, and Pytest plugin for testing RESTful APIs

Added to portage

2025-11-16

types-psutil - 7.0.0.20251116
Ebuild name:

dev-python/types-psutil-7.0.0.20251116

Description

Typing stubs for psutil

Added to portage

2025-11-16

vivaldi - 7.7.3851.48
Ebuild name:

www-client/vivaldi-7.7.3851.48

Description

A browser for our friends

Added to portage

2025-11-16

vivaldi-snapshot - 7.7.3851.44
Ebuild name:

www-client/vivaldi-snapshot-7.7.3851.44

Description

A browser for our friends

Added to portage

2025-11-16

xmlstarlet - 1.6.1-r5
Ebuild name:

app-text/xmlstarlet-1.6.1-r5

Description

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

Added to portage

2025-11-16

zope-interface - 8.1.1
Ebuild name:

dev-python/zope-interface-8.1.1

Description

Interfaces for Python

Added to portage

2025-11-16

2025-11-15
alembic - 1.17.2
Ebuild name:

dev-python/alembic-1.17.2

Description

Database migrations tool, written by the author of SQLAlchemy

Added to portage

2025-11-15

attica - 6.20.0
Ebuild name:

kde-frameworks/attica-6.20.0

Description

Framework providing access to Open Collaboration Services

Added to portage

2025-11-15

awscli - 1.42.74
Ebuild name:

app-admin/awscli-1.42.74

Description

Universal Command Line Environment for AWS

Added to portage

2025-11-15

awscli-bin - 2.31.37
Ebuild name:

app-admin/awscli-bin-2.31.37

Description

command line interface for Amazon Web Services

Added to portage

2025-11-15

baloo - 6.20.0
Ebuild name:

kde-frameworks/baloo-6.20.0

Description

Framework for searching and managing metadata

Added to portage

2025-11-15

bluez - 5.84-r1
Ebuild name:

net-wireless/bluez-5.84-r1

Description

Bluetooth Tools and System Daemons for Linux

Added to portage

2025-11-15

bluez-qt - 6.20.0
Ebuild name:

kde-frameworks/bluez-qt-6.20.0

Description

Qt wrapper for Bluez 5 DBus API

Added to portage

2025-11-15

boto3 - 1.40.74
Ebuild name:

dev-python/boto3-1.40.74

Description

The AWS SDK for Python

Added to portage

2025-11-15

botocore - 1.40.74
Ebuild name:

dev-python/botocore-1.40.74

Description

Low-level, data-driven core of boto 3

Added to portage

2025-11-15

breeze-icons - 6.20.0
Ebuild name:

kde-frameworks/breeze-icons-6.20.0

Description

Breeze SVG icon theme

Added to portage

2025-11-15

chrome-binary-plugins - 142.0.7444.162
Ebuild name:

www-plugins/chrome-binary-plugins-142.0.7444.162

Description

Binary plugins from Google Chrome for use in Chrom

Added to portage

2025-11-15

chrome-binary-plugins - 143.0.7499.25_beta
Ebuild name:

www-plugins/chrome-binary-plugins-143.0.7499.25_beta

Description

Binary plugins from Google Chrome for use in C

Added to portage

2025-11-15

chrome-binary-plugins - 144.0.7524.0_alpha
Ebuild name:

www-plugins/chrome-binary-plugins-144.0.7524.0_alpha

Description

Binary plugins from Google Chrome for use in C

Added to portage

2025-11-15

chromedriver-bin - 142.0.7444.162
Ebuild name:

www-apps/chromedriver-bin-142.0.7444.162

Description

WebDriver for Chrome

Added to portage

2025-11-15

dhcpcd - 10.3.0
Ebuild name:

net-misc/dhcpcd-10.3.0

Description

A fully featured, yet light weight RFC2131 compliant DHCP client

Added to portage

2025-11-15

django-template-partials - 25.3
Ebuild name:

dev-python/django-template-partials-25.3

Description

Reusable named inline partials for the Django Template Lan

Added to portage

2025-11-15

dns-lexicon - 3.23.2
Ebuild name:

dev-python/dns-lexicon-3.23.2

Description

Manipulate DNS records on various DNS providers in a standardized/agn

Added to portage

2025-11-15

extra-cmake-modules - 6.20.0
Ebuild name:

kde-frameworks/extra-cmake-modules-6.20.0

Description

Extra modules and scripts for CMake

Added to portage

2025-11-15

fake-py - 0.11.9
Ebuild name:

dev-python/fake-py-0.11.9

Description

Minimalistic, standalone alternative fake data generator with no dependen

Added to portage

2025-11-15

fatsort - 1.7.679
Ebuild name:

sys-fs/fatsort-1.7.679

Description

Sorts files on FAT16/32 partitions, ideal for basic audio players

Added to portage

2025-11-15

findimports - 2.7.0
Ebuild name:

dev-python/findimports-2.7.0

Description

Python module import analysis tool

Added to portage

2025-11-15

frameworkintegration - 6.20.0
Ebuild name:

kde-frameworks/frameworkintegration-6.20.0

Description

Framework for integrating Qt applications with KDE Plasm

Added to portage

2025-11-15

gcc - 13.4.1_p20251113
Ebuild name:

sys-devel/gcc-13.4.1_p20251113

Description

The GNU Compiler Collection

Added to portage

2025-11-15

gcc - 14.3.1_p20251114
Ebuild name:

sys-devel/gcc-14.3.1_p20251114

Description

The GNU Compiler Collection

Added to portage

2025-11-15

golangci-lint - 2.6.2
Ebuild name:

dev-go/golangci-lint-2.6.2

Description

Fast linters runner for Go

Added to portage

2025-11-15

google-chrome - 142.0.7444.162
Ebuild name:

www-client/google-chrome-142.0.7444.162

Description

The web browser from Google

Added to portage

2025-11-15

google-chrome-beta - 143.0.7499.25
Ebuild name:

www-client/google-chrome-beta-143.0.7499.25

Description

The web browser from Google

Added to portage

2025-11-15

google-chrome-unstable - 144.0.7524.0
Ebuild name:

www-client/google-chrome-unstable-144.0.7524.0

Description

The web browser from Google

Added to portage

2025-11-15

hcloud - 2.11.1
Ebuild name:

dev-python/hcloud-2.11.1

Description

Official Hetzner Cloud python library

Added to portage

2025-11-15

iperf - 3.20
Ebuild name:

net-misc/iperf-3.20

Description

TCP, UDP, and SCTP network bandwidth measurement tool

Added to portage

2025-11-15

jkqtplotter - 5.0.0_pre20251013-r1
Ebuild name:

sci-libs/jkqtplotter-5.0.0_pre20251013-r1

Description

Extensive Qt Plotter framework

Added to portage

2025-11-15

kapidox - 6.20.0
Ebuild name:

kde-frameworks/kapidox-6.20.0

Description

Framework for building KDE API documentation in a standard format and

Added to portage

2025-11-15

karchive - 6.20.0
Ebuild name:

kde-frameworks/karchive-6.20.0

Description

Framework for reading, creation, and manipulation of various archive

Added to portage

2025-11-15

kauth - 6.20.0
Ebuild name:

kde-frameworks/kauth-6.20.0

Description

Framework to let applications perform actions as a privileged user

Added to portage

2025-11-15

kbookmarks - 6.20.0
Ebuild name:

kde-frameworks/kbookmarks-6.20.0

Description

Framework for managing bookmarks stored in XBEL format

Added to portage

2025-11-15

kcalendarcore - 6.20.0
Ebuild name:

kde-frameworks/kcalendarcore-6.20.0

Description

Library for interfacing with calendars

Added to portage

2025-11-15

kcmutils - 6.20.0
Ebuild name:

kde-frameworks/kcmutils-6.20.0

Description

Framework to work with KDE System Settings modules

Added to portage

2025-11-15

kcodecs - 6.20.0
Ebuild name:

kde-frameworks/kcodecs-6.20.0

Description

Framework for manipulating strings using various encodings

Added to portage

2025-11-15

kcolorscheme - 6.20.0
Ebuild name:

kde-frameworks/kcolorscheme-6.20.0

Description

Framework for downloading and sharing additional application dat

Added to portage

2025-11-15

kcompletion - 6.20.0
Ebuild name:

kde-frameworks/kcompletion-6.20.0

Description

Framework for common completion tasks such as filename or URL com

Added to portage

2025-11-15

kconfig - 6.20.0
Ebuild name:

kde-frameworks/kconfig-6.20.0

Description

Framework for reading and writing configuration

Added to portage

2025-11-15

kconfigwidgets - 6.20.0
Ebuild name:

kde-frameworks/kconfigwidgets-6.20.0

Description

Framework providing an assortment of configuration-related wid

Added to portage

2025-11-15

kcontacts - 6.20.0
Ebuild name:

kde-frameworks/kcontacts-6.20.0

Description

Address book API based on KDE Frameworks

Added to portage

2025-11-15

kcoreaddons - 6.20.0
Ebuild name:

kde-frameworks/kcoreaddons-6.20.0

Description

Framework for solving common problems such as caching, randomisat

Added to portage

2025-11-15

kcrash - 6.20.0
Ebuild name:

kde-frameworks/kcrash-6.20.0

Description

Framework for intercepting and handling application crashes

Added to portage

2025-11-15

kdav - 6.20.0
Ebuild name:

kde-frameworks/kdav-6.20.0

Description

DAV protocol implemention with KJobs

Added to portage

2025-11-15

kdbusaddons - 6.20.0
Ebuild name:

kde-frameworks/kdbusaddons-6.20.0

Description

Framework for registering services and applications per freedeskt

Added to portage

2025-11-15

kdeclarative - 6.20.0
Ebuild name:

kde-frameworks/kdeclarative-6.20.0

Description

Framework providing integration of QML and KDE work spaces

Added to portage

2025-11-15

kded - 6.20.0
Ebuild name:

kde-frameworks/kded-6.20.0

Description

Central daemon of KDE workspaces

Added to portage

2025-11-15

kdesu - 6.20.0
Ebuild name:

kde-frameworks/kdesu-6.20.0

Description

Framework to handle super user actions

Added to portage

2025-11-15

kdnssd - 6.20.0
Ebuild name:

kde-frameworks/kdnssd-6.20.0

Description

Framework for network service discovery using Zeroconf

Added to portage

2025-11-15

kdoctools - 6.20.0
Ebuild name:

kde-frameworks/kdoctools-6.20.0

Description

Tools to generate documentation in various formats from DocBook fil

Added to portage

2025-11-15

kfilemetadata - 6.20.0
Ebuild name:

kde-frameworks/kfilemetadata-6.20.0

Description

Library for extracting file metadata

Added to portage

2025-11-15

kglobalaccel - 6.20.0
Ebuild name:

kde-frameworks/kglobalaccel-6.20.0

Description

Framework to handle global shortcuts

Added to portage

2025-11-15

kguiaddons - 6.20.0
Ebuild name:

kde-frameworks/kguiaddons-6.20.0

Description

Framework providing assorted high-level user interface components

Added to portage

2025-11-15

kholidays - 6.20.0
Ebuild name:

kde-frameworks/kholidays-6.20.0

Description

Library to determine holidays and other special events for a geogra

Added to portage

2025-11-15

ki18n - 6.20.0
Ebuild name:

kde-frameworks/ki18n-6.20.0

Description

Framework based on Gettext for internationalizing user interface text

Added to portage

2025-11-15

kiconthemes - 6.20.0
Ebuild name:

kde-frameworks/kiconthemes-6.20.0

Description

Framework for icon theming and configuration

Added to portage

2025-11-15

kidletime - 6.20.0
Ebuild name:

kde-frameworks/kidletime-6.20.0

Description

Framework for detection and notification of device idle time

Added to portage

2025-11-15

kimageformats - 6.20.0
Ebuild name:

kde-frameworks/kimageformats-6.20.0

Description

Framework providing additional format plugins for Qt's image I/

Added to portage

2025-11-15

kio - 6.20.0
Ebuild name:

kde-frameworks/kio-6.20.0

Description

Framework providing transparent file and data management

Added to portage

2025-11-15

kirigami - 6.20.0
Ebuild name:

kde-frameworks/kirigami-6.20.0

Description

Lightweight user interface framework for mobile and convergent appli

Added to portage

2025-11-15

kitemmodels - 6.20.0
Ebuild name:

kde-frameworks/kitemmodels-6.20.0

Description

Framework providing data models to help with tasks such as sortin

Added to portage

2025-11-15

kitemviews - 6.20.0
Ebuild name:

kde-frameworks/kitemviews-6.20.0

Description

Framework providing additional widgets for item models

Added to portage

2025-11-15

kjobwidgets - 6.20.0
Ebuild name:

kde-frameworks/kjobwidgets-6.20.0

Description

Framework providing assorted widgets for showing the progress of

Added to portage

2025-11-15

knewstuff - 6.20.0
Ebuild name:

kde-frameworks/knewstuff-6.20.0

Description

Framework for downloading and sharing additional application data

Added to portage

2025-11-15

knotifications - 6.20.0
Ebuild name:

kde-frameworks/knotifications-6.20.0

Description

Framework for notifying the user of an event

Added to portage

2025-11-15

knotifyconfig - 6.20.0
Ebuild name:

kde-frameworks/knotifyconfig-6.20.0

Description

Framework for configuring desktop notifications

Added to portage

2025-11-15

kpackage - 6.20.0
Ebuild name:

kde-frameworks/kpackage-6.20.0

Description

Framework to install and load packages of non binary content

Added to portage

2025-11-15

kparts - 6.20.0
Ebuild name:

kde-frameworks/kparts-6.20.0

Description

Framework providing elaborate user-interface components

Added to portage

2025-11-15

kpeople - 6.20.0
Ebuild name:

kde-frameworks/kpeople-6.20.0

Description

KDE contact person abstraction library

Added to portage

2025-11-15

kplotting - 6.20.0
Ebuild name:

kde-frameworks/kplotting-6.20.0

Description

Framework providing easy data-plotting functions

Added to portage

2025-11-15

kpty - 6.20.0
Ebuild name:

kde-frameworks/kpty-6.20.0

Description

Framework for pseudo terminal devices and running child processes

Added to portage

2025-11-15

kquickcharts - 6.20.0
Ebuild name:

kde-frameworks/kquickcharts-6.20.0

Description

QtQuick plugin providing high-performance charts

Added to portage

2025-11-15

krunner - 6.20.0
Ebuild name:

kde-frameworks/krunner-6.20.0

Description

Framework for providing different actions given a string query

Added to portage

2025-11-15

ksecretd-services - 6.20.0
Ebuild name:

kde-frameworks/ksecretd-services-6.20.0

Description

D-Bus service files for ksecretd kwallet runtime component

Added to portage

2025-11-15

kservice - 6.20.0
Ebuild name:

kde-frameworks/kservice-6.20.0

Description

Advanced plugin and service introspection

Added to portage

2025-11-15

kstatusnotifieritem - 6.20.0
Ebuild name:

kde-frameworks/kstatusnotifieritem-6.20.0

Description

Implementation of Status Notifier Items

Added to portage

2025-11-15

ksvg - 6.20.0
Ebuild name:

kde-frameworks/ksvg-6.20.0

Description

Components for handling SVGs

Added to portage

2025-11-15

ktexteditor - 6.20.0
Ebuild name:

kde-frameworks/ktexteditor-6.20.0

Description

Framework providing a full text editor component

Added to portage

2025-11-15

ktexttemplate - 6.20.0
Ebuild name:

kde-frameworks/ktexttemplate-6.20.0

Description

Library to allow separating the structure of documents from dat

Added to portage

2025-11-15

ktextwidgets - 6.20.0
Ebuild name:

kde-frameworks/ktextwidgets-6.20.0

Description

Framework providing an assortment of widgets for displaying and

Added to portage

2025-11-15

kunitconversion - 6.20.0
Ebuild name:

kde-frameworks/kunitconversion-6.20.0

Description

Framework for converting units

Added to portage

2025-11-15

kuserfeedback - 6.20.0
Ebuild name:

kde-frameworks/kuserfeedback-6.20.0

Description

Framework to collect user feedback for applications via telemet

Added to portage

2025-11-15

kwallet - 6.20.0
Ebuild name:

kde-frameworks/kwallet-6.20.0

Description

Interface to KWallet Framework providing desktop-wide storage for pas

Added to portage

2025-11-15

kwallet-runtime - 6.20.0
Ebuild name:

kde-frameworks/kwallet-runtime-6.20.0

Description

Framework providing desktop-wide storage for passwords

Added to portage

2025-11-15

kwidgetsaddons - 6.20.0
Ebuild name:

kde-frameworks/kwidgetsaddons-6.20.0

Description

An assortment of high-level widgets for common tasks

Added to portage

2025-11-15

kwindowsystem - 6.20.0
Ebuild name:

kde-frameworks/kwindowsystem-6.20.0

Description

Framework providing access to properties and features of the wi

Added to portage

2025-11-15

kxmlgui - 6.20.0
Ebuild name:

kde-frameworks/kxmlgui-6.20.0

Description

Framework for managing menu and toolbar actions in an abstract way

Added to portage

2025-11-15

libevdev - 0.13.1
Ebuild name:

dev-python/libevdev-0.13.1

Description

Python wrappers for the libevdev library

Added to portage

2025-11-15

linux-firmware - 20251111
Ebuild name:

sys-kernel/linux-firmware-20251111

Description

Linux firmware files

Added to portage

2025-11-15

lossless-cut-bin - 3.67.1
Ebuild name:

media-video/lossless-cut-bin-3.67.1

Description

The swiss army knife of lossless video/audio editing

Added to portage

2025-11-15

mac - 11.82
Ebuild name:

media-sound/mac-11.82

Description

Monkey's Audio Codecs

Added to portage

2025-11-15

make - 4.4.1-r102
Ebuild name:

dev-build/make-4.4.1-r102

Description

Standard tool to compile source trees

Added to portage

2025-11-15

mariadb - 11.8.5
Ebuild name:

dev-db/mariadb-11.8.5

Description

An enhanced, drop-in replacement for MySQL

Added to portage

2025-11-15

mattermost-desktop-bin - 6.0.1_rc1
Ebuild name:

net-im/mattermost-desktop-bin-6.0.1_rc1

Description

Mattermost Desktop application

Added to portage

2025-11-15

microsoft-edge - 142.0.3595.80
Ebuild name:

www-client/microsoft-edge-142.0.3595.80

Description

The web browser from Microsoft

Added to portage

2025-11-15

microsoft-edge-beta - 143.0.3650.15
Ebuild name:

www-client/microsoft-edge-beta-143.0.3650.15

Description

The web browser from Microsoft

Added to portage

2025-11-15

microsoft-edge-beta - 143.0.3650.19
Ebuild name:

www-client/microsoft-edge-beta-143.0.3650.19

Description

The web browser from Microsoft

Added to portage

2025-11-15

microsoft-edge-beta - 143.0.3650.7
Ebuild name:

www-client/microsoft-edge-beta-143.0.3650.7

Description

The web browser from Microsoft

Added to portage

2025-11-15

microsoft-edge-dev - 144.0.3664.1
Ebuild name:

www-client/microsoft-edge-dev-144.0.3664.1

Description

The web browser from Microsoft

Added to portage

2025-11-15

modemmanager-qt - 6.20.0
Ebuild name:

kde-frameworks/modemmanager-qt-6.20.0

Description

ModemManager bindings for Qt

Added to portage

2025-11-15

mongodb-compass-bin - 1.48.2
Ebuild name:

dev-db/mongodb-compass-bin-1.48.2

Description

GUI for MongoDB

Added to portage

2025-11-15

moor - 2.9.1
Ebuild name:

sys-apps/moor-2.9.1

Description

Pager designed to do the right thing without any configuration

Added to portage

2025-11-15

netcdf - 4.9.3-r2
Ebuild name:

sci-libs/netcdf-4.9.3-r2

Description

Scientific library and interface for array oriented data access

Added to portage

2025-11-15

networkmanager-qt - 6.20.0
Ebuild name:

kde-frameworks/networkmanager-qt-6.20.0

Description

NetworkManager bindings for Qt

Added to portage

2025-11-15

nuitka - 2.8.6
Ebuild name:

dev-python/nuitka-2.8.6

Description

Python to native compiler

Added to portage

2025-11-15

obs-studio - 32.0.2-r1
Ebuild name:

media-video/obs-studio-32.0.2-r1

Description

Software for Recording and Streaming Live Video Content

Added to portage

2025-11-15

opera-beta - 124.0.5705.12
Ebuild name:

www-client/opera-beta-124.0.5705.12

Description

A fast and secure web browser

Added to portage

2025-11-15

orjson - 3.11.4-r1
Ebuild name:

dev-python/orjson-3.11.4-r1

Description

Fast, correct Python JSON library supporting dataclasses, datetimes, an

Added to portage

2025-11-15

prettytable - 3.17.0
Ebuild name:

dev-python/prettytable-3.17.0

Description

Easily displaying tabular data in a visually appealing ASCII table fo

Added to portage

2025-11-15

prison - 6.20.0
Ebuild name:

kde-frameworks/prison-6.20.0

Description

QRCode and data matrix barcode library

Added to portage

2025-11-15

purpose - 6.20.0
Ebuild name:

kde-frameworks/purpose-6.20.0

Description

Library for providing abstractions to get the developer's purposes fu

Added to portage

2025-11-15

purpose-kaccounts-services - 6.20.0
Ebuild name:

kde-frameworks/purpose-kaccounts-services-6.20.0

Description

KAccounts generated service files for nextcloud an

Added to portage

2025-11-15

pyghmi - 1.6.7
Ebuild name:

dev-python/pyghmi-1.6.7

Description

A pure python implementation of IPMI protocol

Added to portage

2025-11-15

qbs - 3.1.1
Ebuild name:

dev-util/qbs-3.1.1

Description

Modern build tool for software projects

Added to portage

2025-11-15

qqc2-desktop-style - 6.20.0
Ebuild name:

kde-frameworks/qqc2-desktop-style-6.20.0

Description

Style for QtQuickControls 2 that uses QWidget's QStyle for

Added to portage

2025-11-15

rack - 2.2.21
Ebuild name:

dev-ruby/rack-2.2.21

Description

A modular Ruby webserver interface

Added to portage

2025-11-15

rack - 3.1.19
Ebuild name:

dev-ruby/rack-3.1.19

Description

A modular Ruby webserver interface

Added to portage

2025-11-15

rack - 3.2.4
Ebuild name:

dev-ruby/rack-3.2.4

Description

A modular Ruby webserver interface

Added to portage

2025-11-15

scala-cli-bin - 1.10.1
Ebuild name:

dev-java/scala-cli-bin-1.10.1

Description

CLI to interact with Scala and Java

Added to portage

2025-11-15

selenium-webdriver - 4.38.0
Ebuild name:

dev-ruby/selenium-webdriver-4.38.0

Description

This gem provides Ruby bindings for WebDriver

Added to portage

2025-11-15

solid - 6.20.0
Ebuild name:

kde-frameworks/solid-6.20.0

Description

Provider for platform independent hardware discovery, abstraction and m

Added to portage

2025-11-15

sonnet - 6.20.0
Ebuild name:

kde-frameworks/sonnet-6.20.0

Description

Framework for providing spell-checking through abstraction of popular

Added to portage

2025-11-15

syndication - 6.20.0
Ebuild name:

kde-frameworks/syndication-6.20.0

Description

Library for parsing RSS and Atom feeds

Added to portage

2025-11-15

syntax-highlighting - 6.20.0
Ebuild name:

kde-frameworks/syntax-highlighting-6.20.0

Description

Framework for syntax highlighting

Added to portage

2025-11-15

terraform - 1.13.5
Ebuild name:

app-admin/terraform-1.13.5

Description

A tool for building, changing, and combining infrastructure safely

Added to portage

2025-11-15

thin-provisioning-tools - 1.3.0
Ebuild name:

sys-block/thin-provisioning-tools-1.3.0

Description

A suite of tools for thin provisioning on Linux

Added to portage

2025-11-15

threadweaver - 6.20.0
Ebuild name:

kde-frameworks/threadweaver-6.20.0

Description

Framework for managing threads using job and queue-based interfa

Added to portage

2025-11-15

thunderbird - 140.5.0
Ebuild name:

mail-client/thunderbird-140.5.0

Description

Thunderbird Mail Client

Added to portage

2025-11-15

thunderbird-bin - 140.5.0
Ebuild name:

mail-client/thunderbird-bin-140.5.0

Description

Thunderbird Mail Client

Added to portage

2025-11-15

tpm2-abrmd - 3.0.0-r2
Ebuild name:

app-crypt/tpm2-abrmd-3.0.0-r2

Description

TPM2 Access Broker & Resource Manager

Added to portage

2025-11-15

tpm2-openssl - 1.3.0
Ebuild name:

app-crypt/tpm2-openssl-1.3.0

Description

OpenSSL Provider for TPM2 integration

Added to portage

2025-11-15

tpm2-pkcs11 - 1.9.1
Ebuild name:

app-crypt/tpm2-pkcs11-1.9.1

Description

A PKCS11 interface for TPM2 hardware

Added to portage

2025-11-15

tpm2-tools - 5.7
Ebuild name:

app-crypt/tpm2-tools-5.7

Description

Tools for the TPM 2.0 TSS

Added to portage

2025-11-15

tpm2-totp - 0.3.0-r1
Ebuild name:

app-crypt/tpm2-totp-0.3.0-r1

Description

Attest the trustworthiness of a device against a human using time-base

Added to portage

2025-11-15

trove-classifiers - 2025.11.14.15
Ebuild name:

dev-python/trove-classifiers-2025.11.14.15

Description

Canonical source for classifiers on PyPI (pypi.org)

Added to portage

2025-11-15

types-docutils - 0.22.3.20251115
Ebuild name:

dev-python/types-docutils-0.22.3.20251115

Description

Typing stubs for docutils

Added to portage

2025-11-15

types-psutil - 7.0.0.20251115
Ebuild name:

dev-python/types-psutil-7.0.0.20251115

Description

Typing stubs for psutil

Added to portage

2025-11-15

wine-vanilla - 10.19
Ebuild name:

app-emulation/wine-vanilla-10.19

Description

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

Added to portage

2025-11-15

zmq-anyio - 0.3.12
Ebuild name:

dev-python/zmq-anyio-0.3.12

Description

Asynchronous API for ZMQ using AnyIO

Added to portage

2025-11-15

zmq-anyio - 0.3.13
Ebuild name:

dev-python/zmq-anyio-0.3.13

Description

Asynchronous API for ZMQ using AnyIO

Added to portage

2025-11-15

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