Changes between Version 36 and Version 37 of Tutorials/k0SDR/Tutorial00
- Timestamp:
- Jul 16, 2020, 3:38:39 PM (4 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Tutorials/k0SDR/Tutorial00
v36 v37 20 20 21 21 === Usage === 22 * Once nodes are imaged, ssh into each node. Use the USRP2 on node1-1 as the transmitter and USRP2 on node1-2 as receiver.[[BR]] 23 ssh into node1-1 22 * Once the nodes are imaged, open a separate SSH session to each node. Use the USRP2 on node1-1 as the transmitter and USRP2 on node1-2 as receiver.[[BR]] 23 24 ** SSH into node1-1 from the sb3 console: 24 25 {{{ 25 26 username@console.sb3:~$ ssh root@node1-1 27 }}} 28 29 ** Add the following lines to `/etc/netplan/00-netplan.yaml` 30 {{{ 31 enp4s0: 32 dhcp4: false 33 addresses: [192.168.10.1/24] 34 }}} 35 ** Apply the new configuration 36 {{{ 37 root@node1-1:~# netplan apply 38 }}} 39 40 ** Go to the UHD examples folder: 41 {{{ 26 42 root@node1-1:~# cd uhd/host/build/examples/ 27 43 }}} 28 29 ssh into node1-2 44 or 45 {{{ 46 root@node1-1:~# cd /usr/local/lib/uhd/examples/ 47 }}} 48 49 ** SSH into node1-2 from the sb3 console: 30 50 {{{ 31 51 username@console.sb3:~$ ssh root@node1-2 32 root@node1-1:~# cd uhd/host/build/examples/ 52 }}} 53 54 ** Add the following lines to `/etc/netplan/00-netplan.yaml` 55 {{{ 56 enp4s0: 57 dhcp4: false 58 addresses: [192.168.10.1/24] 59 }}} 60 ** Apply the new configuration 61 {{{ 62 root@node1-2:~# netplan apply 63 }}} 64 65 ** Go to the UHD examples folder: 66 {{{ 67 root@node1-2:~# cd uhd/host/build/examples/ 68 }}} 69 or 70 {{{ 71 root@node1-2:~# cd /usr/local/lib/uhd/examples/ 33 72 }}} 34 73