Changes between Version 26 and Version 27 of Docs/825gen2/Dev/GettingStarted
- Timestamp:
- 12/14/23 10:29:07 (11 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Docs/825gen2/Dev/GettingStarted
v26 v27 112 112 SSH can be used from the terminal in the VM or if you have multiple monitors it can be convenient to use SSH from Windows PowerShell in another monitor. 113 113 114 Run the "test825" script the first time for each session:114 Run the "test825" script such as "source test825 <ip address of VM> the first time for each session: 115 115 {{{ 116 source test825 <ip address of VM> 116 card825gen2:~$ source test825 10.1.0.70 117 Stopping card825 service 118 Exporting ... XDG_RUNTIME_DIR=/run/user/1001 119 Mounting nfs 10.1.0.70 120 /mnt/nfs/arm825_nand/apps 121 card825gen2:/mnt/nfs/arm825_nand/apps$ 117 122 }}} 118 The "source" command is used so that the test825 script runs in the current environment. This is helpful because after mounting to the NFS server the test825 script changes directory to the NFS directory. Without the source command test825 could not change directory for the current environment. The period character "." is a shortcut for source command. 123 124 The "test825" script stops the current user session so that the 825 screen will blank. 125 126 The "source" command is used so that the test825 script runs within the current environment. This is necessary because the script has to setup some environment variables to allow apps that use the LCD screen to run from the command line. 127 128 After mounting to the NFS server the test825 script changes directory to the NFS directory. Without the source command test825 could not change directory for the current environment. The period character "." is a shortcut for source command. 119 129 120 130 For example: 121 131 {{{ 122 . test825 10.1.5.157 132 card825gen2:~$ . test825 10.1.0.70 133 Stopping card825 service 134 Exporting ... XDG_RUNTIME_DIR=/run/user/1001 135 Mounting nfs 10.1.0.70 136 /mnt/nfs/arm825_nand/apps 137 card825gen2:/mnt/nfs/arm825_nand/apps$ 123 138 }}} 124 139 (a space is necessary after the period)