Techknightmanveercs201.hashnode.dev·Oct 3, 2024Building a Python File Synchronization App with Tkinter: A Technical Deep DiveThis blog post details the development of a simplified file synchronization application using Python and Tkinter, focusing on the client-side UI and core functionalities. We'll break down the code, explain the design choices, and highlight how object...62 readsProgramming Blogs
Dinesh Kumar Kblog.dineshcloud.in·Sep 21, 2024Installing FTP Server (VSFTPD) on Ubuntu 22.04An FTP (File Transfer Protocol) server in Linux is a service that allows users to transfer files between computers over a network. FTP servers are commonly used for uploading and downloading files, and they can be accessed via various FTP client appl...27 readsLinuxLinux
sandeepsandeep2024.hashnode.dev·Jul 26, 2024Install FTP server in REDHAT8Install FTP server . Login as a root user. yum install -y vsftpd systemctl enable vsftpd.service systemctl status vsftpd.service Update /etc/vsftpd/vsftpd.conf anonymous_enable=YES systemctl start vsftpd.service Install client yum install -y lft...RHEL
Srinivasa Varanasivsik.hashnode.dev·Dec 29, 2023FTP server in a Raspberry PiFTP, or File Transfer Protocol, is a standard network protocol used to transfer files between a client and a server on a computer network. It facilitates the seamless exchange of files over the internet or an intranet. FTP operates on a client-server...1 like·85 readsCodePiRaspberry Pi
Doufudoufu.hashnode.dev·Oct 8, 2023What Terminal Emulators Am I Using?What is a Terminal Emulator? A terminal emulator is a software program that is often used to give PC users the ability to log in and get direct access to legacy programs in a server. The emulator runs like any other desktop application, providing a w...terminal
Mike Hokansonhokanson.dev·Mar 26, 2023FTPS with Mirth ConnectThe company I work for recently received notification that one of our vendors was moving their SFTP server to a service which only supported WebDAV and FTPS. I've been trying to shift all our data exchanges from a hodge-podge of tools like WinSCP scr...1 like·460 readsFtp Client
Livia Limalivialima.hashnode.dev·Nov 27, 2020FileZilla BasicsFileZilla is a free and open-source FTP client. Basic Connection Using Quickconnect bar: Enter the remote hostname or IP address at Host. Enter the remote username at Username and the password at Password. Port: 21 for FTP, 22 for SFTP Click Quickco...107 reads#howtos
Livia Limalivialima.hashnode.dev·Oct 9, 2020SFTP Basic CommandsSSH File Transfer Protocol (also Secure File Transfer Protocol, or SFTP) is a network protocol that provides file access, file transfer, and file management over a secure channel, such as SSH. Connect Enter the username and remote hostname or IP addr...88 reads#howtos