Sponsored Content
Full Discussion: waking up
Special Forums IP Networking waking up Post 302575836 by yashwanthguru on Wednesday 23rd of November 2011 02:23:34 AM
Old 11-23-2011
thanks for suggestion and if you get any answer please post to my reply as soon as possible........



dude

Last edited by yashwanthguru; 11-23-2011 at 05:47 AM..
 

5 More Discussions You Might Find Interesting

1. Windows & DOS: Issues & Discussions

Waking up windowsXP from FC3

In my home network I have a windows XP server and a Redhat FC3 Linux server. The linux server has ssh open to the internet. What I'd like to do is ssh into the FC3 machine and "wakeup" the windows XP box which is in standby mode. Anyone know a way to achieve this? (1 Reply)
Discussion started by: dangral
1 Replies

2. Debian

Laptop waking up in bag: go back to sleep script

I have a Debian-derived distro (Kubuntu 8.04) running on a Dell Inspiron laptop. This laptop often wakes from RAM suspension while in my bag. I would like to run a script, upon RAM suspension wake, that would detect if the lid switch is closed. If so, then the script should put the machine back in... (0 Replies)
Discussion started by: dotancohen
0 Replies

3. Ubuntu

Sound fails after waking from hibernate -- Intrepid/Xubuntu

Title says it all. Occasionally but frequently I lose sound: external speakers and headphones both make no noise. I just realized that this tends to happen (perhaps only happens) after starting the computer following hibernation. Rebooting always fixes the issue... but I'd hate to tell my... (3 Replies)
Discussion started by: CRGreathouse
3 Replies

4. Ubuntu

Losing wmx0 interface after waking up from hibernation

I don't know why, but I can't connect to my WiMax network after waking up from hibernation... System log shows the following messages: Feb 5 10:07:52 lenovo-S102 wimaxd: wimaxd event: libwimax: 6843 Feb 5 10:07:52 lenovo-S102 wimaxd: wimaxd event: E: RX: cannot join multicast group 0: -22... (4 Replies)
Discussion started by: Sapfeer
4 Replies

5. UNIX for Advanced & Expert Users

Waking Up USB External Hard Drive for file archiving

Hello Experts, I hope I'm writing to the correct category for my question. I have a very basic shell script for doing file archiving to the external usb hard drive (WD studio edition II 2TB formatted as FAT32 for compatibility). The shell script only needs to run once per day. It basically... (8 Replies)
Discussion started by: johankor
8 Replies
SHUTDOWN(2)						      BSD System Calls Manual						       SHUTDOWN(2)

NAME
shutdown -- shut down part of a full-duplex connection LIBRARY
Standard C Library (libc, -lc) SYNOPSIS
#include <sys/socket.h> int shutdown(int s, int how); DESCRIPTION
The shutdown() call causes all or part of a full-duplex connection on the socket associated with s to be shut down. The how argument speci- fies which part of the connection will be shut down. Permissible values are: SHUT_RD further receives will be disallowed. SHUT_WR further sends will be disallowed. SHUT_RDWR further sends and receives will be disallowed. RETURN VALUES
A 0 is returned if the call succeeds, -1 if it fails. ERRORS
The call succeeds unless: [EBADF] s is not a valid descriptor. [EINVAL] The how argument is invalid. [ENOTCONN] The specified socket is not connected. [ENOTSOCK] s is a file, not a socket. SEE ALSO
connect(2), socket(2) HISTORY
The shutdown() function call appeared in 4.2BSD. The how arguments used to be simply 0, 1, and 2, but now have named values as specified by X/Open Portability Guide Issue 4 (``XPG4''). BSD
August 18, 2002 BSD
All times are GMT -4. The time now is 05:32 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy