You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/content.md
+10-24Lines changed: 10 additions & 24 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -161,6 +161,8 @@ Portenta X8 integrates two main programming experiences: the **Yocto Linux** and
161
161
+-------------------------------------------+
162
162
163
163
164
+

165
+
164
166
To explore specific sections in more detail, please click on the links below that interest you:
165
167
166
168
*[Linux Environment](#linux-environment)
@@ -218,10 +220,6 @@ chmod +x 399-install-update
218
220
sudo ./399-install-update
219
221
```
220
222
221
-
Remember to set a new admin password at your first access.
222
-
223
-
***For image versions earlier than 844, the default password for admin access is `fio`.***
224
-
225
223
Now, you need to reboot the board by pressing its pushbutton for around 10 seconds. After that, connect again to your Portenta X8 through the Command Line and type the following commands:
226
224
227
225
```bash
@@ -564,7 +562,13 @@ Android Debug Bridge (ADB) is a tool included in the SDK software (Software Deve
564
562
565
563
***If you need to install ADB, you can also download the right tool for your Operating System directly from the [official Android website](https://developer.android.com/studio/releases/platform-tools).***
566
564
567
-
If you want to start the embedded Arduino Linux Wizard from the command line, you can continue typing in your terminal `adb forward tcp:8080 tcp:80`. With this command, ADB allows you to forward the requests of your computer's `8080 TCP-IP port` to the `80 TCP-IP port` of your device, which, in this case, is the device with the name *Portenta X8*.
565
+
If you want to start the embedded Arduino Linux Wizard from the command line, you can continue typing in your terminal:
566
+
567
+
```bash
568
+
adb forward tcp:8080 tcp:80
569
+
```
570
+
571
+
With this command, ADB allows you to forward the requests of your computer's `8080 TCP-IP port` to the `80 TCP-IP port` of your device, which, in this case, is the device with the name *Portenta X8*.
@@ -578,26 +582,12 @@ Now, you can type `adb shell` to start communicating with your Portenta X8.
578
582
579
583
As it is a Linux device, you can create files, change directories, etc.
580
584
581
-
To gain admin (root) access, type `sudo su -` and set your own password.
582
-
583
-
***For image versions earlier than 844, the default password for admin access is `fio`.***
584
-
585
-
After that, the terminal prefix should turn red.
585
+
To gain admin (root) access, type `sudo su -`. The terminal prefix should turn red.
586
586
587
587

588
588
589
589
You can now freely program your Portenta X8 Linux OS. In the sections below, you can check out some basic commands to get started.
590
590
591
-
### Change Default User Password
592
-
593
-
For image versions earlier than 844, our Portenta X8 comes with the default user `fio` with password `fio`.
594
-
595
-
For security reasons, we strongly suggest changing the default password. To do so, when logged in to your Portenta X8, launch this command to change the password of the `fio` account:
596
-
597
-
```bash
598
-
passwd fio
599
-
```
600
-
601
591
### Manage Your Network Via CLI
602
592
603
593
To connect to a Wi-Fi® Access Point via CLI, you can use the network manager tool **nmcli**. These are some of the most used commands:
@@ -1080,8 +1070,6 @@ Open Portenta X8 Shell as explained [here](#working-with-linux).
1080
1070
sudo modprobe spi-dev
1081
1071
```
1082
1072
1083
-
Insert the user password.
1084
-
1085
1073
An upcoming image release for the X8 will load the `spi-dev` modules automatically at boot. In the current version, please create a `/etc/modules-load.d/spi-dev.conf` file with the following content:
1086
1074
1087
1075
```bash
@@ -1161,8 +1149,6 @@ Thus, execute the following command:
1161
1149
sudo modprobe i2c-dev
1162
1150
```
1163
1151
1164
-
Insert the user password `fio`.
1165
-
1166
1152
An upcoming image release for the X8 will load the `i2c-dev` modules automatically at boot. In the current version, please create a `/etc/modules-load.d/i2c-dev.conf` file with the following content:
0 commit comments