¿Qué es el comando fetch en ubuntu?


0

Traté de instalar webrtc-streamer en mi placa basada en ARM de chips AM4372 (Ti). Necesito ejecutar

fetch webrtc

Ejecuté este comando, luego ocurrió el siguiente error. No entiendo el significado del mensaje. explique qué es el comando fecth.

"-bash: fetch: command not found"

Es un mensaje de bash(su shell) que el comando fetchno existe. No está instalado (o instalado incorrectamente).
gronostaj

Respuestas:


1

¿Qué es el comando fetch en ubuntu?

fetch No es un comando estándar en Ubuntu.

$ cat /etc/os-release
NAME="Ubuntu"
VERSION="14.04.5 LTS, Trusty Tahr"
ID=ubuntu
ID_LIKE=debian
PRETTY_NAME="Ubuntu 14.04.5 LTS"
VERSION_ID="14.04"
HOME_URL="http://www.ubuntu.com/"
SUPPORT_URL="http://help.ubuntu.com/"
BUG_REPORT_URL="http://bugs.launchpad.net/ubuntu/"

$ type time
time is a shell keyword

$ type ls
ls is aliased to `ls --color=auto'

$ type git
git is /usr/bin/git

$ type fetch
-bash: type: fetch: not found

Es probable que las instrucciones que está siguiendo hayan omitido mencionar algunos requisitos previos no estándar que deben instalarse primero.


No entiendo el significado del mensaje -bash: fetch: command not found

El comando shell, bash, le dice que no puede encontrar un comando llamado "fetch" o está informando un error devuelto por un comando fetch que sí encontró.

Este tipo general de mensaje de error puede ocurrir cuando el comando no existe o cuando es el nombre de un programa que no está en el actual $PATH.


Al usar nuestro sitio, usted reconoce que ha leído y comprende nuestra Política de Cookies y Política de Privacidad.
Licensed under cc by-sa 3.0 with attribution required.