NasControl: New file releases version 1.2.0.0


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News NasControl: New file releases version 1.2.0.0
# 1  
Old 09-30-2008
NasControl: New file releases version 1.2.0.0

Switches a network-attached-storage (NAS) device from the company Buffalo on and keeps it alive as long as you need it. This is done by sending wake-on-lan (WOL) packages via the network. Deployment via copy & paste, no administrator permission needed.
Image Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread

4 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

UNIX utility to find difference in folder, file and contents of file against a base version

Hi, I am trying to find out whether there are any Unix utilities that compares folders, files and contents within the file and provides a comprehensive report. The comparison can be against base version of a folder and file with content. Can you please let me know of such a utility? Thanks,... (6 Replies)
Discussion started by: Sripathi_ks
6 Replies

2. Shell Programming and Scripting

Copy a file from directroy/ prior version to the directory/ new version

How to copy a file from directroy/ prior version to the directory/ new version automatically. (4 Replies)
Discussion started by: roy1912
4 Replies

3. Solaris

Solaris 2.5.1 and 2.6 OE CD and later HW releases

Hi Folks, New to the list/forum but not new to Solaris (Unix/Linux etc) been with it since 1991 or so :).. and my favorite little box is a small lunchbox IPX with upgraded motherboard (110MHz MicroSparc), RasterFlex32 24bit framebuffer... It's a sweet little one -- took two weeks to set up a... (8 Replies)
Discussion started by: Dyna
8 Replies

4. UNIX for Dummies Questions & Answers

compare version file

i have 2 files: file1 and file2. file1 has 7000 lines file2 has 7001 lines i used: sdiff file1 file2 and it shows diff at line 7001. also used: diff file1 file2 > file3 patch -p0 < file3 file1 and it shows diff at line 7001 how do i find out the additional line ? (4 Replies)
Discussion started by: tjmannonline
4 Replies
Login or Register to Ask a Question
IP-NETNS(8)							       Linux							       IP-NETNS(8)

NAME
ip-netns - process network namespace management SYNOPSIS
ip [ OPTIONS ] netns { COMMAND | help } ip netns { list } ip netns { add | delete } NETNSNAME ip netns exec NETNSNAME command ... DESCRIPTION
A network namespace is logically another copy of the network stack, with it's own routes, firewall rules, and network devices. By convention a named network namespace is an object at /var/run/netns/NAME that can be opened. The file descriptor resulting from opening /var/run/netns/NAME refers to the specified network namespace. Holding that file descriptor open keeps the network namespace alive. The file descriptor can be used with the setns(2) system call to change the network namespace associated with a task. The convention for network namespace aware applications is to look for global network configuration files first in /etc/netns/NAME/ then in /etc/. For example, if you want a different version of /etc/resolv.conf for a network namespace used to isolate your vpn you would name it /etc/netns/myvpn/resolv.conf. ip netns exec automates handling of this configuration, file convention for network namespace unaware applications, by creating a mount namespace and bind mounting all of the per network namespace configure files into their traditional location in /etc. ip netns list - show all of the named network namespaces ip netns add NAME - create a new named network namespace ip netns delete NAME - delete the name of a network namespace ip netns exec NAME cmd ... - Run cmd in the named network namespace EXAMPLES
SEE ALSO
ip(8) AUTHOR
Original Manpage by Eric W. Biederman iproute2 20 Dec 2011 IP-NETNS(8)