Sep
08
2011
0

Problem vsftp in red hat 5, 421 Service not available remote server has closed

Trying to install VSFTP on Red HAT 5. I got the following trying to connection via FTP:

230 Login successful.
421 Service not available, remote server has closed connection

The workaound without upgrade the package is adding into /etc/vsftd.conf the line
connect_from_port_20=YES

to then restart the service:
service vsftpd restart

Issue related on http://bugs.centos.org/view.php?id=3929

Written by doutdex in: Linux | Tags: ,
Dec
10
2010
0

SSH Long time delay login to connect using ssh in linux

I had more of 10 seconds waiting for a connection to a remote SSH linux, well the issue that I got was due to the remote server CENTOS 5.5 because into sshd_config  exist a GSS option enabled.

Just comment the following line /etc/ssh/sshd_config
(more…)

Written by doutdex in: Centos,Linux | Tags: , ,
Nov
01
2010
0

Status problem instalando o installing in android market with xperia x10

Hace una semana se me presento un problema al seleccionar “actualizar todo” en el market de android segun revise “carango” se quedo en estado “instalando”.

Trate desinstalando el programa que se quedo en ese estado que se llamaba . , pero no funciono, la solucion fue eliminar los archivos temporales de la aplicacion market y desinstalar el update de Market:

(more…)

Written by doutdex in: Android |
Jul
14
2010
0

How to add multiple port listen SSH on FreeBSD

The way to do is:

1) Edit sshd config “/etc/ssh/sshd_config”

vi /etc/ssh/sshd_config

2) Uncomment the line “# Port 22″ and add new lines according to how many listener ports you wants to be available for the SSH service on your machine.
(more…)

Written by doutdex in: FreeBSD,Unix | Tags: , , ,
Jul
14
2010
0

How to set static IP on Freebsd

1) Edit config file

vi /etc/rc.conf

2) Depends how many interfaces exist is possible to set each one for (em0, em1em2, em…)

#Interface 1 with default gateway for 192.168.0.1
ifconfig_em0="inet 192.168.0.10 netmask 255.255.255.0"
defaultrouter="192.168.0.1"

#Interface 2

ifconfig_em1="inet 192.168.2.10 netmask 255.255.255.0"

3) Save that file “rc.conf” and restart network init

# /etc/rc.d/netif restart && /etc/rc.d/routing restart
Written by doutdex in: FreeBSD | Tags: , , ,
Jul
11
2010
0

How to install Samba server on red hat or fedora linux server

Triying to share files to windows server by network, one way is using a samba server.

sudo yum install samba samba-client

Edit config file, edir the [glocal] config setting the WORKGROUP, and the networks interfaces allow to the samba service and on the end of the config file  check the access for the share files mappping. Remenber that the shared files has to be permission for the group.

sudo gedit /etc/samba/smb.conf

Create a samba user with an already user from the OS linux

sudo smbpasswd -a OLD_USER

Start samba service

sudo /etc/init.d/smb start

Check startup Samba service

/sbin/chkconfig --list smb

Enable samba service in startup server (just in case)

Enable samba service on FIrewall

system-config-firewall

Enable samba service on SELinux, go to Boolean Menu and enable samba

 system-config-selinux

Test Samba access from localhost with OLDUSER

smbclient -L localhost -U OLDUSER

Written by doutdex in: Centos,Fedora,Linux,Red Hat | Tags: , , , ,
Apr
19
2010
1
Apr
16
2010
2

Share Internet using Fedora – NAT like a gateway to outside access

Muchos, creo yo, querrán compartir la salida a Internet con alguna pequeña subred que posean en su casa (1 o más equipos), y eso es lo que hace un router, aquí detallaré los pasos seguidos con Fedora para dejarlo como router.

Para efectos que se entienda este ejemplo, tengan en cuenta que el PC tiene dos tarjetas de red, eth0 que esta conectada a Internet y que esta configurada como dhcp-client , ip fija, red de marcado, etc… y eth1 que tiene IP fija 192.168.0.1 por la que convidaremos Internet a la subred.

(more…)

