Pietnaste_21

 0    21 フィッシュ    michalesq
印刷 遊びます 自分をチェック
 
質問 - 答え -
How to run kickstart?
学び始める
system-config-kickstart
What should Admin install to enable virtualization?
学び始める
yum install virt-manager qemu-kvm qemu-img /// yum install libvirt libvirt-python python-virtinst libvirt-client
What service needs to be started and enabled to lanuch VM Manager?
学び始める
systemctl enable libvirtd // systemctl start libvirtd
How to launch console for VMs administration?
学び始める
virsh
Configure autostart for VMs
学び始める
1) virsh 2) list --all 3) autostart vm-name
How to display time and date with timedatectl?
学び始める
timedatectl
How to set time-zone with timedatectl?
学び始める
timedatectl set-timezone
How to set time with timedatectl?
学び始める
timedatectl set-time
look for packages in system which needs or have packages available for use
学び始める
yum check-update
Command to update entire system automatically ---- DANGEROUS!!!
学び始める
yum update -y
search for package and expression
学び始める
yum search appache
Info about httpd package
学び始める
yum info httpd
Display all installed packages
学び始める
yum list installed
Shows content of /var/www
学び始める
yum whatprovides /var/www
Updating httpd package
学び始める
yum update httpd
List all packages availabe in our repo
学び始める
yum list all
cleanout caching temp files associated with yum
学び始める
yum clean all
How to download the. rpm?
学び始める
yumdownloader <package>
List all files for the package
学び始める
rpm -ql <package>
Query for all docs of a package?
学び始める
rpm -qd <package>
Unistall package
学び始める
rpm -e nano

コメントを投稿するにはログインする必要があります。