04-28-2009
thanks tyler_durden & cfajohnson,
Can you also put in the comments tor this what does what?
Thanks
10 More Discussions You Might Find Interesting
1. Shell Programming and Scripting
I have a security system that FTPs the camera files to my machine, however I want to sort the pictures (taken every 30s) into directories by hour.
Every picture uses the following file format.
yymmddhhmmsstt.jpg (where tt is the milliseconds)
I am thinking the for loop is best
for file... (11 Replies)
Discussion started by: Kiint
11 Replies
2. UNIX for Dummies Questions & Answers
Hi all,
I need your help in creating a script.
At the moment, we run a daily procedure incorporating the following commands, which we would like within a script using the bash shell.
cd /var/adm/Syslog
tail -1 /var/adm/messages
grep "`date '+%b %e'`" /var/adm/messages > syslog.`date... (4 Replies)
Discussion started by: wthomas
4 Replies
3. Shell Programming and Scripting
0
Hi,
I am looking for a way of creating multiple directories using the mkdir -p command in a shell script.
I'm working with an Ubuntu machine and try to do something like that:
#!/bin/sh
... (3 Replies)
Discussion started by: frymor
3 Replies
4. Programming
Hi.
I have two text files(tables) which include some information and I want to make some query codes using them.
First of all, I want to create bash script that read this two tables, create/open database and insert data from files into database.
#!/bin/bash
while read line; do
... (1 Reply)
Discussion started by: rlaxodus
1 Replies
5. Shell Programming and Scripting
Hi, I am a new on this forum but i like :) I need a script in bash which will be crating a new user with folder for websites. For example: I will run this program and he creating a new user(with my name) and folder whcich name like user and if i will localho/~user in browser, she show me files from... (1 Reply)
Discussion started by: puclavv
1 Replies
6. Shell Programming and Scripting
Hello Everyone,
I am currently trying to write a Bash Script to call a PCAP file. The command I will use in the script will be the following:
tshark -r test.pcap -T fields -e frame.number -e frame.time -e eth.src -e eth.dst -e ip.src -e ip.dst -r ip.proto -E header=y -E separator=, quote=d -E... (4 Replies)
Discussion started by: MrTuxor
4 Replies
7. Shell Programming and Scripting
how can i move "dataName".sql.gz into a folder called 'database' and then move "$fileName".tar.gz * .htaccess into a folder called 'www' with the entire gzipped file being "$fileName".tar.gz? Is this doable or overly complex.
so
mydemo--2015-03-23-1500.tar.gz
> database
-... (5 Replies)
Discussion started by: wyclef
5 Replies
8. Shell Programming and Scripting
I've got this script to loop through all folders and move files that are more than 2 years old. I'm using the install command because it creates the necessary directories on the destination path and then I remove the source. I'd like to change the script to use the mv command since it is much... (4 Replies)
Discussion started by: consultant
4 Replies
9. Shell Programming and Scripting
I wrote a code to find codons in a DNA string. The only problem I have is how do I make the code only work for a file with DNA. This means the file only has the characters a,c,g,t and no white space characters. (3 Replies)
Discussion started by: germany1517
3 Replies
10. Shell Programming and Scripting
Hey, im fairly new to unix and Im trying to make this unix project that would display a menu and do the following.
MENU
===========================
(p, P) Print users info
(a, A) Add new user
(s, S) Search user
(d, D) Delete user
(x,X) Exit
Enter your choice:
Trying to... (3 Replies)
Discussion started by: ultimaxtrd
3 Replies
LEARN ABOUT DEBIAN
tor-gencert
TOR-GENCERT(1) Tor Manual TOR-GENCERT(1)
NAME
tor-gencert - Generate certs and keys for Tor directory authorities
SYNOPSIS
tor-gencert [-h|--help] [-v] [-r|--reuse] [--create-identity-key] [-i id_file] [-c cert_file] [-m num] [-a address:port]
DESCRIPTION
tor-gencert generates certificates and private keys for use by Tor directory authorities running the v3 Tor directory protocol, as used by
Tor 0.2.0 and later. If you are not running a directory authority, you don't need to use tor-gencert.
Every directory authority has a long term authority identity key (which is distinct from the identity key it uses as a Tor server); this
key should be kept offline in a secure location. It is used to certify shorter-lived signing keys, which are kept online and used by the
directory authority to sign votes and consensus documents.
After you use this program to generate a signing key and a certificate, copy those files to the keys subdirectory of your Tor process, and
send Tor a SIGHUP signal. DO NOT COPY THE IDENTITY KEY.
OPTIONS
-v
Display verbose output.
-h or --help
Display help text and exit.
-r or --reuse
Generate a new certificate, but not a new signing key. This can be used to change the address or lifetime associated with a given key.
--create-identity-key
Generate a new identity key. You should only use this option the first time you run tor-gencert; in the future, you should use the
identity key that's already there.
-i FILENAME
Read the identity key from the specified file. If the file is not present and --create-identity-key is provided, create the identity
key in the specified file. Default: "./authority_identity_key"
-s FILENAME
Write the signing key to the specified file. Default: "./authority_signing_key"
-c FILENAME
Write the certificate to the specified file. Default: "./authority_certificate"
-m NUM
Number of months that the certificate should be valid. Default: 12.
--passphrase-fd FILEDES
Filedescriptor to read the file descriptor from. Ends at the first NUL or newline. Default: read from the terminal.
-a address:port
If provided, advertise the address:port combination as this authority's preferred directory port in its certificate. If the address is
a hostname, the hostname is resolved to an IP before it's published.
BUGS
This probably doesn't run on Windows. That's not a big issue, since we don't really want authorities to be running on Windows anyway.
SEE ALSO
tor(1)
See also the "dir-spec.txt" file, distributed with Tor.
AUTHORS
Roger Dingledine <arma@mit.edu>, Nick Mathewson <nickm@alum.mit.edu>.
AUTHOR
Nick Mathewson
Author.
Tor 09/26/2014 TOR-GENCERT(1)