From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 41AEEA0C48; Wed, 16 Jun 2021 08:20:43 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 16F4D4067A; Wed, 16 Jun 2021 08:20:43 +0200 (CEST) Received: from mga17.intel.com (mga17.intel.com [192.55.52.151]) by mails.dpdk.org (Postfix) with ESMTP id 4A10F40140 for ; Wed, 16 Jun 2021 08:20:41 +0200 (CEST) IronPort-SDR: 2x+EQaV0f3OqMOdz2VKYa4MoO5ieDyrApwViJPV6IxJ+hz8z7yBPgPcDhIVtvp8fF55hZcLpFq 2gwGaE0yjRPg== X-IronPort-AV: E=McAfee;i="6200,9189,10016"; a="186498829" X-IronPort-AV: E=Sophos;i="5.83,277,1616482800"; d="scan'208";a="186498829" Received: from orsmga001.jf.intel.com ([10.7.209.18]) by fmsmga107.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 15 Jun 2021 23:20:40 -0700 IronPort-SDR: LrqPQfbaRDGD5XCMvBg2vL5R16l4roPbm4DgyOP/VYJ8jQXP/K6BxKn4St03q6WMc43a6KBIx2 DVq2tjOklNDQ== X-IronPort-AV: E=Sophos;i="5.83,277,1616482800"; d="scan'208";a="484763633" Received: from shwdenpg197.ccr.corp.intel.com ([10.240.182.157]) by orsmga001-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 15 Jun 2021 23:20:38 -0700 From: Jun Dong To: dts@dpdk.org Cc: junx.dong@intel.com, Zhimin Huang Date: Wed, 16 Jun 2021 14:20:32 +0800 Message-Id: <20210616062033.1825-1-junx.dong@intel.com> X-Mailer: git-send-email 2.24.1.windows.2 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [dts] [PATCH V1 1/2] doc/dts_gsg: update some commands X-BeenThere: dts@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: test suite reviews and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dts-bounces@dpdk.org Sender: "dts" From: Zhimin Huang 1. update installing ssh service command 2. correct installing python modules by requirements.txt Signed-off-by: Jun Dong --- doc/dts_gsg/quick_start.rst | 6 +++--- doc/dts_gsg/usr_guide/sys_reqs.rst | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/doc/dts_gsg/quick_start.rst b/doc/dts_gsg/quick_start.rst index b26cf26a..78352a73 100644 --- a/doc/dts_gsg/quick_start.rst +++ b/doc/dts_gsg/quick_start.rst @@ -90,8 +90,8 @@ Tester and DUT should have one interface connected to the same internet, so that .. code-block:: console - apt-get install sshd # download / install ssh software - systemctl enable ssh # start ssh service + apt-get install openssh-server # download / install ssh software + service ssh start # start ssh service .. note:: @@ -110,7 +110,7 @@ Please install them as the following: .. code-block:: console apt-get install python3 - python3 -m pip install requirements.txt + python3 -m pip install -r requirements.txt BIOS setting for DUT ~~~~~~~~~~~~~~~~~~~~ diff --git a/doc/dts_gsg/usr_guide/sys_reqs.rst b/doc/dts_gsg/usr_guide/sys_reqs.rst index 8b70abb0..b91eef9d 100644 --- a/doc/dts_gsg/usr_guide/sys_reqs.rst +++ b/doc/dts_gsg/usr_guide/sys_reqs.rst @@ -23,8 +23,8 @@ Since DPDK Test Suite Tester communicates with DUT via SSH, please install and s .. code-block:: console - apt-get install sshd - systemctl enable ssh + apt-get install openssh-server # download / install ssh software + service ssh start # start ssh service Generally DTS use Linux username and password to login, but it also supports to use authorized login. For create authorized login session, user needs to generate RSA authentication keys to ssh connectioni: -- 2.24.1.windows.2