Blog

Manpages - rpcclient

Name rpcclient — Werkzeug für die Ausführung von clientseitigen MS-RPC-Funktionen. Synopsis rpcclient [-A AuthDatei] [-c ] [-d DebugEbene] [-h] [-l LogVerz] [-N] [-s ] [-U Benutzername[%Passwort]] [-W Arbeitsgruppe] [-N] [-I ZielIP] {Server} BESCHREIBUNG Dieses Werkzeug ist Teil der Samba-Suite. rpcclient ist ein Werkzeug, das zunächst dafür entwickelt wurde, MS-RPC-Funktionalität in Samba selbst zu testen. Es ist durch mehrere Entwicklungs- und Stabilitätsphasen gegangen. Viele Systemadministratoren haben nun Skripte drumherum geschrieben, um Windows NT-Clients von ihrer UNIX-Workstation aus zu verwalten. OPTIONEN Server Der NetBIOS-Name des Servers, mit dem eine Verbindung hergestellt werden soll. Der Server kann ein beliebiger SMB/CIFS-Server sein. Der Name wird mit der Zeile name resolve order aus smb.conf aufgelöst. -c|–command=‘BefehlsString’ Führt die mit Semikola getrennten Befehle aus (unten aufgelistet). -I IP-Adresse IP-Adresse ist die Adresse des Zielservers. Sie sollte in der Standardnotation “a.b.c.d” angegeben werden. Normalerweise würde der Client versuchen, einen benannten SMB-/CIFS-Server zu finden, indem er ihn über den NetBIOS-Namensauflösungesmechanismus sucht, der oben beim Parameter name resolve order beschrieben ist. Die Benutzung dieses Parameters zwingt den Client zu der Annahme, dass der Server auf dem Rechner mit der angegebenen IP-Adresse ist, und die NetBIOS-Namenskomponente der Zielressource wird ignoriert. Für diesen Parameter gibt es keinen Vorgabewert. Wenn er nicht angegeben wird, dann wird er vom Client automatisch wie oben beschrieben bestimmt.

Continue reading

Pupy : Multi-Platform Remote Administration Tool [TUTORIAL/HowTo]

Features : On windows, the Pupy payload is compiled as a reflective DLL and the whole python interpreter is loaded from memory. Pupy does not touch the disk Pupy can reflectively migrate into other processes Pupy can remotely import, from memory, pure python packages (.py, .pyc) and compiled python C extensions (.pyd). The imported python modules do not touch the disk. (.pyd mem import currently work on Windows only, .so memory import is not implemented). modules are quite simple to write and pupy is easily extensible. Pupy uses rpyc and a module can directly access python objects on the remote client communication channel currently works as a ssl reverse connection, but a bind payload will be implemented in the future all the non interactive modules can be dispatched on multiple hosts in one command Multi-platform (tested on windows 7, windows xp, kali linux, ubuntu) modules can be executed as background jobs commands and scripts running on remote hosts are interruptible auto-completion and nice colored output commands aliases can be defined in the config we can also access remote objects interactively from the pupy shell and even auto completion of remote attributes works ! Implemented Modules : migrate keylogger persistence screenshot

Continue reading

Linked post

I’m a linked post in the menu. You can add other posts by adding the following line to the frontmatter: menu = "main" Lorem ipsum dolor sit amet, consectetur adipiscing elit. In mauris nulla, vestibulum vel auctor sed, posuere eu lorem. Aliquam consequat augue ut accumsan mollis. Suspendisse malesuada sodales tincidunt. Vivamus sed erat ac augue bibendum porta sed id ipsum. Ut mollis mauris eget ligula sagittis cursus. Aliquam id pharetra tellus. Pellentesque sed tempus risus. Proin id hendrerit ante. Vestibulum vitae urna ut mauris ultricies dignissim. Ut ante turpis, tristique vitae sagittis quis, sagittis nec diam. Fusce pulvinar cursus porta. Vivamus maximus leo dolor, ut pellentesque lorem fringilla nec. Mauris faucibus turpis posuere sapien euismod, a ullamcorper mi maximus. Morbi varius ex vel justo dictum placerat. Sed ac arcu pretium, varius elit eget, gravida purus. Fusce sit amet massa mollis eros tincidunt sollicitudin. Suspendisse iaculis cursus mauris ut sagittis. Interdum et malesuada fames ac ante ipsum primis in faucibus. Maecenas elit ligula, molestie quis magna eu, semper posuere lorem. Mauris a justo pharetra, congue ex eget, tincidunt massa. Maecenas sit amet neque lorem. Curabitur at elementum quam. Curabitur tristique elit non sapien aliquam vulputate. Vivamus in odio tincidunt, tempor sem quis, tincidunt lacus.

