Hiển thị các bài đăng có nhãn centos. Hiển thị tất cả bài đăng
Hiển thị các bài đăng có nhãn centos. Hiển thị tất cả bài đăng

How to enable telnet server on Centos 5

TELNET (TELetype NETwork) is a network protocol used on the Internet or local area network LAN connections.

Telnetd is normally invoked by the internet server inetd or xinetd for requests to connect to the telnet port as indicated by the /etc/services file. Usaually telnet listen on port TCP port 23.

Telnet in is insecure protocol and it is recommended that you use ssh server. But some time you really need telnet then first install telnet server as according to version of Linux distribution.

Telnet server installation:

[root@lecuong ~]# yum install telnet-server

Configure telnet server:

Read more »

Build Files server on CentOS

Build File server to share files between Windows computer and Linux Server computer.

1. Install Samba

[root@lecuong.info ~]# yum -y install samba

2.Configure Samba : Create a shared directory that anybody can read and write,

a.No Authentication

[root@lecuong.info ~]# mkdir /mnt/D/share

[root@lecuong.info ~]# chmod 777 /mnt/D/share

[root@lecuong.info ~]# vi /etc/samba/smb.conf

Read more »