Sponsored Content
Top Forums UNIX for Beginners Questions & Answers Check network Linux management Post 303033754 by rbatte1 on Thursday 11th of April 2019 08:21:13 AM
Old 04-11-2019
What would you like to do with it?

If you can share your operating system and version, then we should be able to help. The output from uname -a would be useful to get started.,



Kind regards,
Robin
 

8 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

linux patch management tool

I have a suse linux 9(SLES 9) I have configured "YOU" (yast online update) and it all working fine, synchronising on a daily base with http://sdb.suse.de/download but I would like to know if they is a tools or scripts that inform you of any patches that has not been applied and notify you via... (0 Replies)
Discussion started by: hassan1
0 Replies

2. Linux

Linux Patch Management

Does anyone know who to centrally manage the distribution and application of patches to multiple Linux platforms ? Is there software for this ? (0 Replies)
Discussion started by: jimthompson
0 Replies

3. IP Networking

check whether connected to network

hi... can anyone pls suggest a few methods to check whether a computer is connected to any network, using the terminal, not GUI. thanks eskay (1 Reply)
Discussion started by: eskay_karthik
1 Replies

4. Solaris

network management port

Hi I am using SF 240 and solaris 10 and I connected a cable to network management on server and other end to a switch. What configurations do I need on server to ssh or telnet to the network management port from remotely ? I also installed ALOM firmware. Is there anything else required on... (2 Replies)
Discussion started by: upengan78
2 Replies

5. IP Networking

Network Management Software

We are a small legal firm in the UK and looking to upgrade from some open source network management tools we are using. I'm not finding very many commercially supported network management software solutions that run on Linux or UNIX for that matter. Does anyone have any recommendations? ... (2 Replies)
Discussion started by: ctrenton
2 Replies

6. Solaris

Check resource management from NGZ

Hi, Is there any way if a normal user in a non global zone can check the resources assigned to the zone ? like max-locked-memory etc. 2. Is it possible to disable the max-locked-memory for a particular zone without rebooting a zone ? (1 Reply)
Discussion started by: fugitive
1 Replies

7. UNIX for Dummies Questions & Answers

Check for network issues

Hi all, How do i check for network issues on a server (solaris & linux) - interms of connectivity, collision, congestion, whatever that's impacting the connection to/from the server? Please advise. Thanks. :confused: (4 Replies)
Discussion started by: greencored
4 Replies

8. Linux

User Management in linux

Hi All, I have to learn all the user management commend like adduser,useradd,chggrp... etc I would like to know the syntax or example. Please give me document or link. Thanks, Mani (1 Reply)
Discussion started by: Mani_apr08
1 Replies
uname(2)							   System Calls 							  uname(2)

NAME
uname - get name of current operating system SYNOPSIS
#include <sys/utsname.h> int uname(struct utsname *name); DESCRIPTION
The uname() function stores information identifying the current operating system in the structure pointed to by name. The uname() function uses the utsname structure, defined in <sys/utsname.h>, whose members include: char sysname[SYS_NMLN]; char nodename[SYS_NMLN]; char release[SYS_NMLN]; char version[SYS_NMLN]; char machine[SYS_NMLN]; The uname() function returns a null-terminated character string naming the current operating system in the character array sysname. Simi- larly, the nodename member contains the name by which the system is known on a communications network. The release and version members fur- ther identify the operating system. The machine member contains a standard name that identifies the hardware on which the operating system is running. RETURN VALUES
Upon successful completion, a non-negative value is returned. Otherwise, -1 is returned and errno is set to indicate the error. ERRORS
The uname() function will fail if: EFAULT The name argument points to an illegal address. ATTRIBUTES
See attributes(5) for descriptions of the following attributes: +-----------------------------+-----------------------------+ | ATTRIBUTE TYPE | ATTRIBUTE VALUE | +-----------------------------+-----------------------------+ |Interface Stability |Standard | +-----------------------------+-----------------------------+ |MT-Level |Async-Signal-Safe | +-----------------------------+-----------------------------+ SEE ALSO
uname(1), sysinfo(2), sysconf(3C), attributes(5), standards(5) SunOS 5.11 21 Jul 1999 uname(2)
All times are GMT -4. The time now is 01:48 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy