To copy the root fs, ssh into the machine and log in as root (sudo -i). Next, make the file system read only.
# echo u > /proc/sysrq-triggerTo verify, this took, you can run touch file, and you should get the following.
| ;;; sl-mode.el --- major mode for sl -*- lexical-binding: t; -*- | |
| ;; inspired by https://www.omarpolo.com/post/writing-a-major-mode.html | |
| (eval-when-compile | |
| (require 'rx)) | |
| (defconst sl--font-lock-defaults | |
| (let ((fn-keywords '("defun" "extern")) | |
| (keywords '("defun" "for" "in" "set" "lambda" "let" "cons" "car" "cdr" "and" "or" "xor" "not" "extern" "if")) | |
| (types '("string" "int" "bool" "float" "list"))) | |
| `( |
| No user data is collected, stored, distributed, or inferred by this app. |
| #!/bin/bash | |
| if [[ -z $1 ]]; then | |
| echo "error: please provide an executable" | |
| exit 1 | |
| fi | |
| out_dir="$(basename ${1}).bundled" | |
| mkdir -p "${out_dir}" | |
| # ldd gives the SO files the exe links with |
| from github import Github | |
| import time | |
| import os | |
| token = os.getenv('GITHUB_API_TOKEN') | |
| if not token: | |
| print('Please create a GitHub token for use with the API') | |
| quit() |
| #!/bin/bash | |
| device_name="enp5s0" | |
| source_device="wlp3s0" | |
| sudo ip link set ${device_name} down | |
| sudo ip addr flush dev ${device_name} | |
| sudo ip addr show dev ${device_name} | |
| sudo ip addr add 10.5.5.1/24 dev ${device_name} |
| repositories: | |
| eclipse-cyclonedds/cyclonedds: | |
| type: git | |
| url: https://github.com/eclipse-cyclonedds/cyclonedds | |
| version: master | |
| ros2/rcutils: | |
| type: git | |
| url: https://github.com/ros2/rcutils/ | |
| version: eloquent | |
| ros2/rmw: |
| -- Found ament_cmake_ros: 0.7.0 (G:/ros2_ws/install/share/ament_cmake_ros/cmake) | |
| -- Found PythonInterp: C:/Python37/python.exe (found suitable version "3.7.3", minimum required is "3") | |
| -- Using PYTHON_EXECUTABLE: C:/Python37/python.exe | |
| -- Found builtin_interfaces: 0.7.4 (G:/ros2_ws/install/share/builtin_interfaces/cmake) | |
| -- Found rosidl_adapter: 0.7.3 (G:/ros2_ws/install/share/rosidl_adapter/cmake) | |
| -- Found rcl: 0.7.4 (G:/ros2_ws/install/share/rcl/cmake) | |
| -- Found rmw_implementation_cmake: 0.7.1 (G:/ros2_ws/install/share/rmw_implementation_cmake/cmake) | |
| -- Found rcl_yaml_param_parser: 0.7.4 (G:/ros2_ws/install/share/rcl_yaml_param_parser/cmake) | |
| -- Found rosgraph_msgs: 0.7.4 (G:/ros2_ws/install/share/rosgraph_msgs/cmake) | |
| -- Found ament_cmake_gtest: 0.7.3 (G:/ros2_ws/install/share/ament_cmake_gtest/cmake) |
| // generated from rosidl_generator_cpp/resource/idl__struct.hpp.em | |
| // with input from rosidl_generator_cpp:msg/Various.idl | |
| // generated code does not contain a copyright notice | |
| #ifndef ROSIDL_GENERATOR_CPP__MSG__VARIOUS__STRUCT_HPP_ | |
| #define ROSIDL_GENERATOR_CPP__MSG__VARIOUS__STRUCT_HPP_ | |
| #include <rosidl_generator_cpp/bounded_vector.hpp> | |
| #include <rosidl_generator_cpp/message_initialization.hpp> | |
| #include <algorithm> |
| // generated from rosidl_generator_cpp/resource/idl__struct.hpp.em | |
| // with input from rosidl_generator_cpp:msg\PrimitivesStatic.idl | |
| // generated code does not contain a copyright notice | |
| #ifndef ROSIDL_GENERATOR_CPP__MSG__PRIMITIVES_STATIC__STRUCT_HPP_ | |
| #define ROSIDL_GENERATOR_CPP__MSG__PRIMITIVES_STATIC__STRUCT_HPP_ | |
| #include <rosidl_generator_cpp/bounded_vector.hpp> | |
| #include <rosidl_generator_cpp/message_initialization.hpp> | |
| #include <algorithm> |