Archivo de la categoría: Nix

Resize a Linux Root Partition Without Rebooting resize alienvault

Introduction A typical Linux server deployed from a ProfitBricks supplied image has a single storage volume, /dev/vda. If we take a look at that using fdisk we will see that the disk is divided into two partitions. The first one, /dev/vda1, is the boot partition where the OS resides. The second partition, /dev/vda2, is configured as swap space. root@debian:~# fdisk… Leer más »

Git 2.9 by Software Collections centos 7 rhel 7

rh-git29 – A release of Git, a distributed revision control system with a decentralized architecture. As opposed to centralized version control systems with a client-server model, Git ensures that each working copy of a Git repository is its exact copy with complete revision history. EL6 tests EL7 tests Instructions You can get started in three… Leer más »

add self certificate CHROME linux

“Private key is missing or invalid when importing a certificate” in Google Chrome You may be trying to do is add it to the wrong certificate store. If you’re attempting to add it under «Your Certificates», you’re gonna have a bad time. That tab is for adding identity certificates; what your browser offers to the… Leer más »

install chrome centos 7 / rhel 7

Google Chrome is the freeware web browser developed by Google that uses the WebKit fork blink engine. As of July Google Chrome is the most widely used browser having, it shares around 45% worldwide browser usage. Google Chrome has the inbuilt translate faculty for translation of over 52 languages. Google Chrome has the option to… Leer más »

nginx reverse proxy

To pass a request to an HTTP proxied server, the proxy_pass directive is specified inside a location. For example: location /some/path/ { proxy_pass http://www.example.com/link/; } This example configuration results in passing all requests processed in this location to the proxied server at the specified address. This address can be specified as a domain name or an IP address.… Leer más »

Install And Configure Samba Server In CentOS 7

By SK – September 26, 2014 6992 As you may know, Samba is an open source, and free software suite that provides file and print services to the SMB/CIFS clients. It allows us to share files, folders, and printers between Linux server and Windows clients. Using Samba, we can setup a domain controller on Unix/Linux… Leer más »

Add systemd service to Start Wake On LAN

In a previous tutorial we looked at how you can setup Wake on LAN (wol) on RHEL7 or CentOS7. In this tutorial we take another look at wol by adding a UDEV rule and systemd service, because the ETHTOOL_OPTS is deprecated. Deprecated ETHTOOL_OPTS If we take a look at /usr/share/doc/initscripts*/sysconfig.txt and search for ETHTOOL_OPTS we will find… Leer más »

mac mini circa 2009 centos 7 broadcom drivers

yum install pciutils rpm –import https://www.elrepo.org/RPM-GPG-KEY-elrepo.org rpm -Uvh http://www.elrepo.org/elrepo-release-7.0-3.el7.elrepo.noarch.rpm /sbin/lspci To install this driver: 00:0a.0 Ethernet controller: NVIDIA Corporation MCP79 Ethernet (rev b1) #yum install kmod-forcedeth #reboot and to install 03:00.0 Network controller: Broadcom Limited BCM4321 802.11a/b/g/n (rev 05) —> http://elrepo.org/tiki/tiki-index.php

Comandos para liberar espacio con apt-get

Por usemoslinux  – 4 julio, 2011 53 61149 ¿Problemas de espacio? Tal vez la culpa no sea completamente de tus archivos de música, imágenes y vídeo, sino de paquetes de instalación y dependencias innecesarias en el sistema. Pero no hay que desesperar, existen algunos comandos de apt-get que pueden ayudar a solucionar estos inconvenientes. Índice [Ocultar] 1 Apt 2 Apt-get… Leer más »

Fixing Chrome 58+ [missing_subjectAltName] with openssl when using self signed certificates ca root ssl

Since version 58, Chrome requires SSL certificates to use SAN (Subject Alternative Name) instead of the popular Common Name (CN), thus CN support has been removed. If you’re using self signed certificates (but not only!) having only CN defined, you get an error like this when calling a website using the self signed certificate: Here’s how… Leer más »