Continue reading

Linked post

I’m a linked post in the menu. You can add other posts by adding the following line to the frontmatter: menu = "main" Lorem ipsum dolor sit amet, consectetur adipiscing elit. In mauris nulla, vestibulum vel auctor sed, posuere eu lorem. Aliquam consequat augue ut accumsan mollis. Suspendisse malesuada sodales tincidunt. Vivamus sed erat ac augue bibendum porta sed id ipsum. Ut mollis mauris eget ligula sagittis cursus. Aliquam id pharetra tellus. Pellentesque sed tempus risus. Proin id hendrerit ante. Vestibulum vitae urna ut mauris ultricies dignissim. Ut ante turpis, tristique vitae sagittis quis, sagittis nec diam. Fusce pulvinar cursus porta. Vivamus maximus leo dolor, ut pellentesque lorem fringilla nec. Mauris faucibus turpis posuere sapien euismod, a ullamcorper mi maximus. Morbi varius ex vel justo dictum placerat. Sed ac arcu pretium, varius elit eget, gravida purus. Fusce sit amet massa mollis eros tincidunt sollicitudin. Suspendisse iaculis cursus mauris ut sagittis. Interdum et malesuada fames ac ante ipsum primis in faucibus. Maecenas elit ligula, molestie quis magna eu, semper posuere lorem. Mauris a justo pharetra, congue ex eget, tincidunt massa. Maecenas sit amet neque lorem. Curabitur at elementum quam. Curabitur tristique elit non sapien aliquam vulputate. Vivamus in odio tincidunt, tempor sem quis, tincidunt lacus.

Continue reading

Go is for lovers

Hugo uses the excellent go html/template library for its template engine. It is an extremely lightweight engine that provides a very small amount of logic. In our experience that it is just the right amount of logic to be able to create a good static website. If you have used other template systems from different languages or frameworks you will find a lot of similarities in go templates. This document is a brief primer on using go templates. The go docs provide more details. Introduction to Go Templates Go templates provide an extremely simple template language. It adheres to the belief that only the most basic of logic belongs in the template or view layer. One consequence of this simplicity is that go templates parse very quickly. A unique characteristic of go templates is they are content aware. Variables and content will be sanitized depending on the context of where they are used. More details can be found in the go docs. Basic Syntax Go lang templates are html files with the addition of variables and functions. Go variables and functions are accessible within {{ }} Accessing a predefined variable “foo”: {{ foo }} Parameters are separated using spaces Calling the add function with input of 1, 2:

Continue reading

Hugo is for lovers

This is the summary Goto hugo releases and download the appropriate version for your os and architecture. Save it somewhere specific as we will be using it in the next step. More complete instructions are available at installing hugo

Continue reading

Hugo is for lovers

This is the summary Goto hugo releases and download the appropriate version for your os and architecture. Save it somewhere specific as we will be using it in the next step. More complete instructions are available at installing hugo

Continue reading

Creating a new theme

Introduction This tutorial will show you how to create a simple theme in Hugo. I assume that you are familiar with HTML, the bash command line, and that you are comfortable using Markdown to format content. I’ll explain how Hugo uses templates and how you can organize your templates to create a theme. I won’t cover using CSS to style your theme. We’ll start with creating a new site with a very basic template. Then we’ll add in a few pages and posts. With small variations on that, you will be able to create many different types of web sites. In this tutorial, commands that you enter will start with the “$” prompt. The output will follow. Lines that start with “#” are comments that I’ve added to explain a point. When I show updates to a file, the “:wq” on the last line means to save the file. Here’s an example: ## this is a comment $ echo this is a command this is a command ## edit the file $vi foo.md +++ date = "2014-09-28" title = "creating a new theme" +++ bah and humbug :wq ## show it $ cat foo.md +++ date = "2014-09-28" title = "creating a new theme" +++ bah and humbug $ Some Definitions There are a few concepts that you need to understand before creating a theme.

Continue reading

