Mostrando entradas con la etiqueta Linux. Mostrar todas las entradas
Mostrando entradas con la etiqueta Linux. Mostrar todas las entradas

viernes, 4 de marzo de 2016

Requirements Vmware Player Free on CENTOS 7, missing network card (nic) and vmware tools not required

Source:
https://ask.fedoraproject.org/en/question/9667/path-to-kernel-header/

After installing manually the VMWare player Free for Linux for free personal use
https://my.vmware.com/en/web/vmware/free#desktop_end_user_computing/vmware_workstation_player/12_0

On X-Windows mode you got the two next error messages when for the first time you open VMWare Player Icon

"Path to gcc"
"path to kernel-header"

You must update the server, and install the next packages

yum update
yum install gcc
yum install kernel-headers
yum install kernel-devel
reboot

Open VMWare Player again and voila

You don't need to install VMWare tools.  There are included and updated with OS

If you didn't see you NIC (Network Interface Card o Network Card) after Copying, Moving or Cloning like VMWare Converter.

You can add a new nic to the virtual machine, assign Bridged NAT or Host Only and remove the original created.  You need to copy the old ip address to the new NIC added


Greetings
 B.

domingo, 5 de julio de 2015

CentOS 6 minimal install CD

Source: http://julianyap.com/2011/08/10/centos-6-minimal-install-cd-you-may-not-want-to-bother-with-it.html


UPDATE: You can install the Base group of packages by running “yum groupinstall base”. You will probably be surprised to see what is missing. I was surprised that I was missing some more essentials such as: at, lsof, man-pages, tcpdump, time. IMHO any ‘minimal install CD’ should have the base group installed at a minimum. It is what we have come to expect and know when we have selected a ‘minimal install’ in the past. It may increase the CD download size slightly but it makes sense.

Yo prefiero seleccionar developer

jueves, 11 de octubre de 2012

Installing Perl Modules

Spanish Keywords: Instalar módulos de Perl
Fuente: http://www.livejournal.com/doc/server/lj.install.perl_setup.modules.html

# apt-get install libdatetime-perl libdbi-perl libdbd-mysql-perl \
libclass-autouse-perl libdigest-sha1-perl \
libhtml-template-perl libimage-size-perl libmime-lite-perl \
libmime-perl libcompress-zlib-perl libnet-dns-perl \
liburi-perl libhtml-tagset-perl libhtml-parser-perl \
libwww-perl libwww-perl libgd-gd2-perl \
libmailtools-perl libunicode-maputf8-perl libxml-simple-perl \
libio-stringy-perl  libcaptcha-recaptcha-perl \
libdigest-hmac-perl 
 
# apt-get install libgd-graph-perl libproc-process-perl librpc-xml-perl \
libsoap-lite-perl libxml-rss-perl libstring-crc32-perl \
libxml-atom-perl libmath-bigint-gmp-perl liburi-fetch-perl \
libcrypt-dh-perl perlmagick libclass-accessor-perl \
libclass-trigger-perl libclass-data-inheritable-perl libgnupg-interface-perl \
libmail-gnupg-perl libtext-vcard-perl  \
  

jueves, 23 de febrero de 2012

Montar unidades windows en linux : samba

Fuente:http://dieguz2.blogspot.com/2007/04/montar-unidades-windows-en-linux-samba.html

Montar unidades windows en linux : samba
¿Cómo puedo hacer para ver un directorio de una maquina de windows?
Para poder montar una "carpeta compartida" de windows en nuestro suse 10.2 debemos utilizar el siguiente comando:
mount -t cifs -o user=USUARIOWINDOWS,password=CONTRASEÑAWINDOWS //IPdelOrdenadorRemoto/Recurso/ /RUTADONDEMONTAR

si se usa el comando mount -t smbfs saldrá el siguiente mensaje de error: mount: tipo de sistema de ficheros 'smbfs' desconocido

Ejemplo: montar de la máquina windows con ip 192.168.1.6 el directorio compartido música.

No tiene contraseña.

mount -t cifs -o password= //192.168.1.6/musica /mnt/musica/

Nota: si no ponemos password= nos pedirá la contraseña

Para montar automáticamente las unidades tenemos que añadir las siguiente linea al archivo fstab
1) vi /etc/fstab
2) añadir //192.168.1.6/musica /mnt/musica cifs defaults,user='guest',password='' 0 0

Si usamos el comando mount y nos saliese el mensaje de error:
"tipo de sistema de ficheros 'cifs' desconocido" es probable que nos falte alguno de estos paquetes: smbget y/o samba .
Los instalaremos desde el yast, zypper o apt-get (en caso de otros linux que lo incorporen).