From 12ece165d49c25cc6e458a351bca991aaf759eaa Mon Sep 17 00:00:00 2001 From: martab1994 <93210545+martab1994@users.noreply.github.com> Date: Wed, 26 Apr 2023 14:02:45 +0200 Subject: [PATCH 1/2] Adding sudo command in 399 update Adding sudo command in 399 update --- .../boards/portenta-x8/tutorials/01.user-manual/content.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/content.md b/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/content.md index 347b576ffc..da2e7aff01 100644 --- a/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/content.md +++ b/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/content.md @@ -299,9 +299,11 @@ chmod +x 399-install-update ``` ```arduino -./399-install-update +sudo su ./399-install-update ``` +Remember that the default password for admin access is `fio`. + 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: ```arduino @@ -313,7 +315,7 @@ chmod +x 399-finalize-update ``` ```arduino -./399-finalize-update +sudo su ./399-finalize-update ``` These commands will make your V.399 compatible with [aklite-offline](https://docs.foundries.io/latest/user-guide/offline-update/offline-update.html) tool and will allow you to update your Portenta X8 to the latest image version Arduino released at that point in time. Arduino provides this tool for free for any Portenta X8 user to enable offline secure updates to all devices, even if those devices are not connected to any FoundriesFactory. From 376a7d94cc0048862103368db0888c3275049a2d Mon Sep 17 00:00:00 2001 From: martab1994 <93210545+martab1994@users.noreply.github.com> Date: Wed, 26 Apr 2023 14:29:34 +0200 Subject: [PATCH 2/2] Remove sudo su and leave sudo --- .../boards/portenta-x8/tutorials/01.user-manual/content.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/content.md b/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/content.md index da2e7aff01..0feec6200f 100644 --- a/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/content.md +++ b/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/content.md @@ -299,7 +299,7 @@ chmod +x 399-install-update ``` ```arduino -sudo su ./399-install-update +sudo ./399-install-update ``` Remember that the default password for admin access is `fio`. @@ -315,7 +315,7 @@ chmod +x 399-finalize-update ``` ```arduino -sudo su ./399-finalize-update +sudo ./399-finalize-update ``` These commands will make your V.399 compatible with [aklite-offline](https://docs.foundries.io/latest/user-guide/offline-update/offline-update.html) tool and will allow you to update your Portenta X8 to the latest image version Arduino released at that point in time. Arduino provides this tool for free for any Portenta X8 user to enable offline secure updates to all devices, even if those devices are not connected to any FoundriesFactory.