Creating a new theme

Introduction This tutorial will show you how to create a simple theme in Hugo. I assume that you are familiar with HTML, the bash command line, and that you are comfortable using Markdown to format content. I’ll explain how Hugo uses templates and how you can organize your templates to create a theme. I won’t cover using CSS to style your theme. We’ll start with creating a new site with a very basic template. Then we’ll add in a few pages and posts. With small variations on that, you will be able to create many different types of web sites. In this tutorial, commands that you enter will start with the “$” prompt. The output will follow. Lines that start with “#” are comments that I’ve added to explain a point. When I show updates to a file, the “:wq” on the last line means to save the file. Here’s an example: ## this is a comment $ echo this is a command this is a command ## edit the file $vi foo.md +++ date = "2014-09-28" title = "creating a new theme" +++ bah and humbug :wq ## show it $ cat foo.md +++ date = "2014-09-28" title = "creating a new theme" +++ bah and humbug $ Some Definitions There are a few concepts that you need to understand before creating a theme.

Continue reading

Installations Anleitung Vim Plugins: The NERD Tree und Pathogen.vim

Installation von Pathogen.vim Die Installation von pathogen.vim ist der emfohlene Vorbereitungsweg um Nerdtree zu installieren Verwalten Sie Ihre ‘runtimepath’ mit Leichtigkeit. In der Praxis macht pathogen.vim es super einfach zu Plugins und Runtime-Dateien in ihren eigenen privaten Verzeichnissen zu installieren. Installieren Sie pathogen.vim nach ~/.vim/autoload/pathogen.vim. Oder einfach copy und paste folgendes: mkdir -p ~/.vim/autoload ~/.vim/bundle && curl -LSso ~/.vim/autoload/pathogen.vim https://tpo.pe/pathogen.vim Fügen Sie folgendes in Ihre etc/vimrc Konfigurationsdatei ein: execute pathogen#infect() Wenn Sie ganz neu mit Vim anfangen und eine vimrc fehlt, Machen Sie folgendes: vim ~ / .vimrc und fügen Sie den folgenden minimal Konfigurations Beispiel ein: execute pathogen#infect() syntax on filetype plugin indent on Jetzt sollten Sie alle Plugins, die Sie installieren möchten, in ein Unterverzeichnis unter ~/.vim/bundle extrahieren, und sie werden nun automatisch dem “runtimepath” hinzugefügt. Beachten Sie folgendes: cd ~/.vim/bundle && \ git clone git://github.com/tpope/vim-sensible.git Nun ist sensible.vim ist installiert. Wenn Ihnen der Verzeichnisname /bundle nicht gefällt, können Sie dies ändern indem Sie zur Laufzeit ein relative glob argument mit übergeben: execute pathogen#infect(‘stuff/{}’) Installation von The NERD Tree Die NERD Baum können Sie Ihr Dateisystem zu erforschen und um Dateien und Verzeichnisse zu öffnen. Es stellt das Dateisystem, um Sie in Form eines Baumes, die Sie mit der Tastatur und/oder Maus zu manipulieren.

Continue reading

Konfigurieren Sie Linux-Clients für die Authentifizierung mit OpenLDAP

Dies ist der zweite Teil unserer vorherigen Tutorial, mit dem Titel**: Installation und Konfiguration von OpenLDAP-Server auf Debian und Ubuntu-Systemen** . In diesem HowTo zeigen wir, wie man Linux-Clients so konfigurieren, dass sie sich mit einem OpenLDAP-Server authentizieren. Ich habe dieses Handbuch auf Debian und Ubuntu Desktop 8 15.04 Desktop getestet, bei welchem es perfekt und ohne Probleme funktioniert. Wenn Sie irgendwelche Probleme finden, können Sie mich gerne informieren. Ich werde es dann prüfen und dieses Tutorial ASAP aktualisieren. Für den Zweck dieses Tutorials verwenden wir mit Debian 8 MATE Desktop als LDAP-Client. Ihr Client-System Details: Betriebssystem: Debian 8 MATE Desktop IP Address: 192.168.1.101/24 Meine LDAP Server Details: Betriebssystem: Ubuntu 15.04 Server IP Address: 192.168.1.195/24 Konfigurieren Sie die Linux-Clients für die Authentifizierung mit OpenLDAP Hier werde ich dieses Tutorial in zwei Abschnitte aufgeteilt. Erstens, wir werden sehen, wie LDAP-Client auf Debian 8 zu installieren, und dann werden wir sehen, wie die Konfiguration Debian 8 Desktop zu authentifizieren. Ich werde dieses Tutorial in zwei Abschnitte aufteilen. Im ersten werden wir sehen wie man einen LDAP-Client auf Debian 8 installiert und danach zeige ich in Schritt zwei wie man ein Debian 8 Desktop System für die Autentifizierung konfiguriert 1. Installieren Sie den LDAP-Client Ich gehe davon aus, dass Sie über eine funktionierende LDAP-Server bereits gehabt haben.

