User Manual Orange Pi Zero 3

  Features   |  Use   |    Linux     |  Linux SDK   |  Android   |  Android SRC   |

RU          EN  

Chapt 3. Instructions for use of Debian/Ubuntu Server and Xfce desktop system
Страница:   25    26    27    28    29    30    31    32    33    34    35    36    37    38    39    40    41    42    43    44    45    46    47    48    49    50    51    52    53    54    55    56    57    58    59    60    61    62    63    64    65    66    67    68    69    70    71    72    73    74    75    76    77    78    79    80    81    82    83    84    85    86    87    88    89    90    91    92    93    94    95    96    97    98    99    100    101    102    103    104    105    106    107    108    109    110    111    112    113    114    115    116    117    118    119    120    121    122  


3.34.1. How to upload files to the development board Linux system in Ubuntu PC

3.34.1.1 How to upload files using the scp command

  • 1) Use the scp command to upload files from the Ubuntu PC to the Linux system of the development board. The specific commands are as follows

    a. file_path Need to be replaced with the path of the file to be uploaded

    b. orangepi It is the user name of the Linux system of the development board, and it can also be replaced with other ones, such as root

    c. 192.168.xx.xx: It is the IP address of the development board, please modify it according to the actual situation

    d. /home/orangepi: The path in the Linux system of the development board can also be modified to other paths

    test@test:~$ scp file_path orangepi@192.168.xx.xx:/home/orangepi/

  • 2) If you want to upload a folder, you need to add the -r parameter

    test@test:~$ scp -r dir_path orangepi@192.168.xx.xx:/home/orangepi/

  • 3) There are more usages of scp, please use the following command to view the man manual
    test@test:~$ man scp

    3.34.1.2 How to upload files using filezilla

  • 1) First install filezilla in Ubuntu PC

    test@test:~$ sudo apt install -y filezilla

  • 2) Then use the following command to open filezilla

    test@test:~$ filezilla

  • 3) The interface after filezilla is opened is as follows, at this time, the display under the remote site on the right is empty



    Img 3.263

  • 4) The method of connecting the development board is shown in the figure below


    Img 3.264

  • 5) Then choose to savethe password, and then click OK


    Img 3.265

  • 6) Then choose to alwaystrustthis host, and then click OK


    Img 3.266

  • 7) After the connection is successful, you can see the directory structure of the development board linux file system on the right side of the filezilla software


    Img 3.267

  • 8) Then select the path to be uploaded to the development board on the right side of the filezilla software, and then select the file to be uploaded in the Ubuntu PC on the left side of the filezilla software, then click the right mouse button, and then click the upload option to start uploading the file to the development board bingo.


    Img 3.268

  • 9) After the upload is complete, you can go to the corresponding path in the Linux system of the development board to view the uploaded files

  • 10) The method of uploading a folder is the same as that of uploading a file, so I won ’t go into details here

     <         > 


  • Страница:   25    26    27    28    29    30    31    32    33    34    35    36    37    38    39    40    41    42    43    44    45    46    47    48    49    50    51    52    53    54    55    56    57    58    59    60    61    62    63    64    65    66    67    68    69    70    71    72    73    74    75    76    77    78    79    80    81    82    83    84    85    86    87    88    89    90    91    92    93    94    95    96    97    98    99    100    101    102    103    104    105    106    107    108    109    110    111    112    113    114    115    116    117    118    119    120    121    122