Pidora Administration

From CDOT Wiki
Jump to: navigation, search
Pidora-horizontal.png

Fedora-Style System Administration

Pidora is managed in the same way as most Linux systems (specifically, like a Fedora system, since most of the software packages in Pidora come from the Fedora ARM project).

If you're new to Linux system administration or are coming from another distribution (such as Ubuntu), here are some quick tips on Fedora Remix system administration:

Root Privilege: root, consolehelper, su, and sudo

Linux is designed for use by multiple users. Most users do not have access (privilege) to perform system administration operations or to read other users' files, unless specifically granted permission. This security division also makes it harder for malicious web or e-mail content to exploit a bug to attack the core of the operating system.

The "root" user has full privilege -- she can do anything. There are four ways to gain root privilege:

  1. Login as "root" and enter the root password. This is useful when you can't log in as any other user. It is unwise to run applications as root unnecessarily -- for example, if you run a web browser as root, and a remote site exploits a security bug in the browser, then running the browser as root could enable the remote attacker could add or remove software or perform other administrative tasks.
  2. Use an application that is hooked into the consolehelper system, such as system-config-network. You will be prompted for a password (either the user password or the root password, depending on the application configuration) and then the application will run with enhanced privilege. Most of the applications on the Administration menu in the graphical interface work this way.
  3. Use the "su" command to switch users (by default, it will switch to the root user). Type su and press enter, and enter the root password when prompted. This is useful when you have a number of system administration commands you want to run in a row. However, you must remember to switch back to your regular user account as soon as you no longer require privilege -- to do so, type exit or press Ctrl-D (for "Done"!).
  4. Use the sudo command to switch users for the duration of one command.
    • This option requires that your account be configured with administrator access (you mush be in the "wheel" group). If you selected the "Add to administrators group" option during firstboot, this will already be set up for you. To add this access to other accounts, execute this command as root: usermod -aG wheel username
    • To execute a command as root, just write "sudo" in front of the command. You will be asked for your password, and the command will be executed as the root user. For example: sudo yum install inkscape

Updating, Adding, and Removing Software

The Remix uses RPM packages with the YUM package manager. This provides a database of all of the software installed on the system, a way to install/remove/update software packages without breaking software dependencies, and network access to remote software repositories.

Adding/removing software with YUM requires an Internet connection.

Package Management from the Command Line

These are the most common YUM commands:

  • Update software:
    • yum update packagename # Updates just the one package.
    • yum update # Updates all packages
  • Search for a package by name:
    • yum list packagename # Will match only packagename.
    • yum list "*partialname*" # Will match any package with partialname in the package name.
  • Search for a package by name or description:
    • yum search text
  • Display information about a package:
    • yum info packagename
  • Install a package:
    • yum install packagename # More than one packagename may be given.
  • Install a package group:
    • yum groupinstall "groupname"
    • yum install "@groupname" # Useful if you want to install some individual packages and a group at the same time.
  • List package groups:
    • yum grouplist
  • List the packages in a group:
    • yum groupinfo "groupname"
  • Remove a package:
    • yum remove "packagename" # Beware! This will also remove packages which depend on what you're removing. Read the list of packages to be removed carefully before approving it.
  • Remove a package group:
    • yum groupremove "groupname"<code>
    • <code>yum remove "@groupname" # Useful if you want to remove some individual packages and a group at the same time.

For more information, see the manpage for yum.

Package Management Using the Graphical User Interface

To update software graphically, use the menu option Administration > Software Update

To add/remove software graphically, use the menu option Administration > Add and Remove Software

Adding and removing Users

User Management from the Command Line

  • Add a user:
    • useradd name # The -m option required on some systems is not needed - the user's home directory will be created automatically.
    • useradd -c "Full Name" username
  • Set a password:
    • passwd username
  • Delete a user:
    • userdel username
    • userdel -r username # Caution! This deletes the user's files as well.

User Management from the Graphical User Interface

To manage users graphically, use the menu option Administration > Users and Groups