Continue reading

OpenLDAP Installation und Konfiguration in Ubuntu 12.10 Server / Debian 6

Über OpenLDAP OpenLDAP ist ein kostenloses Open-Source-Light Weight Directory Access-Protokoll entwickelt durch das OpenLDAP-Projekt . Es ist ein plattformunabhängiges Protokoll, so dass es auf allen Linux / Unix-ähnliche Systeme, Windows, AIX, Solaris und Android läuft. OpenLDAP beinhaltet: slapd - Stand-alone-LDAP Daemon (Server) Bibliotheken der Umsetzung des LDAP-Protokolls, und Utilities, Tools und Beispiel-Clients. In diesem Tutorial wollen wir sehen, wie die Installation und Konfiguration von OpenLDAP in Ubuntu / Debian-Server abläuft. Wegen des Mangels an Ressourcen und Zeit, wurde dieses How-to nur in Ubuntu 15.04 getestet. Allerdings sollten die folgenden Schritte auf Debian 8.7 und früheren Versionen von Ubuntu, Ubuntu zu arbeiten, einschließlich 14,10 / 14,04 / 13,10 / 13,04 / 12,10 etc. Wenn Sie während der Installation von OpenLDAP in anderen Distributionen, können Sie lassen Sie mich wissen irgendwelche Probleme, Ich werde prüfen und aktualisieren diese wie-ASAP. Nun, lassen Sie uns einrichten LDAP-Server beginnen. Hier Details meines LDAP-Server: Operating System : Ubuntu 15.04 Hostname : server.linuxuser.local IP Address : 192.168.1.195 Ersetzen Sie die oben genannten Werte mit Ihren eigenen. Installation und Konfiguration von OpenLDAP Zunächst lassen Sie uns sehen, wie man OpenLDAP in DEB basierten Systemen installiert 1. Installieren Sie OpenLDAP Geben Sie folgenden Befehl im Terminal zu OpenLDAP installieren.

Continue reading

Linux: Aliase sparen Tipparbeit

Geben Sie an der Linux-Konsole einmal den Befehl alias ein. Die daraufhin erscheinende Liste zeigt, mit welchen Kurzkommandos Ihr Linux eingerichtet ist. So ist es bei vielen Linux-Varianten heute üblich, DOS-Umsteigern über vordefineirte Kommandos wie dir oder md die Arbeit mit Linux zu erleichtern. Das wird eben nicht über wirklich neu Befehle, sondern Aliase ermöglicht, also Synonyme für Eingaben an der Befehlszeile. Sie können sich aber auch ganz leicht selbst einen Alias einrichten. Angenommen, Sie experimentierten mit dem Apache-Webserver und müssen darum oft das Kommando /etc/rc.d/init.d/apache restart eintippen, um den Server mit einer geänderten Konfiguration neu zu starten. Definieren Sie sich einfach ein eigenes Kommando wwwneu, um das gleiche mit weniger Tipparbeit zu bewirken: alias wwwneu=´/etc/rc.d/init.d/apache restart´

Continue reading

Raspberry Pi als FTP-Server einrichten – so geht’s

