Thiago
Thiago

Reputation: 13302

-bash: installation: No such file or directory in Mac Terminal

When I load my Terminal I get:

Last login: Tue Jun  2 22:26:10 on ttys001
-bash: installation: No such file or directory
User:~ user$

What do the following mean:

Upvotes: 0

Views: 388

Answers (1)

Some programmer dude
Some programmer dude

Reputation: 409176

The term TTY is short for "teletype" (from those old teletype terminals). It's simply the device used to connect the standard file handles (standard out, standard in and standard error) to the terminal. The numbers are just a sequence number, as there are many such devices.

That line simply says that last time you logged in, it was on the terminal device ttys001.

Upvotes: 1

Related Questions