Langsung ke konten utama

Postingan

Menampilkan postingan dari 2017

How to Install Configure and Create Virtual Machine on Ubuntu with KVM

1 .  Check whether CPU has hardware virtualization support. KVM only works if your CPU has hardware virtualization support –  either Intel VT-x or AMD-V. To determine whether your CPU includes these features,  run the following command: #sudo grep -c "svm\|vmx" /proc/cpuinfo A 0 indicates that your CPU doesn’t support hardware virtualization,  while a 1 or more indicates that it does. 2 .  Install KVM and supporting packages.  Virt-Manager is a graphical application for managing your virtual machines —  you can use the kvm command directly, but libvirt and Virt-Manager simplify the process. #sudo apt-get install qemu-kvm libvirt-bin bridge-utils virt-manager 3 .  Create User. Only the root user and users in the libvirtd group have permission to use KVM virtual machines.  Run the following command to add your user account to the libvirtd group: #sudo adduser saju   #sudo adduser saju libvirtd After running this command,  log out  and  log back i n as  saju   4 .  Check whethe

Server Security Tips to Secure Your Server

Server Security Tips Here are 79 server security tips to help improve your web server security. I start with passwords.   You would be surprised at the number of cases we handle that boil down to bad passwords. Web application security can also be improved with some simple steps, and it is time everyone stop using insecure communication protocols. Password Security ·   Use passwords with at least 8 characters. ·   Use complex passwords that include numbers, symbols, and punctuation. ·   Use a variety of passwords for different accounts or roles. ·   Test passwords in a secure password tool. ·   Do not use dictionary words as passwords, e.g. myblackdog ·   Do not repeat sequences of characters, e.g. 3333, abcdabcd. ·   Do not use personal information in passwords, e.g. your birthdate. ·   Do not store passwords on laptops, smartphones or tablets that can be lost. ·   Use a password manager to securely keep track of your passwords (See our post on LastPass). ·