Ihren Raspberry Pi können Sie auch als FTP-Server einrichten. Wir zeigen Ihnen, wie das funktioniert. Raspberry Pi als FTP-Server einrichten Die folgende Anleitung bezieht sich auf das Betriebssystem “Raspbian”. Wenn Sie ein anderes Betriebssystem nutzten, können einige Befehle abweichen. Bevor Sie beginnen, müssen Sie eine stabile Internetverbindung herstellen. Bauen Sie per SSH eine Verbindung mit Ihrem Raspberry Pi auf oder öffnen Sie das Terminal direkt auf der Pi. Installieren Sie das Programm “ProFTP” als Standalone. Führen Sie dazu den Befehl “Sudo apt-get install proftpd” aus. Konfigurieren Sie die Datei “/etc/proftpd/proftpd.conf”. Geben Sie dazu den Befehl “sudo nano /etc/proftpd/proftpd.conf” ein. Fügen Sie den folgenden Code hinzu: proftpd.conf Wechseln Sie mit dem Befehl “cd /etc/proftpd/” in den Ordner “/etc/proftpd” . Erstellen Sie einen Benutzer für den FTP-Zugang. Verwenden Sie dazu den Befehl “sudo ftpasswd –passwd –name BENUTZERNAME –uid XX –gid XX –home FTPVERZEICHNISS –shell /bin/false”. Ersetzen Sie dabei “BENUTZERNAME” und “FTPVERZEICHNISS” durch die jeweiligen Werte. Für “XX” geben Sie “id www-data” ein. Die Zahl, die Sie als Ausgabe erhalten, setzten Sie für “XX” ein. Setzen Sie nun die richtigen Schreibrechte mit den Befehlen “chmod g+s FTPVERZEICHNISS”, “chmod 775 FTPVERZEICHNISS” und “chown -R www-data:www-data FTPVERZEICHNISS”. Anschließend können Sie den Server mit dem Befehl “sudo /etc/init.

Continue reading

Using an External Drive as a Raspberry Pi Root Filesystem

Overview One of the more noticeable limitations of the Raspberry Pi is using an SD card for its main storage. If you’ve been using a Pi for a while, you might be looking for more storage, faster access times, or media with a longer lifespan than many SD cards turn out to have. For example, I’m working on a project to configure a set of custom Raspbian images to support some Adafruit hardware. I’d like to write a script to automate the process, but doing so will take quite a bit of storage space, and copying multi-gigabyte files can be pretty slow on an SD card. One approach to this is to copy your root filesystem to an external drive, connected via USB, and tell the kernel to use this filesystem instead of one on the SD card. Other potential uses include: A network fileserver where lots of storage is desirable. Write-heavy applications like data logging. For my project, I’m using an external hard drive, but the same approach should work with an SSD or a USB stick. This guide assumes enough familiarity with the command line to open a terminal, run a script, and maybe edit a few configuration files with Nano.

Continue reading

List Of Free And Open Source CMS (Content Management System) Solutions

Introduction Building websites by hand with all html/css pages was fine a couple years ago. Today any one can deploy a website without any knowledge of computers. The content management system (CMS) software make your life easy. A CMS facilitates content creation, content control, editing, and many essential Web maintenance functions. If you are not sure which one you can use, this article will help you to discover each platforms features and make your own comparison depending on your needs. We will list the most important ones in this article. There are many and various open source and free CMS solution that be installed easily, have a wide user community & offers a complete system. Let’s start. WordPress WordPress is the most popular CMS (content management system) on the internet. It allows you to easily set up flexible blogs and websites on top of a MySQL backend with PHP processing. WordPress has seen incredible adoption and is a great choice for getting a website up and running quickly. If you want to create your own website Free , Fast and Easy, WordPress is the best solution for your needs. For more information you can read this artilce How To Install WordPress In Ubuntu 14.

Continue reading

Installing Tor in Kali Linux

