Sponsored Content
Full Discussion: Which OS you use for Desktop
The Lounge What is on Your Mind? Which OS you use for Desktop Post 302418832 by DukeNuke2 on Wednesday 5th of May 2010 12:56:24 PM
Old 05-05-2010
my work laptop: solaris 10 update 6
private laptop I: mac os x 10.6.3
private laptop II: ubuntu 10.04
 

9 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

customizing desktop

I need help editing my openwin file. I've got it all set up so the options I normally use (xman, cmdtools, xeyes, printtool) automatically come up when I log on, but it won't read my -geometry entries. I got them by right-clicking on the desktop, but apparently they need to be entered a certain... (0 Replies)
Discussion started by: sdienlin
0 Replies

2. Solaris

i cant get to my desktop

i just tryed to install solaris 10.. it installed fine.. but when i restarted it and tried to use it.. i get a message that says: The X server cannot be started on display :0... what do i do? :confused: (5 Replies)
Discussion started by: hiimcody1
5 Replies

3. UNIX for Dummies Questions & Answers

Cant get into desktop

I am a newb linux user. And i am running suse 9.3 pro. When i first installed it a couple of days ago, it booted into the desktop fine the first four or five times. And not when i turn on my computer and boot linux and loads the devices, then it prompts me... UserName: Password: (which... (1 Reply)
Discussion started by: derekmpage
1 Replies

4. UNIX for Dummies Questions & Answers

desktop cube

hey. i was wondering if some one could tell me how to get install this on my open suse linux. http://en.opensuse.org/Xgl it looks pretty handy, but im new to linux and im unsure how to proceed. thanks (0 Replies)
Discussion started by: bebop1111116
0 Replies

5. UNIX for Advanced & Expert Users

remote desktop

i want to access my group users desktop. can i did that by using xwd and xwud? else what can i do for that? (0 Replies)
Discussion started by: lakshmananindia
0 Replies

6. Solaris

Desktop Resolution

Hi friends, i had small problem in my home pc i install solaris 10 but GUI is very big cannot view any thing, but i can open terminal where with very difficulty is there any command to re size my resolution some thing like 1024. if not i want to log in default console other than GUI only terminal... (5 Replies)
Discussion started by: kurva
5 Replies

7. UNIX for Dummies Questions & Answers

framebuffer desktop

How to set up a framebuffer desktop (environment) / no X desktop (environment)? In my case: Debian etch, allready with framebuffer but I mean that I have in framebuffer all I use in X - also read pdf (without hanging up the whole system..) and so on. (3 Replies)
Discussion started by: Action
3 Replies

8. UNIX Desktop Questions & Answers

Which is best OS for Desktop

We are going to use Linux Desktop systems. Which one will be the best option ? I prefer CentOS , but in CentOS which one ? I heard fedora will take more Ram space..!! is it ? P.S 1. Users are developers , with eclipse , java , tomcat webserver etc. 2. System Configuration ~: 2GB ,... (8 Replies)
Discussion started by: linuxadmin
8 Replies

9. Linux

Linux Desktop OS

Right, I know this topic has more or less been done to death, however, I'm bringing it up again. I'm planning on moving to Linux as a full time desktop OS for my home system. I don't want to run a security distro, or anything that runs as root and just use my Windows OS in a VM when I need to use... (11 Replies)
Discussion started by: 3therk1ll
11 Replies
GVPE(8) 						   GNU Virtual Private Ethernet 						   GVPE(8)

NAME
gvpe - GNU Virtual Private Ethernet Daemon SYNOPSIS
gvpe [-cDlL] [--config=DIR] [--no-detach] [-l=LEVEL]] [--kill[=SIGNAL]] [--mlock] [--help] [--version] NODENAME [option...] DESCRIPTION
See the gvpe(5) man page for an introduction to the gvpe suite. This is the manual page for gvpe, the virtual private ethernet daemon. When started, gvpe will read it's configuration file to determine the network topology, and other configuration information, assuming the role of node NODENAME It will then create/connect to the tun/tap device and set up a socket for incoming connections. Then a if-up script will be executed to further configure the virtual network device. If that succeeds, it will detach from the controlling terminal and continue in the background, accepting and setting up connections to other gvpe daemons that are part of the same virtual private ethernet. The optional arguments after the node name have to be of the form: [I<nodename>.]var=value If the argument has a prefix of nodename. (i.e. laptop.enable-dns=yes) then it will be parsed after all the config directives for that node, if not, it is parsed before the first node directive in the config file, and can be used to set global options or default variables. For example, to start gvpe in the foreground, with log-level info on the node laptop, with TCP enabled and HTTP-Proxy host and Port set, use this: gvpe -D -l info laptop http-proxy-host=10.0.0.18 http-proxy-port=3128 laptop.enable-tcp=yes OPTIONS
-c, --config=DIR Read configuration options from DIR -d, --l=LEVEL Set logging level to LEVEL (one of: noise, trace, debug, info, notice, warn, error, critical). --help Display short list of options. -D, --no-detach Don't fork and detach but stay in foreground and log messages to stderr in addition to syslog. -L, --mlock Lock gvpe into main memory. This will prevent sensitive data like shared private keys to be written to the system swap files/partitions. --version Output version information and exit. SIGNALS
HUP Closes/resets all connections, resets the retry time and will start connecting again (it will NOT re-read the config file). This is useful e.g. in a /etc/ppp/if-up script. TERM Closes/resets all connections and exits. USR1 Dump current network status into the syslog (at loglevel notice, so make sure your loglevel allows this). FILES
/etc/gvpe/gvpe.conf The configuration file for gvpe. /etc/gvpe/if-up Script which is executed as soon as the virtual network device has been allocated. Purpose is to further configure that device. /etc/gvpe/node-up Script which is executed whenever a node connects to this node. This can be used for example to run nsupdate. /etc/gvpe/node-down Script which is executed whenever a connection to another node is lost. for example to run nsupdate. /etc/gvpe/pubkey/* The directory containing the public keys for every node, usually autogenerated by executing gvpectrl --generate-keys. /var/run/gvpe.pid The PID of the currently running gvpe is stored in this file. BUGS
The cryptography in gvpe has not been thoroughly checked by many people yet. Use it at your own risk! If you find any bugs, report them to gvpe@schmorp.de. SEE ALSO
gvpe(5) for an introduction, gvpe.conf(5), gvpectrl(8). The GVPE mailing list, at <http://lists.schmorp.de/> or gvpe@lists.schmorp.de. GVPE comes with ABSOLUTELY NO WARRANTY. This is free software, and you are welcome to redistribute it under certain conditions; see the file COPYING for details. AUTHOR
Marc Lehmann <gvpe@schmorp.de>. And thanks to many others for their contributions to gvpe, especially the tincd authors, who inspired me to write this program (after scavenging their source code ;). 2.2 2008-09-01 GVPE(8)
All times are GMT -4. The time now is 08:06 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy