ssh -o PreferredAuthentications=password -o PubkeyAuthentication=no user@host
ssh-copy-id -o PreferredAuthentications=password -o PubkeyAuthentication=no -i ~/.ssh/id_xxx.pub user@host
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| cd /tmp | |
| wget https://github.com/wpilibsuite/allwpilib/releases/download/v2020.3.2/WPILib_Linux-2020.3.2.tar.gz | |
| mkdir -p ~/wpilib/2020 | |
| tar -xf WPILib_Linux-2020.3.2.tar.gz -C ~/wpilib/2020 | |
| python3 ~/wpilib/2020/tools/ToolsUpdater.py |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| systemctl stop brltty-udev.service | |
| sudo systemctl mask brltty-udev.service | |
| # It might be that brltty.service is also running (but is unlikely) | |
| # systemctl stop brltty.service | |
| sudo systemctl mask brltty.service |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # This is the network config written by 'console-conf' | |
| network: | |
| wifis: | |
| wlan0: | |
| access-points: | |
| <access point name>: | |
| password: <password> | |
| dhcp4: true | |
| version: 2 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| # default values | |
| distro=${1:-'rolling'} | |
| #Clear SECONDS for an elapsed Timer | |
| SECONDS=0 | |
| #Start Script | |
| echo -e "\e[31m Welcome to the ROS2 $distro install script \e[0m" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| apt update | |
| apt upgrade -y | |
| apt-get install -y curl lsb-release | |
| apt-get update | |
| apt-get install -y software-properties-common | |
| add-apt-repository -y universe | |
| apt-get install -y curl gnupg2 lsb-release build-essential |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash -e | |
| ########## | |
| ## | |
| ## ROS2 humble install script | |
| ## | |
| ## V1 (4/07/2022) for Ubuntu 22.04 | |
| ## | |
| ## By: Flo | |
| ## |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash -e | |
| ########## | |
| ## | |
| ## ROS2 galactic install script | |
| ## | |
| ## V1 (17/02/2021) for Ubuntu 20.04 | |
| ## | |
| ## By: Flo | |
| ## |