What is Tor? Tor is free software and an open network that helps you defend against traffic analysis, a form of network surveillance that threatens personal freedom and privacy, confidential business activities and relationships, and state security. This guide guides your through installing tor in Kali Linux. Why anonymity matters? Tor protects you by bouncing your communications around a distributed network of relays run by volunteers all around the world: it prevents somebody watching your Internet connection from learning what sites you visit, and it prevents the sites you visit from learning your physical location. [Source: https://www.torproject.org/] Contents What is Tor? Why anonymity matters? Installing Tor in Kali Linux: Step 1: Getting tor service ready Option #1: Install Tor from Kali Repository Option #2: Install Tor from Debian Wheezy Repository Step #1: Add repo to sources.list file Step #2: Add GPG Keys Step #3: Update package lists Step #4: Install singing keys Step #5: Install Tor from Debian repository Option #3: Install Tor from development branch Step #1: Add Tor project repository to sources.list Step #2: Add GPG keys, keyring and install Tor Option #4: Build and Install Tor from sources Step #2: Downloading and Running Tor bundle Conclusion DOS/DDOS attacks Metasploit related SQLMap and Google Dorks Related Installing Tor in Kali Linux: Step 1: Getting tor service ready There are 3 ways of installing Tor service in Kali Linux.

Continue reading

Kali Linux 1.0.7 kernel 3.14 – Install proprietary NVIDIA driver – NVIDIA Accelerated Linux Graphics Driver

This entry was posted in How to Kali Linux Linux NVIDIA and tagged CUDA How to Kali Linux NVIDIA Pyrit on June 27, 2014 by blackMORE Ops (updated on July 17, 2014) This guide explains how to install proprietary “NVIDIA Accelerated Linux Graphics Driver” or NVIDIA driver on Kali Linux 1.0.7 kernel 3.14 system. The first part where you install NVIDIA Driver is very straight forward (well exactly same as before) but on the second part where you install NVIDIA CUDA driver, you get an error while running pyrit “ERROR: could not insert ‘nvidia_uvm’: Invalid argument”. This two part series guide will help you to install NVIDIA Driver and NVIDIA CUDA on your Kali Linux machines. I am not too sure if this applies to all Ubuntu or Debian variants, but it sure works if you have those errors or trying to do it in Kali Linux. By default Kali Linux installs pen source NVIDIA driver nouveau which works great if you just want a display. Open source drivers can be confirmed by using lsmod | grep nouveau command. But like I said in my previous guides, it doesn’t give you 3D acceleration features or GPU acceleration based applications (such as CUDA and GPU pass through).

Continue reading

Kali Linux 1.0.7 kernel 3.14 install NVIDIA driver kernel Module CUDA and Pyrit – CUDA, Pyrit and Cpyrit-cuda

In this guide, I will show how to install NVIDIA driver kernel Module CUDA, replace stock Pyrit, and install Cpyrit. The main problem with new Kali Linux 1.0.7 running Kernel 3.14 was that it broke Pyrit and cudaHashcat. When you try to run pyrit command, you get this error ERROR: could not insert ‘nvidia_uvm’: Invalid argument. I will show how to install all the necessary drivers, modules and also fix this error. At the end of this guide, you will be able to use GPU acceleration for enabled applications such as cudaHashcat, Pyrit, crunch etc. This guide replaces the old guides How to Install NVIDIA Kernel Module CUDA and Pyrit in Kali Linux Install proprietary NVIDIA driver on Kali Linux – NVIDIA Accelerated Linux Graphics Driver This is part 2 of installing NVIDIA driver kernel Module CUDA and Pyrit on Kali Linux Driver series which was divided into two parts: Kali Linux 1.0.7 kernel 3.14 – Install proprietary NVIDIA driver – NVIDIA Accelerated Linux Graphics Driver Kali Linux 1.0.7 kernel 3.14 install NVIDIA driver kernel Module CUDA and Pyrit – CUDA, Pyrit and Cpyrit-cuda You use the first guide to install NVIDIA Driver on Kali Linux. I would assume you followed the first guide and completed all steps there and would like to enable GPU acceleration, (cudahashcat, GPU pass through etc.

Continue reading

Installing LEMP (Nginx, PHP, MySQL with MariaDB engine and PhpMyAdmin) in Arch Linux

Due to its Rolling Release model which embrace cutting age software Arch Linux was not designed and developed to run as a server to provide reliable network services because it requires extra time for maintenance, constants upgrades and sensible file configurations. But, still, because Arch Linux comes with a CD core installation with minimal software pre-installed, it can represent a solid base start up point to install most of the popular network services this days, this including LEMP or LAMP, Apache Web Server, Nginx, PHP, SQL databases, Samba, FTP servers, BIND and others, many of them being provided from Arch Linux official repositories and others from AUR. This tutorial will guide through installing and configuring LEMP stack (Nginx, PHP , MySQL with MariaDB engine and PhpMyAdmin) from a remotely using SSH, which can provide a strong foundation to build Web Server Applications. Requirements Previous Arch Linux Installation guide, excepting last part on networking with DHCP. Step 1: Assign Static IP on Network Interface 1. After minimal Arch Linux core installation reboot your server, login with root account or equivalent administrative sudo account, and identify your system NICs device names using ip link command. # ip link 2. To assign static network configurations we are going to use Netctl package to manage network connections.

Continue reading