Written by doutdex in: Fedora,Linux | Tags: ,
Apr
15
2010
0

Fedora Boot process

Fedora – The Boot Process

Fedora 2 boots is the usual Red Hat way. Its initscripts are more or less similar in the various RedHat versions, as it often happens when a process is tested and mature enought to not need particular changes.

Boot Loader
Fedora’s default boot loader is Grub, the directory /boot/grub/ contains all the configuration files and the binaries.

(more…)

Written by doutdex in: Fedora,Linux | Tags: , , ,
Apr
11
2010
0

Cómo saber la distribuciíon y versión de linux en tu PC

Simplemente abre una consola y ejecuta:

cat /etc/issue
Written by doutdex in: Linux | Tags:
Jun
20
2009
0

Backup database -base de datos- mysql en archivo con cron con timestamp date fecha

Amigos un ejemplo practico de respaldar una base de datos:

Comandos:
1) Editar el archivo de crones para el usuario

crontab -e

2) Agregar una línea indicando cada cuanto se va ejecutar, para este ejemplo puntual el cron se ejecutará semanalmente todos los días Lunes a las 10:30 de la mañana.

30 10 * * mon date=`date "+%Y%m%d%H%M"`;mysqldump --host DOMAINDB -u USERNAME -pPASSWORD BDNAME >/RUTADESTINO/backupBD_$date.sql

El resultado es el backup de una BD con nombre “BDNAME” es un host remoto de mysql “DOMAINDB” con usuario “USERNAME” y clave “PASSWORD”, este backup se guarda en un archivo de texto con un nombre y la fecha tipo timestamp quedando asi:
backupBD_200906201008.sql

Written by doutdex in: Base de Datos,Linux,Mysql,Ubuntu,Unix | Tags: , , ,
Apr
04
2009
4

Problem a para instalar – configurar – camara web cam in ubuntu with kernel 2.6.27.11

Hello guys, i was 3 hours trying to rebuid the sources of my webcam drivers chip z star in Ubuntu 8.10 kernel 2.6.27-11-generic was complicated, but after reading many post of comments in some blogs i understood what happen because before compiled same sources in Ubuntu 7.04, 7.08, 8.04 but for 8.10 something is wrong, well the problem is about the kernel version that changed when i upgrade my Ubuntu from 8.04.

Finally i made a zip file with patch (from ubuntuforum) apply on the last source drivers gspca (gspcav1-20071224.tar.gz) called (more…)

Written by doutdex in: Ubuntu | Tags: , , ,
Oct
24
2008
0

Como crear una imagen iso

Para crear una imagen iso a partir de cualquier archivo:

 mkisofs -R -J -o archivo.iso  /archivo/a/convertir/en/iso

-R para que reconozca más de 8 caracteres en linux

-J para que windows reconozca la iso.

-o nombre de archivo iso.

Written by simon in: Linux,Unix | Tags:
Oct
20
2008
7

Problema wifi notebook olidata L41II1 driver controlador para windows XP

Amigos para el que ha sufrido tratando de instalar la tarjeta inalámbrica al tener instalado windows XP, les cuento que ha mí me paso lo mismo arreglando un PC varias noches buscando cual sería el driver correcto, finalmente buscando encontré que existen dos versiones de CDS con Drivers (more…)

Written by doutdex in: Drivers,Windows XP | Tags: ,
Oct
20
2008
0

Como grabar un dvd de datos en freebsd, y que lo reconozca windows

Para grabar un dvd de datos en freebsd desde consola:

 growisofs -Z /dev/cd0 -R -J /ruta/de/datos

Donde:
Opción -Z es el destino, en este caso el grabador de dvd.
Opción -R es recursivo.
Opción -J es para que pueda leerse en windows.
/ruta/de/datos es lo que queremos grabar.

Written by simon in: FreeBSD | Tags:

TheBuckmaker.com Wordpress Themes | Geld von Privat, Streaming Audio
футбол онлайн, live football, canlı izle, football streaming, football forum, football forums, canlı maç, football highlights, maç özeti, live football streaming, stream live football, free football streaming,