Best of SSHJuly 2024

  1. 1
    Article
    Avatar of lnLaravel News·2y

    Build SSH Apps with PHP and Laravel Prompts

    The ssh-php project by Sam Carré offers a simple starting point for building Text-based User Interfaces (TUIs) over SSH using PHP. It integrates Laravel Prompts, Chewie, and Docker, facilitating both development and deployment. The project includes commands for running an SSH server in a Docker container and connecting to it. Comprehensive installation instructions and resources are available on GitHub.

  2. 2
    Article
    Avatar of systemweaknessSystem Weakness·2y

    Setup SSH Keys

    SSH keys provide a secure method of authenticating to remote servers, replacing traditional passwords. This tutorial covers generating an SSH key pair, copying the public key to a remote server, verifying the keys, and disabling password authentication for enhanced security.

  3. 3
    Article
    Avatar of itsfossIt's Foss·2y

    Transfer Files Between Remote and Local Over SSH

    Learn how to transfer files between remote and local systems using the scp and rsync commands over SSH. The guide covers syntax for copying files and directories from local to remote, and vice versa. Examples demonstrate both single and multiple file transfers. The use of rsync for more versatile file handling, including backups, is also touched upon.