Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

yast(8) [suse man page]

YAST2(8)						       System configuration							  YAST2(8)

NAME
YaST2 - universal configuration utility SYNOPSIS
yast2 [ options ] [ module ] [ module specific options ] yast2 --install <package> [ <package> [ ... ] ] DESCRIPTION
YaST2 is used to configure the system. It can configure a common hardware (sound cards, printers, keyboards, mice), network connections (network cards, ISDN cards, modems, DSL connections), network clients and services (NFS, NIS), as well as a general system options (lan- guage, partitioning, software, bootloader). YaST2 comes with three frontends: GTK , QT and ncurses. All frontends are functionally equivalent. The correct frontend is selected auto- matically based on the available components and the current environment (the DISPLAY variable). Use yast2 alone to launch the YaST2 Control Center from which you can select a particular configuration module or use yast2 <module> to launch the module directly. OPTIONS
--qt Run YaST in the QT graphical frontend --gtk Run YaST in the GTK graphical frontend --ncurses Run YaST in the ncurses text-mode frontend -g, --geometry Default window size (QT frontend only). -h, --help Print a usage and exit. -i, --install <package> [ <package> [ ... ] ] Install an RPM package. The package can be a single short package name (e.g. gvim) which will be installed with dependency checking, or the full path to an rpm package (e.g /tmp/gvim.rpm) which will be installed without dependency checking. --remove <package> [ <package> [ ... ] ] Remove an RPM package. The package can be short package names (e.g. gvim) which will be removed with dependency checking. -l, --list List all available modules. To obtain usage info about a module, use "yast module help". MODULES WITH COMMAND LINE INTERFACE
This is a list of YaST modules currently supporting command line interface: answering_machine, bootloader, ca_mgm, dhcp-server, dns, dns-server, fax, firewall, groups, host, http-server, idedma, inetd, irda, ker- beros-client, keyboard, lan, language, ldap, mail, mouse, nfs, nfs_server, nis, nis_server, ntp-client, power-management, powertweak, printer, profile-manager, proxy, remote, routing, runlevel, samba-client, samba-server, security, sound, sysconfig, tftp-server, timezone, tv, users To obtain a list of basic commands for using a YaST module with support for command line interface, use: yast2 module help To get more comprehensive information about the commands available for a YaST module, use: yast2 module longhelp To get information about the commands available for a YaST module in a XML formatted file, use: yast2 module xmlhelp xmlfile= <filename> To get information about a specific command of a YaST module, use: yast2 module command help To start an interactive console in which you can execute commands of a YaST module, use yast2 module interactive FILES
/var/log/YaST2/* Logs /etc/sysconfig/yast2, $HOME/.yast2/yast2 Configures the preferred GUI. EXIT STATUS
0 Successful program execution. 1 Too few arguments. 5 Error in arguments. 16 Generic module error. > 16 Module specific error codes. AUTHOR
Michal Svec <msvec@suse.cz> - manual page Jakub Friedl <jfriedl@suse.cz> - manual page SEE ALSO
Documentation in /usr/share/doc/packages/yast2*. yast2 January 2003 YAST2(8)

Check Out this Related Man Page

SEMODULE(8)								NSA							       SEMODULE(8)

NAME
semodule - Manage SELinux policy modules. SYNOPSIS
semodule [options]... MODE [MODES]... DESCRIPTION
semodule is the tool used to manage SELinux policy modules, including installing, upgrading, listing and removing modules. semodule may also be used to force a rebuild of policy from the module store and/or to force a reload of policy without performing any other transac- tion. semodule acts on module packages created by semodule_package. Conventionally, these files have a .pp suffix (policy package), although this is not mandated in any way. OPTIONS
-R, --reload force a reload of policy -B, --build force a rebuild of policy (also reloads unless -n is used) -D, --disable_dontaudit Temporarily remove dontaudits from policy. Reverts whenever policy is rebuilt -i,--install=MODULE_PKG install/replace a module package -u,--upgrade=MODULE_PKG upgrade an existing module package, or install if the module does not exist -b,--base=MODULE_PKG install/replace base module package -d,--disable=MODULE_NAME disable existing module -e,--enable=MODULE_NAME enable existing module -p,--path=ROOTPATH use an alternate root path -r,--remove=MODULE_NAME remove existing module -l,--list-modules display list of installed modules (other than base) -s,--store name of the store to operate on -n,--noreload do not reload policy after commit -h,--help prints help message and quit -v,--verbose be verbose EXAMPLE
# Install or replace a base policy package. $ semodule -b base.pp # Install or replace a non-base policy package. $ semodule -i httpd.pp # List non-base modules. $ semodule -l # Turn on all AVC Messages for which SELinux currently is "dontaudit"ing. $ semodule -DB # Turn "dontaudit" rules back on. $ semodule -B # Install or replace all non-base modules in the current directory. $ semodule -i *.pp # Install or replace all modules in the current directory. $ ls *.pp | grep -Ev "base.pp|enableaudit.pp" | xargs /usr/sbin/semodule -b base.pp -i SEE ALSO
checkmodule(8), semodule_package(8) AUTHORS
This manual page was written by Dan Walsh <dwalsh@redhat.com>. The program was written by Karl MacMillan <kmacmillan@tresys.com>, Joshua Brindle <jbrindle@tresys.com>, Jason Tang <jtang@tresys.com> Security Enhanced Linux Nov 2005 SEMODULE(8)
Man Page