Tutoriais/Instalar o software da KDE
Instale o software KDE
Para instalar o software KDE, recomendamos o uso dos meios de sua distribuição. Aqui está como você encontra o nome e a versão da sua distribuição.
como este
, é algo que você precisa digitar, exatamente como aparece lá.
A partir da GUI
Discover
O Discover é o Centro de Software do KDE e trabalha com todo o fluxo de aplicativos de suporte à distribuição (Ubuntu, Debian, Arch-Linux, OpenSUSE, Red Hat, Fedora, ...). Se você quiser obter mais informações sobre a descoberta, visite a página discover.
openSUSE - YaST
No openSUSE, você tem a opção entre usar a ferramenta de gerenciamento de software Discover e YaST.
You find openSUSE's package management tool in the
tab of the start menu. Open that and click on the icon to start the package manager.Use the search field to find the package that you wish to install; you can search on the package name or the package description, and you only need to enter part of the name. You will then be presented with a list of packages matching your search. Click the selection boxes for the packages to be installed and then click this page for more on package management and openSUSE.
. SeeWindows Store
Some KDE applications are also available in the Windows Store. For example, you can buy Krita a digital painting software or KStars.
From the command line
If you find that using a package manager is unbearably slow, you will want to use command-line installation. This is much faster, but the disadvantage is that you need to know the exact name of the package you want to install. Each system has helpful commands for searching, for instance, so try using the first word of install command below, with --help appended. As an example, yum --help
will list the commands you can use for Fedora, but they are many and can be confusing at first.
openSUSE
With openSUSE you install software using zypper
for example to install KWrite you will open a console and enter
zypper in kwrite
.
Ubuntu
With Ubuntu Linux you install software using apt. For example to install KWrite you will open a console and enter
sudo apt install kwrite
Fedora
Fedora uses yum so to install KWrite you would open a console and type yum install kwrite
If you are unsure of the name of a package, you can use yum list with wildcards to see all the packages with a word as part of the package name — for example yum list *network*
will list all available packages with "network" as part of the name. Casting even wider, yum search mpeg
will list all packages that either have mpeg in the name or in the description of the package.
Gentoo
With Gentoo you install software using emerge, e.g. for KWrite you would open a console and type emerge --ask kwrite
(using --ask to get an overview of necessary dependencies and USE flag options before confirming). If you are unsure of the name of a package, you can use emerge --search to see all the packages with a word as part of the package name — e.g. emerge --search network
will list all available packages with "network" as part of the name.
Mageia and OpenMandriva Lx
You can use urpmi to install KDE software from a command line. Other useful commands can be found at Wikipedia's Urpmi page
Arch linux and Manjaro
With Arch linux and arch linux based distribution like Manjaro, you can install software using the pacman utility. For example to install KWrite you will open a console and enter
sudo pacman -S kwrite