필터 지우기
필터 지우기

The Nvidia Jetson device can not be remotely connected with my laptop computer

조회 수: 3 (최근 30일)
I tried to connect nvidia device (sitting in one of plants far away from my laptop) with my laptop with our company network. it shows the error below. Do you know how to fix this issue?
*************************************
Error using nvidiaio.internal.launchServer
Specified user name must belong to the sudoer group.
Error in nvidiaboard/connectToServer
Error in nvidiaboard/initiatePeripheralAccess
Error in nvidiaboard/checkAndGetHardwareConfig
Error in jetson
***********************************
I then went to the file LauchServer.m (under MATLAB\SupportPackages\R2022b\toolbox\target\Supportpackages\nivida\+nvidiaio\+internal\launchServer.m to make the file change below. it worked. Do u see any side effect by making the change?
from
*******************************
userIsSudoer = true; %#ok<NASGU>
userIsSudoer = nvidiacoder.internal.isUserSudoer(obj);
if ~userIsSudoer
error(message('nvidia:utils:UserNotSudoer'));
end
***********
to
*************
userIsSudoer = true; %#ok<NASGU>
userIsSudoer = nvidiacoder.internal.isUserSudoer(obj);
if ~userIsSudoer
userIsSudoer = true; %#ok<NASGU>
userIsSudoer = nvidiacoder.internal.isUserSudoer(obj);
% error(message('nvidia:utils:UserNotSudoer'));
end
*******************

채택된 답변

Hariprasad Ravishankar
Hariprasad Ravishankar 2022년 12월 20일
Hi @Liwei,
While you were able to workaround the error temporarily by commenting out the code, MATLAB still needs sudo permissions in order to perform tasks such as code execution remotely on the NVIDIA device.
I would recommend adding your username to the sudoers list in the NVIDIA device you are trying to deploy to. Here is an example I found on the web:
You can then revert the change you made to launchServer.m.
Hari
  댓글 수: 5
Anoop George
Anoop George 2023년 5월 24일
Thanks a lot! Directly using the direct display, as suggested by you solved the issue.
Earlier I was using RDP Client (Remote Desktop Connection App).
Best regards
Anoop
Ramakrishna Mandalapu
Ramakrishna Mandalapu 2023년 5월 25일
Hi Anoop,
Glad to know that it resolved the issue. Happy coding!
Thanks,
Ramakrishna

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Startup and Shutdown에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by