• Typescript command

    From santo@2:250/1 to All on Sun Jul 19 05:44:19 2020
    Hi all...
    Which package is the 'typescript' command part of ?
    tried to google it but can not find how to install it...
    TIA
    Santo

    --- MBSE BBS v1.0.7.17 (GNU/Linux-x86_64)
    * Origin: Aioe.org NNTP Server (2:250/1@fidonet)
  • From David W. Hodgins@2:250/1 to All on Sun Jul 19 06:06:08 2020
    On Sun, 19 Jul 2020 00:44:19 -0400, santo <nanci@auroville.org.in> wrote:

    Hi all...
    Which package is the 'typescript' command part of ?
    tried to google it but can not find how to install it...
    TIA
    Santo

    There is no linux package for it. It's Microsoft's version of javascript,
    and can be installed using npm, the Node.js Package Manager. See https://www.typescriptlang.org/download

    The npm program is in the package npm.

    Regards, Dave Hodgins

    --
    Change dwhodgins@nomail.afraid.org to davidwhodgins@teksavvy.com for
    email replies.

    --- MBSE BBS v1.0.7.17 (GNU/Linux-x86_64)
    * Origin: A noiseless patient Spider (2:250/1@fidonet)
  • From santo@2:250/1 to All on Sun Jul 19 07:58:24 2020
    On Sun, 19 Jul 2020 01:06:08 -0400, David W. Hodgins wrote:

    On Sun, 19 Jul 2020 00:44:19 -0400, santo <nanci@auroville.org.in>
    wrote:


    The npm program is in the package npm.

    Regards, Dave Hodgins

    Not so easy...I do not seem to be able to install it...

    [santo@localhost Downloads]$ ls -l
    total 295340

    drwxr-xr-x 6 santo santo 4096 Jun 30 16:42 node-v12.18.2-linux-x64/

    santo@localhost bin]$ ls -l
    total 47500
    -rwxr-xr-x 1 santo santo 48634352 Jun 30 16:42 node*
    lrwxrwxrwx 1 santo santo 38 Jun 30 16:42 npm -> ../lib/node_modules/npm/bin/npm-cli.js*
    lrwxrwxrwx 1 santo santo 38 Jun 30 16:42 npx -> ../lib/node_modules/npm/bin/npx-cli.js*
    [santo@localhost bin]$ node
    bash: node: command not found
    [santo@localhost bin]$ santo@localhost bin]$ npm
    bash: npm: command not found
    I think I have to add ~/Downloads/node-v12.18.2-linux-x64 to the PATH which I did via text editor PATH=$PATH:$HOME/.local/bin:$HOME/bin:HOME/Downloads/node-v12.18.2-linux-x64

    but then when I echo $PATH I get

    [santo@localhost ~]$ echo $PATH /usr/local/bin:/usr/bin:/bin:/usr/local/games:/usr/games:/usr/lib64/qt5/bin:/ho me/santo/.local/bin:/home/santo/bin/
    [santo@localhost ~]$

    ....and from here I do not know where to go because I do not know where I am...
    sigh!...

    santo




    --- MBSE BBS v1.0.7.17 (GNU/Linux-x86_64)
    * Origin: Aioe.org NNTP Server (2:250/1@fidonet)
  • From David W. Hodgins@2:250/1 to All on Sun Jul 19 08:06:05 2020
    On Sun, 19 Jul 2020 02:58:24 -0400, santo <santo@auroville.org.in> wrote:

    [santo@localhost bin]$ santo@localhost bin]$ npm
    bash: npm: command not found

    [dave@x3 ~]$ rpm -qa|grep -e npm -e nodejs|sort
    nodejs-10.15.3-8.mga7
    nodejs-libs-10.15.3-8.mga7
    npm-6.4.1-1.10.15.3.8.mga7
    [dave@x3 ~]$ npm install typescript --save-dev
    npm WARN saveError ENOENT: no such file or directory, open '/home/dave/package.json'
    npm notice created a lockfile as package-lock.json. You should commit this file.
    npm WARN enoent ENOENT: no such file or directory, open '/home/dave/package.json'
    npm WARN dave No description
    npm WARN dave No repository field.
    npm WARN dave No README data
    npm WARN dave No license field.

    + typescript@3.9.7
    added 1 package from 1 contributor in 15.503s

    Regards, Dave Hodgins

    --
    Change dwhodgins@nomail.afraid.org to davidwhodgins@teksavvy.com for
    email replies.

    --- MBSE BBS v1.0.7.17 (GNU/Linux-x86_64)
    * Origin: A noiseless patient Spider (2:250/1@fidonet)
  • From santo@2:250/1 to All on Sun Jul 19 09:46:57 2020
    On Sun, 19 Jul 2020 03:06:05 -0400, David W. Hodgins wrote:

    On Sun, 19 Jul 2020 02:58:24 -0400, santo <santo@auroville.org.in> wrote:

    [santo@localhost bin]$ santo@localhost bin]$ npm
    bash: npm: command not found

    [dave@x3 ~]$ rpm -qa|grep -e npm -e nodejs|sort
    nodejs-10.15.3-8.mga7
    nodejs-libs-10.15.3-8.mga7
    npm-6.4.1-1.10.15.3.8.mga7
    [dave@x3 ~]$ npm install typescript --save-dev
    npm WARN saveError ENOENT: no such file or directory, open
    '/home/dave/package.json'
    npm notice created a lockfile as package-lock.json. You should commit this
    file.
    npm WARN enoent ENOENT: no such file or directory, open
    '/home/dave/package.json'
    npm WARN dave No description
    npm WARN dave No repository field.
    npm WARN dave No README data
    npm WARN dave No license field.

    + typescript@3.9.7
    added 1 package from 1 contributor in 15.503s

    Regards, Dave Hodgins

    Tried as root as well but nothing seem to happen..
    Santo

    [santo@localhost ~]$ rpm -qa|grep -e npm -e nodejs|sort
    [santo@localhost ~]$

    [santo@localhost ~]$ su -
    Password:
    [root@localhost ~]# rpm -qa|grep -e npm -e nodejs|sort
    [root@localhost ~]#

    --- MBSE BBS v1.0.7.17 (GNU/Linux-x86_64)
    * Origin: Aioe.org NNTP Server (2:250/1@fidonet)
  • From William Unruh@2:250/1 to All on Sun Jul 19 13:26:36 2020
    On 2020-07-19, santo <santo@auroville.org.in> wrote:
    On Sun, 19 Jul 2020 03:06:05 -0400, David W. Hodgins wrote:

    On Sun, 19 Jul 2020 02:58:24 -0400, santo <santo@auroville.org.in> wrote:

    [santo@localhost bin]$ santo@localhost bin]$ npm
    bash: npm: command not found

    [dave@x3 ~]$ rpm -qa|grep -e npm -e nodejs|sort
    nodejs-10.15.3-8.mga7
    nodejs-libs-10.15.3-8.mga7
    npm-6.4.1-1.10.15.3.8.mga7
    [dave@x3 ~]$ npm install typescript --save-dev
    npm WARN saveError ENOENT: no such file or directory, open '/home/dave/package.json'
    npm notice created a lockfile as package-lock.json. You should commit this file.
    npm WARN enoent ENOENT: no such file or directory, open '/home/dave/package.json'
    npm WARN dave No description
    npm WARN dave No repository field.
    npm WARN dave No README data
    npm WARN dave No license field.

    + typescript@3.9.7
    added 1 package from 1 contributor in 15.503s

    Regards, Dave Hodgins

    Tried as root as well but nothing seem to happen..
    Santo

    [santo@localhost ~]$ rpm -qa|grep -e npm -e nodejs|sort
    [santo@localhost ~]$

    Which means you have not installed them. So install them first.
    Ie run his first commands first the test they are installed.


    urpmi npm nodejs nodejs-lib



    [santo@localhost ~]$ su -
    Password:
    [root@localhost ~]# rpm -qa|grep -e npm -e nodejs|sort
    [root@localhost ~]#

    --- MBSE BBS v1.0.7.17 (GNU/Linux-x86_64)
    * Origin: A noiseless patient Spider (2:250/1@fidonet)
  • From santo@2:250/1 to All on Sun Jul 19 14:11:22 2020
    On Sun, 19 Jul 2020 12:26:36 +0000, William Unruh wrote:

    On 2020-07-19, santo <santo@auroville.org.in> wrote:
    On Sun, 19 Jul 2020 03:06:05 -0400, David W. Hodgins wrote:

    On Sun, 19 Jul 2020 02:58:24 -0400, santo <santo@auroville.org.in> wrote: >>>
    [santo@localhost bin]$ santo@localhost bin]$ npm
    bash: npm: command not found

    [dave@x3 ~]$ rpm -qa|grep -e npm -e nodejs|sort
    nodejs-10.15.3-8.mga7
    nodejs-libs-10.15.3-8.mga7
    npm-6.4.1-1.10.15.3.8.mga7
    [dave@x3 ~]$ npm install typescript --save-dev
    npm WARN saveError ENOENT: no such file or directory, open '/home/dave/package.json'
    npm notice created a lockfile as package-lock.json. You should commit this file.
    npm WARN enoent ENOENT: no such file or directory, open '/home/dave/package.json'
    npm WARN dave No description
    npm WARN dave No repository field.
    npm WARN dave No README data
    npm WARN dave No license field.

    + typescript@3.9.7
    added 1 package from 1 contributor in 15.503s

    Regards, Dave Hodgins

    Tried as root as well but nothing seem to happen..
    Santo

    [santo@localhost ~]$ rpm -qa|grep -e npm -e nodejs|sort
    [santo@localhost ~]$

    Which means you have not installed them. So install them first.
    Ie run his first commands first the test they are installed.


    urpmi npm nodejs nodejs-lib

    that is exactly the problem...I am tryibg to install them...
    I am really sorry but obviously there is something I do not get..

    [root@localhost ~]# urpmi npm nodesj-lib
    No package named nodesj-lib
    [root@localhost ~]#

    --- MBSE BBS v1.0.7.17 (GNU/Linux-x86_64)
    * Origin: Aioe.org NNTP Server (2:250/1@fidonet)
  • From santo@2:250/1 to All on Sun Jul 19 14:14:33 2020
    On Sun, 19 Jul 2020 13:11:22 +0000, santo wrote:

    On Sun, 19 Jul 2020 12:26:36 +0000, William Unruh wrote:



    [santo@localhost ~]$ rpm -qa|grep -e npm -e nodejs|sort
    [santo@localhost ~]$

    Which means you have not installed them. So install them first.
    Ie run his first commands first the test they are installed.


    urpmi npm nodejs nodejs-lib

    that is exactly the problem...I am tryibg to install them...
    I am really sorry but obviously there is something I do not get..

    [root@localhost ~]# urpmi npm nodesj-lib
    No package named nodesj-lib
    [root@localhost ~]#

    apologies for the typing mistake

    [root@localhost ~]# urpmi npm nodejs nodejs-lib
    No package named nodejs-lib
    [root@localhost ~]#



    --- MBSE BBS v1.0.7.17 (GNU/Linux-x86_64)
    * Origin: Aioe.org NNTP Server (2:250/1@fidonet)
  • From Jim Beard@2:250/1 to All on Sun Jul 19 14:45:49 2020
    On Sun, 19 Jul 2020 13:11:22 +0000, santo wrote:

    On Sun, 19 Jul 2020 12:26:36 +0000, William Unruh wrote:

    On 2020-07-19, santo <santo@auroville.org.in> wrote:
    On Sun, 19 Jul 2020 03:06:05 -0400, David W. Hodgins wrote:

    On Sun, 19 Jul 2020 02:58:24 -0400, santo <santo@auroville.org.in>
    wrote:

    [santo@localhost bin]$ santo@localhost bin]$ npm bash: npm: command
    not found

    [dave@x3 ~]$ rpm -qa|grep -e npm -e nodejs|sort nodejs-10.15.3-8.mga7
    nodejs-libs-10.15.3-8.mga7 npm-6.4.1-1.10.15.3.8.mga7 [dave@x3 ~]$
    npm install typescript --save-dev npm WARN saveError ENOENT: no such
    file or directory, open '/home/dave/package.json'
    npm notice created a lockfile as package-lock.json. You should commit
    this file. npm WARN enoent ENOENT: no such file or directory, open
    '/home/dave/package.json' npm WARN dave No description npm WARN dave
    No repository field.
    npm WARN dave No README data npm WARN dave No license field.

    + typescript@3.9.7 added 1 package from 1 contributor in 15.503s

    Regards, Dave Hodgins

    Tried as root as well but nothing seem to happen..
    Santo

    [santo@localhost ~]$ rpm -qa|grep -e npm -e nodejs|sort
    [santo@localhost ~]$

    Which means you have not installed them. So install them first.
    Ie run his first commands first the test they are installed.


    urpmi npm nodejs nodejs-lib

    that is exactly the problem...I am tryibg to install them...
    I am really sorry but obviously there is something I do not get..

    [root@localhost ~]# urpmi npm nodesj-lib No package named nodesj-lib [root@localhost ~]#

    As root, on the command line, install the packages cited by Dave:

    urpmi nodejs nodejs-libs npm

    Cheers!

    jim b.


    --
    UNIX is not user-unfriendly, it merely expects users to be computer-
    friendly.

    --- MBSE BBS v1.0.7.17 (GNU/Linux-x86_64)
    * Origin: A noiseless patient Spider (2:250/1@fidonet)
  • From santo@2:250/1 to All on Sun Jul 19 15:01:29 2020
    On Sun, 19 Jul 2020 13:14:33 +0000, santo wrote:

    On Sun, 19 Jul 2020 13:11:22 +0000, santo wrote:

    On Sun, 19 Jul 2020 12:26:36 +0000, William Unruh wrote:



    [santo@localhost ~]$ rpm -qa|grep -e npm -e nodejs|sort
    [santo@localhost ~]$

    Which means you have not installed them. So install them first.
    Ie run his first commands first the test they are installed.


    urpmi npm nodejs nodejs-lib

    that is exactly the problem...I am tryibg to install them...
    I am really sorry but obviously there is something I do not get..

    [root@localhost ~]# urpmi npm nodesj-lib
    No package named nodesj-lib
    [root@localhost ~]#

    apologies for the typing mistake

    [santo@localhost ~]$ su -
    Password:
    [root@localhost ~]# rpm -qa|grep -e npm -e nodejs|sort
    nodejs-10.15.3-8.mga7
    nodejs-libs-10.15.3-8.mga7
    npm-6.4.1-1.10.15.3.8.mga7
    [root@localhost ~]# npm install typescript --save-dev
    npm ERR! cb() never called!

    npm ERR! This is an error with npm itself. Please report this error at:
    npm ERR! <https://npm.community>

    npm ERR! A complete log of this run can be found in:
    npm ERR! /root/.npm/_logs/2020-07-19T13_56_22_816Z-debug.lo

    [root@localhost ~]# urpmi npm nodejs nodejs-lib
    No package named nodejs-lib
    [root@localhost ~]#

    sigh!...
    I have no idea how I managed to delete Jim post...

    --- MBSE BBS v1.0.7.17 (GNU/Linux-x86_64)
    * Origin: Aioe.org NNTP Server (2:250/1@fidonet)
  • From David W. Hodgins@2:250/1 to All on Sun Jul 19 18:30:46 2020
    On Sun, 19 Jul 2020 10:01:29 -0400, santo <santo@auroville.org.in> wrote:
    [root@localhost ~]# npm install typescript --save-dev
    npm ERR! cb() never called!

    Try running that as the regular user, not as root.

    Regards, Dave Hodgins

    --
    Change dwhodgins@nomail.afraid.org to davidwhodgins@teksavvy.com for
    email replies.

    --- MBSE BBS v1.0.7.17 (GNU/Linux-x86_64)
    * Origin: A noiseless patient Spider (2:250/1@fidonet)
  • From William Unruh@2:250/1 to All on Sun Jul 19 18:50:33 2020
    On 2020-07-19, santo <santo@auroville.org.in> wrote:
    On Sun, 19 Jul 2020 12:26:36 +0000, William Unruh wrote:

    On 2020-07-19, santo <santo@auroville.org.in> wrote:
    On Sun, 19 Jul 2020 03:06:05 -0400, David W. Hodgins wrote:

    On Sun, 19 Jul 2020 02:58:24 -0400, santo <santo@auroville.org.in> wrote: >>>>
    [santo@localhost bin]$ santo@localhost bin]$ npm
    bash: npm: command not found

    [dave@x3 ~]$ rpm -qa|grep -e npm -e nodejs|sort
    nodejs-10.15.3-8.mga7
    nodejs-libs-10.15.3-8.mga7
    npm-6.4.1-1.10.15.3.8.mga7
    [dave@x3 ~]$ npm install typescript --save-dev
    npm WARN saveError ENOENT: no such file or directory, open '/home/dave/package.json'
    npm notice created a lockfile as package-lock.json. You should commit this file.
    npm WARN enoent ENOENT: no such file or directory, open '/home/dave/package.json'
    npm WARN dave No description
    npm WARN dave No repository field.
    npm WARN dave No README data
    npm WARN dave No license field.

    + typescript@3.9.7
    added 1 package from 1 contributor in 15.503s

    Regards, Dave Hodgins

    Tried as root as well but nothing seem to happen..
    Santo

    [santo@localhost ~]$ rpm -qa|grep -e npm -e nodejs|sort
    [santo@localhost ~]$

    Which means you have not installed them. So install them first.
    Ie run his first commands first the test they are installed.


    urpmi npm nodejs nodejs-lib

    that is exactly the problem...I am tryibg to install them...
    I am really sorry but obviously there is something I do not get..

    [root@localhost ~]# urpmi npm nodesj-lib
    No package named nodesj-lib
    [root@localhost ~]#

    When you are dyslexic, you have to work much harder to make sure that
    you have gotten the the command to be EXACTLY what was requested. Copy
    and paste is one possible way.


    --- MBSE BBS v1.0.7.17 (GNU/Linux-x86_64)
    * Origin: A noiseless patient Spider (2:250/1@fidonet)
  • From Jim Beard@2:250/1 to All on Mon Jul 20 02:16:55 2020
    On Sun, 19 Jul 2020 14:01:29 +0000, santo wrote:

    On Sun, 19 Jul 2020 13:14:33 +0000, santo wrote:

    On Sun, 19 Jul 2020 13:11:22 +0000, santo wrote:

    On Sun, 19 Jul 2020 12:26:36 +0000, William Unruh wrote:



    [santo@localhost ~]$ rpm -qa|grep -e npm -e nodejs|sort
    [santo@localhost ~]$

    Which means you have not installed them. So install them first.
    Ie run his first commands first the test they are installed.


    urpmi npm nodejs nodejs-lib

    that is exactly the problem...I am tryibg to install them...
    I am really sorry but obviously there is something I do not get..

    [root@localhost ~]# urpmi npm nodesj-lib No package named nodesj-lib
    [root@localhost ~]#

    apologies for the typing mistake

    [santo@localhost ~]$ su -
    Password:
    [root@localhost ~]# rpm -qa|grep -e npm -e nodejs|sort
    nodejs-10.15.3-8.mga7 nodejs-libs-10.15.3-8.mga7
    npm-6.4.1-1.10.15.3.8.mga7 [root@localhost ~]# npm install typescript --save-dev npm ERR! cb() never called!

    npm ERR! This is an error with npm itself. Please report this error at:
    npm ERR! <https://npm.community>

    npm ERR! A complete log of this run can be found in:
    npm ERR! /root/.npm/_logs/2020-07-19T13_56_22_816Z-debug.lo

    [root@localhost ~]# urpmi npm nodejs nodejs-lib No package named
    nodejs-lib [root@localhost ~]#

    sigh!...
    I have no idea how I managed to delete Jim post...

    As root, on the command line (in a terminal window),

    urpmi nodejs nodejs-libs npm

    That should install the three critical rpm packages.

    Cheers!

    jim b.


    --
    UNIX is not user-unfriendly, it merely expects users to be computer-
    friendly.

    --- MBSE BBS v1.0.7.17 (GNU/Linux-x86_64)
    * Origin: A noiseless patient Spider (2:250/1@fidonet)
  • From santo@2:250/1 to All on Mon Jul 20 07:49:49 2020
    On Sun, 19 Jul 2020 13:30:46 -0400, David W. Hodgins wrote:

    On Sun, 19 Jul 2020 10:01:29 -0400, santo <santo@auroville.org.in>
    wrote:
    [root@localhost ~]# npm install typescript --save-dev
    npm ERR! cb() never called!

    Try running that as the regular user, not as root.

    Regards, Dave Hodgins

    [santo@localhost ~]$ npm install typescript --save-dev
    npm WARN saveError ENOENT: no such file or directory, open '/home/santo/ package.json'
    npm notice created a lockfile as package-lock.json. You should commit
    this file.
    npm WARN enoent ENOENT: no such file or directory, open '/home/santo/ package.json'
    npm WARN santo No description
    npm WARN santo No repository field.
    npm WARN santo No README data
    npm WARN santo No license field.

    + typescript@3.9.7
    added 1 package from 1 contributor in 53.592s
    [santo@localhost ~]$ typescript
    bash: typescript: command not found


    From Mageia Forum got the suggestion to install through the repositores
    so in MCC 'Install Remove Software I typed 'npm'
    ( and not 'typescript as I did earlier without luck...)and found it...I uninstalled it and then installed it again...same result

    [santo@localhost ~]$ typescript
    bash: typescript: command not found

    I remember years ago that just by typing typescript I would get a message
    that the outcome of the command I would type next would be saved in a
    file called 'transcript' in /home directory...was so easy to use and
    useful for me...now it is installed I believe but still 'command not
    found'
    what is it that I am missing?

    --- MBSE BBS v1.0.7.17 (GNU/Linux-x86_64)
    * Origin: Aioe.org NNTP Server (2:250/1@fidonet)
  • From William Unruh@2:250/1 to All on Mon Jul 20 21:57:12 2020
    On 2020-07-20, santo <santo@auroville.org.in> wrote:
    On Sun, 19 Jul 2020 13:30:46 -0400, David W. Hodgins wrote:

    On Sun, 19 Jul 2020 10:01:29 -0400, santo <santo@auroville.org.in>
    wrote:
    [root@localhost ~]# npm install typescript --save-dev
    npm ERR! cb() never called!

    Try running that as the regular user, not as root.

    Regards, Dave Hodgins

    [santo@localhost ~]$ npm install typescript --save-dev
    npm WARN saveError ENOENT: no such file or directory, open '/home/santo/ package.json'
    npm notice created a lockfile as package-lock.json. You should commit
    this file.
    npm WARN enoent ENOENT: no such file or directory, open '/home/santo/ package.json'
    npm WARN santo No description
    npm WARN santo No repository field.
    npm WARN santo No README data
    npm WARN santo No license field.

    + typescript@3.9.7
    added 1 package from 1 contributor in 53.592s
    [santo@localhost ~]$ typescript
    bash: typescript: command not found


    From Mageia Forum got the suggestion to install through the repositores
    so in MCC 'Install Remove Software I typed 'npm'
    ( and not 'typescript as I did earlier without luck...)and found it...I uninstalled it and then installed it again...same result

    [santo@localhost ~]$ typescript
    bash: typescript: command not found

    I remember years ago that just by typing typescript I would get a message that the outcome of the command I would type next would be saved in a
    file called 'transcript' in /home directory...was so easy to use and
    useful for me...now it is installed I believe but still 'command not
    found'
    what is it that I am missing?

    I know nothing about typescript or nmn, however if you want to find the typescript command do
    (as root)
    updatedb
    locate typescript

    That will show you all files which contain the word typescript in the
    filename.
    One of them will probably be the command you want. The problem is
    probably that the command is in a directory which is not part of your
    PATH.
    echo $PATH
    edit .bashrc and put the new directory you want searched for commands at
    the end of the PATH= line, with a colon in front of the new path
    directory (and no spaces of commas) and no colon at the end of the PATH=
    line.


    --- MBSE BBS v1.0.7.17 (GNU/Linux-x86_64)
    * Origin: A noiseless patient Spider (2:250/1@fidonet)
  • From David W. Hodgins@2:250/1 to All on Tue Jul 21 01:35:30 2020
    On Mon, 20 Jul 2020 02:49:49 -0400, santo <santo@auroville.org.in> wrote:
    + typescript@3.9.7
    added 1 package from 1 contributor in 53.592s
    [santo@localhost ~]$ typescript
    bash: typescript: command not found

    Looked into this more. From
    https://www.npmjs.com/package/typescript as root run
    npm install -g typescript

    Then you can compile typescript programs using the command tsc. https://www.typescriptlang.org/docs/handbook/typescript-in-5-minutes.html

    Regards, Dave Hodgins

    --
    Change dwhodgins@nomail.afraid.org to davidwhodgins@teksavvy.com for
    email replies.

    --- MBSE BBS v1.0.7.17 (GNU/Linux-x86_64)
    * Origin: A noiseless patient Spider (2:250/1@fidonet)
  • From santo@2:250/1 to All on Tue Jul 21 07:19:45 2020
    On Mon, 20 Jul 2020 20:57:12 +0000, William Unruh wrote:

    On 2020-07-20, santo <santo@auroville.org.in> wrote:
    On Sun, 19 Jul 2020 13:30:46 -0400, David W. Hodgins wrote:

    On Sun, 19 Jul 2020 10:01:29 -0400, santo <santo@auroville.org.in>
    wrote:

    + typescript@3.9.7 added 1 package from 1 contributor in 53.592s
    [santo@localhost ~]$ typescript bash: typescript: command not found


    From Mageia Forum got the suggestion to install through the repositores
    so in MCC 'Install Remove Software I typed 'npm'
    ( and not 'typescript as I did earlier without luck...)and found
    it...I
    uninstalled it and then installed it again...same result

    [santo@localhost ~]$ typescript bash: typescript: command not found

    I remember years ago that just by typing typescript I would get a
    message that the outcome of the command I would type next would be
    saved in a file called 'transcript' in /home directory...was so easy to
    use and useful for me...now it is installed I believe but still
    'command not found'
    what is it that I am missing?

    I know nothing about typescript or nmn, however if you want to find the typescript command do (as root)
    updatedb locate typescript

    Apologies to all...the fact is that my memory ( and my hidden dislexya...) failed me...I checked as you said and the command is not 'typescript'
    but 'script'...

    santo@localhost ~]$ script
    Script started, file is typescript
    [santo@localhost ~]$

    the file was saved as 'typescript' and not 'transcript'

    To me it was and is useful as I could keep
    record of what I do on the command line in
    case I make mistakes if I need help to solve them...
    Thank you for your patience and help
    Santo


    --- MBSE BBS v1.0.7.17 (GNU/Linux-x86_64)
    * Origin: Aioe.org NNTP Server (2:250/1@fidonet)
  • From santo@2:250/1 to All on Tue Jul 21 07:20:36 2020
    On Tue, 21 Jul 2020 06:19:45 +0000, santo wrote:

    On Mon, 20 Jul 2020 20:57:12 +0000, William Unruh wrote:

    On 2020-07-20, santo <santo@auroville.org.in> wrote:
    On Sun, 19 Jul 2020 13:30:46 -0400, David W. Hodgins wrote:

    On Sun, 19 Jul 2020 10:01:29 -0400, santo <santo@auroville.org.in>
    wrote:

    + typescript@3.9.7 added 1 package from 1 contributor in 53.592s
    [santo@localhost ~]$ typescript bash: typescript: command not found


    From Mageia Forum got the suggestion to install through the
    repositores so in MCC 'Install Remove Software I typed 'npm'
    ( and not 'typescript as I did earlier without luck...)and found
    it...I
    uninstalled it and then installed it again...same result

    [santo@localhost ~]$ typescript bash: typescript: command not found

    I remember years ago that just by typing typescript I would get a
    message that the outcome of the command I would type next would be
    saved in a file called 'transcript' in /home directory...was so easy
    to use and useful for me...now it is installed I believe but still
    'command not found'
    what is it that I am missing?

    I know nothing about typescript or nmn, however if you want to find the
    typescript command do (as root)
    updatedb locate typescript

    Apologies to all...the fact is that my memory ( and my hidden
    dislexya...)
    failed me...I checked as you said and the command is not 'typescript'
    but 'script'...

    santo@localhost ~]$ script Script started, file is typescript [santo@localhost ~]$

    the file was saved as 'typescript' and not 'transcript'

    To me it was and is useful as I could keep record of what I do on the
    command line in case I make mistakes if I need help to solve them...
    Thank you for your patience and help Santo


    --- MBSE BBS v1.0.7.17 (GNU/Linux-x86_64)
    * Origin: Aioe.org NNTP Server (2:250/1@fidonet)