Posts Tagged “Tutorial”

Pentru cei care au trecut la folosirea Windows Vista si Windows 7 de la XP si care se foloseau telnetul din windows pentru conectarea la diferite dispozitive de retea, au observat ca in Vista si Windows 7 telnetul nu mai este disponibil dupa instalare.

Pentru adminii de retele asta nu este o problema fiind ushor inlocuit de Putty dar pentru cei nostalgici telnet client-ul de windows inca exista in Vista si Windows 7.

Tot ce trebuie facut este sa-l instalati.

Iata cum puteti face aces lucru:

Pe Windows 7:

1. Mergeti in Control Panel si click pe Programs:

2. Apoi click pe Turn Windows features on or off

3. In fereastra nou deschisa bifati casuta din dreptul Telnet client

Si gata.

Porniti clientul de telnet din Command Prompt tastand telnet si enter.

Sau start si in casuta de search cautati Telnet:

E voila:

Aceeasi pasi se urmeaza si pe Windows Vista.

Tags: , , , ,

Comments No Comments »

Presupunem un server de hosting web la care trebuie sa dam access utilizatorilor la upload/download pentru siturile lor.

Se ia :
- CentOS linux server
- Pure-FTP

# yum install pure-ftpd
# cd /etc/pure-ftpd/
# touch pureftpd.pdb
# touch pureftpd.passwd
# pure-pw mkdb
# pure-pw useradd ftp-www -c ‘Web-App FTP Admin’ -u apache -d /var/www/html -m
# chown -R apache:apache /var/www/html
# chkconfig –levels 235 pure-ftpd on
# vi pure-ftpd.conf
ChrootEveryone yes
DisplayDotFiles yes
NoAnonymous yes
PureDB /etc/pure-ftpd/pureftpd.pdb
IPV4Only yes
#service pure-ftpd start

Tags: , ,

Comments No Comments »