Category: Linux

  • Macrosilicon MS2100 HDMI To USB 3.0 Video Capture Card

    daf@daftitanium:~$ lsusb Bus 003 Device 101: ID 534d:2109 MacroSilicon USB Video cat /var/log/syslog Oct 2 11:31:13 daftitanium kernel: [738079.626765] usb 3-3: new high-speed USB device number 102 using xhci_hcd Oct 2 11:31:13 daftitanium kernel: [738079.778290] usb 3-3: New USB device found, idVendor=534d, idProduct=2109, bcdDevice=21.00 Oct 2 11:31:13 daftitanium kernel: [738079.778298] usb 3-3: New USB device…

  • How To Install PostgreSQL With Docker Quickly

    Many developers still install a database on their computer and work on it. It may be a preferable method, but using Docker takes only seconds to set up a database. I used PostgreSQL and Docker in my latest project. As a result, I have achieved efficiency and convenience. I will give you my experience with…

  • Make DNS follow configuration from Network Manager in 19.04

    I’ve installed 19.04 and removed dsnmasq, disabled systemd-resolve using sudo systemctl disable systemd-resolved.service sudo systemctl stop systemd-resolved and want to use Network Manager to set manually my DNS servers. Now I want to configure a different DNS server, so I went to the network icon on the bar and clicked Wired -> Wired Settings ->…

  • How To Protect Grub2 Bootloader With Password In Rhel/Centos 7

    What is GRUB? GRUB stands for Grand Unified Bootloader is the default bootloader for all linux and Unix like Operating Systems. It was first invented by Sir Erich Stefan Boleyn on year 1995. GRUB2 bootloader is used to load the kernel and then kernel loads the Operating System, In short GRUB is the Module which…

  • How to install mutt from source in CentOS 7

    and configure SMTP options for Gmail, Yandex or custom SMTP server… In this tutorial we will install latest mutt (on day: 31/03/2017) from source, configure it only for email sending (no receiving or other thing) over SMTP and with SSL and use it. We doing this in CentOS 7 Minimal Linux so maybe some of…

  • Compartir una carpeta en Centos

    En el Master Instalo los paquetes necesarios: yum install nfs-utils rpcbind Editar archivos /etc/exports y agregar: /mbt/archivos Server_Client_IP(no_root_squash,rw,sync) RUTA QUE QUIERO COMPARTIR | IP DONDE LA QUIERO COMPARTIR | permisos Agrego el puerto en el FWfirewall-cmd –zone=public –add-port=2049/tcp –permanent? firewall-cmd –reload? Reinicio los servicio sservice rpcbind start service nfs start En el Cliente Instalo los…

  • Diferencia entre apt-get update y apt-get upgrade

    Cada día intentan ocultarnos más el trasfondo del sistema de paquetes, que bastante ya abstrae de la instalación de software, con programas como el Centro de Software de Ubuntu. Sin embargo, apt, aptitude y el sistema en sí siguen estando ahí detrás y en más de una ocasión tendrás que usarlos.

  • Instalando Postfix como MTA en Centos 7

    Instalando Postfix como MTA en Centos 7

      Instalar Postfix # yum remove sendmail # yum install postfix Ponemos postfix como default MTA para el systema # alternatives –set mta /usr/sbin/sendmail.postfix Configuramos Postfix # vi /etc/postfix/main.cf myhostname = mail.tecadmin.net mydomain = tecadmin.net myorigin = $mydomain inet_interfaces = all mydestination = $myhostname, localhost, $mydomain mynetworks = 127.0.0.0/8, /32 relay_domains = $mydestination home_mailbox =…

  • Buscar archivos modificados en la ultima hora en Centos

    Buscar archivos modificados en la ultima hora en Centos

    Para buscar archivos, el clasico find: $ find . -mtime -1 el . es la ruta -mtime fecha de modificacion -1 archivos modificados en el ultimo dia… Alternativas: -amin Cuando fue utilizado en minutos -atime Cuando fue accedido en dias -cmin Cuando fue creado en minutos -ctime Cuando fue creado en dias -mmin Cuando fue…

  • SNMP en Centos 7

    SNMP en Centos 7

    Bueno, despues de remarla en dulce de leche, le encontre la vuelta al monitoreo via SNMP de los Centos 7. Lo mas facil fue publicar todo via la version 1 de SNMP, y limitarlo por la IP de quien lo puede acceder a leer estos datos. Si queres usar v2 o v3, adelante, y ¡contame…