With the SonicWALL Command Line Interface one can define an address-object.
configure
address-object mac cwhii-test
address 11:22:33:44:55:66
zone OK_TEST
How does one delete an address-object?
With the SonicWALL Command Line Interface one can define an address-object.
configure
address-object mac cwhii-test
address 11:22:33:44:55:66
zone OK_TEST
How does one delete an address-object?
Hosts (file) entry on Wikipedia has a table listing the location name of the hosts file (which maps hostnames to IP addresses) on various systems. Where is this info stored on OpenVMS systems?
Is there a Squid utility command to force a cache load from a local hard drive?
xww.example.com /w /x /y /z Apache ------------------------ Slow Internet Connection ------------------------ lan1 | lan2 | lan3 | | cache | cache | cache /x /y | /x /z | /y /z Squid | Squid | Squid ------ | ------ | ------ Browser| Browser|Browser Browser| Browser|Browser Browser| Browser|Browser Browser| Browser|Browser
For example, plug the USB hard drive into the machine on lan1 that is running Squid. Then invoke a command like:
$ suqid-util\
--force-cache-load\
--url-root http://www.example.com/x\
--local-root /mnt/usb1\
--recursive
This would be useful when a 2TB hard drive can be hand carried to a location with slow Internet connection.
OR
A better solution using something other than Squid? I am still hunting.
Can Squid be configured to permanently cache specific directories of a web site?
In the diagram below, the lan1 Squid should cache www.example.com/x
and
www.example.com/y
directories permanently. Contents of directories /x /y
and /z
are write once.
xww.example.com /w /x /y /z Apache ------------------------ Slow Internet Connection ------------------------ lan1 | lan2 | lan3 | | cache | cache | cache /x /y | /x /z | /y /z Squid | Squid | Squid ------ | ------ | ------ Browser| Browser|Browser Browser| Browser|Browser Browser| Browser|Browser Browser| Browser|Browser
In many environments the file system directory structure and naming conventions attempt to allow one to use a file manager to navigate the life cycle of a document. This overloading of functions makes it difficult for users to handle the complexity.
A file browser is a tool that lets the user navigate among files located in a directory structure to find a specific file. Whereas, when given a specific file, a life cycle navigator is a tool that lets the user navigate its life cycle from source to published copy and across versions.
Does a Life Cycle Navigator exit?
I see a user pointing at an object:
The LCN displays a tree for a specific document within a file manger, for example:
Or from a command line:
$ lcn x.pdf --open_source_document | my_favorite_editor
$ lcn x.pdf --show_published_version_info
$ lcn x.pdf --show_previous_publish_versions_info
See also, Life Cycle Navigator.
Where is a user guide for Alfresco like exits for Nuxeo: Nuxeo Document Management: the User Guide
What I did and what it did:
> getfacl x.txt
# file: x.txt
# owner: cwhii
# group: cwhii
user::rw-
group::r--
other::r--
> groups
cwhii adm dialout cdrom plugdev lpadmin admin sambashare
> setfacl --modify=g:adm:rw x.txt
setfacl: x.txt: Operation not supported
> uname -a
Linux road 2.6.31-19-generic #56-Ubuntu SMP Thu Jan 28 01:26:53 UTC 2010 i686 GNU/Linux
What I expected was an additional access control entry on x.txt without an error message.
I installed apache then I am able to access the default page from the command line:
$ wget http://127.0.1.1
Using webmin in web browser:
https://localhost:10000/
Servers>Apache WebServer>Global configuration>Configure Apache Modules>
Enable the dav modules:
Configure Apache Modules
Module Current state
dav Enable
dav_fs Enable
dav_lock Enable
<Enable Selected Modules>
Restarted apache at command line:
$ sudo /etc/init.d/apache2 restart
Invoke command line dav client:
$ cadaver http://127.0.1.1
Could not access / (not WebDAV-enabled?):
405 Method Not Allowed
Connection to `127.0.1.1' closed.
dav:!>
What is missing?
A web page has content, navigation and other non-content items such as menus and headings. How does one add a print function to all pages on a Drupal web site so that the user can print a page easily without all of the clutter?