- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Terminal type
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-16-2004 03:10 PM
08-16-2004 03:10 PM
Terminal type
Do you know that what is the difference between the console terminal and terminal?
Thanks
Alex
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-16-2004 03:31 PM
08-16-2004 03:31 PM
Re: Terminal type
Typically a terminal if it is of a serial connectivity nature, connects to either a terminal server or into a mux. If your using a PC for example you will most likely be using some form of terminal emulator, which is different.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-16-2004 03:32 PM
08-16-2004 03:32 PM
Re: Terminal type
terminal is a series of escape codes and such designed to work with particular terminal types.
Other terminal types are designed to work with other terminals.
In the end I've used vt100 with almost every terminal type, console and software so the difference may not be so practical.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-16-2004 06:35 PM
08-16-2004 06:35 PM
Re: Terminal type
A console terminal (in unix sense) = any terminal that's connected to a (unix) computer and configured in such a way that the sysadmin can use it to monitor the computer's startup and access the computer in a single-user mode (or any other maintenance mode). May grant some special privileges to the administrator: on HP-UX, the "root" user can login on the console even if all the passwords are expired.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-16-2004 08:00 PM
08-16-2004 08:00 PM
Re: Terminal type
console - is used for privillaged super user. It is the key terminal to control the manage the system and having all permissions to do.
terminal - It is for normal users who can can do the changes / accessings based on the privillage level
All terminal allocations are done on /etc/inittab file.
We can get the currect tty using getty command.
TTY configurations are made on /etc/gettydefs file. You can know over man gettydefs
We can control the login based on the terminal types. If you want to block the super user login,
create a file as,.
--- /etc/securetty --
console
-------------------
chmod 600 /etc/securetty
It will block the super user login. See more over login man page.