9 More Discussions You Might Find Interesting
1. Shell Programming and Scripting
Is there a way to have a user be prompted for a password to open a file? I am trying to protect a bash script from being changed. Thank you :). (3 Replies)
Discussion started by: cmccabe
3 Replies
2. UNIX for Dummies Questions & Answers
Hi
We send *.csv with sensitive data to our customers. Our customers open those files with Excel.
A new requirement is that we password protect those CSV files.
I thought to pack them with ZIP and assign a password to the archive.
But Solaris 10 can't encrypt ZIP files.
$ zip -P... (12 Replies)
Discussion started by: slashdotweenie
12 Replies
3. UNIX for Advanced & Expert Users
Hi,
I am using Red Hat OS 5.0, is there any way that i can password protect directories. I know i can change permission so that no other user can access the content, but sometimes in my office environment i need to share vnc terminal with other people from my login itself. So i want that if user... (1 Reply)
Discussion started by: sarbjit
1 Replies
4. Shell Programming and Scripting
Hi,
I'm working on Solaris 9 and i need to unzip a password protected zip, which i can do using
zip -Ppassword filename
however when i have done what i need to do with the file is to zip the file back up with a password. Zip on my system is version 2.3 and does not support this?
How can... (0 Replies)
Discussion started by: Pablo_beezo
0 Replies
5. UNIX for Dummies Questions & Answers
I'm wondering if there is a way to zip a file and password protect it non-interactively.
zip -e will prompt for a password but I don't want a prompt. This needs to be done automatically as part of a shell script.
I'm using the zip command because the will be unzipped by a Windows machine. ... (1 Reply)
Discussion started by: savage66
1 Replies
6. UNIX for Advanced & Expert Users
Is there a way to password protect a printer that is on a LAN network? Our security officer said our UNIX printers need to be password protected. Is this possible? I am running Solaris 7 and 8...
Thanks in advanced for any suggestions. (4 Replies)
Discussion started by: rtoba
4 Replies
7. Shell Programming and Scripting
Hello All,
i work with backup, The below script runs and tar the user specified dir and put it in a backup machine. can any one help me to modify this in such a was that the tar file generated can be given a users specific password so that it can have high security.
KINDLY LET ME... (2 Replies)
Discussion started by: pradeepmacha
2 Replies
8. UNIX for Dummies Questions & Answers
I have created a PHP page that I use to clean files on my machine. I would like to leave the file there but I want to password protect it so that I am the only one that can run it from the shell. Does anyone know how to do this? Thanks.
-Cam (2 Replies)
Discussion started by: perryl7
2 Replies
9. UNIX for Dummies Questions & Answers
Hi there,
I just want to know if there's anyway to protect any tar file with a password that requierd when somebody want to extract that tar.
thanks in advance
regards,
Abdulkarim (1 Reply)
Discussion started by: geoquest
1 Replies
dput.cf(5) File Formats Manual dput.cf(5)
NAME
dput.cf - Debian package upload tool configuration file
DESCRIPTION
This manpage gives a brief overview of dput's configuration file and the available options in it. dput is a tool to upload Debian packages
to the archive.
FORMAT
dput.cf consists of different groups of configuration options, one for each host where you want to be able to upload packages. Hosts are
defined using an identifier header with a short name for the host, enclosed in square brackets. Note that only if multiple such headers
are encountered in the configuration, only the group following the last header is considered. This is done to avoid confusion when overrid-
ing a global configuration file with a user-specific one. There's a special identifier, [DEFAULT], which holds default parameters for all
the hosts. The defaults can be overridden by redefining them again in each host section. The available parameters are listed below:
fqdn This is the fully qualified domain name that will be used (can be specified as host:port for HTTP, HTTPS and FTP).
login Your login on the machine named before. A single asterisk * will cause the scp and rsync uploaders to not use supply a login name
when calling to ssh, scp, and rsync.
incoming
The directory that you should upload the files to.
method The method that you want to use for uploading the files. Currently, dput accepts the following values for method:
ftp the package will be uploaded via ftp, either anonymously or using a login/password. Note that ftp is unencrypted so you
should not use password authentication with this.
http and https
the package will be uploaded via http or https using the PUT method as specified in WebDAV. The upload method will prompt for
a password if necessary.
scp the package will be uploaded using ssh's scp. This transfers files using a secure ssh tunnel, and needs an account on the
upload machine.
rsync the package will be uploaded using rsync over ssh. This is similar to scp, but can save some bandwidth if the destination
file already exists on the upload server. It also needs a login on the remote machine as it uses ssh.
local the package will be "uploaded" locally using /usr/bin/install. This transfers files to a local incoming directory, and needs
appropriate permissions set on that directory.
hash The hash algorithm that should be used in calculating the checksum of the files before uploading them. Currently, dput accepts the
following values for hash:
md5 use the md5 algorithm for calculation
sha use the sha algorithm for calculation
allow_unsigned_uploads
This defines if you are allowed to upload files without a GnuPG signature to this host or not.
allow_dcut
This defines if you are allowed to upload a dcut changes file to the queue to remove or move files.
distributions
This defines a comma-separated list of distributions that this host accepts, used to guess the host to use when none is given on the
command line.
allowed_distributions
A regular expression (of Python re module syntax) that the distribution field must match or dput will refuse the upload.
delayed
Set a numeric default parameter for delayed uploads (i.e. uploads to this queue will be delayed the specified number of days.
Defaults to the empty string, meaning no delay. This only works with upload queues that support delayed uploads.
run_lintian
This option defines if lintian should be run before the package will be uploaded or not. If the package is not lintian clean, the
upload will not happen.
run_dinstall
This options defines if dinstall -n should be run after the package has been uploaded or not. This is an easy way to test if your
package would be installed into the archive or not.
check_version
This option defines if dput should check if the user has installed the package in his system for testing it before putting it into
the archive. If the user has not installed and tested it, dput will reject the upload.
passive_ftp
This option defines if dput should use passive ftp or active ftp for uploading a package to one of the upload queues. By default,
dput uses passive ftp connections. If you need to use active ftp connections, set passive_ftp to 0.
progress_indicator
This integer option defines if dput should display a progress indicator for the upload. (Currently implemented in ftp only.)
Supported values: 0 (default) - no progress, 1 - rotating progress indicator, and 2 - kilobyte counter.
scp_compress
This option defines if the scp upload to the host will be compressed, or not. This option is only used for the 'scp' upload method,
and has been found to decrease upload time for slow links, and increase upload times for faster links.
ssh_config_options
The arguments of this config options should be ssh config file options in the style documented in ssh_config(5). They will be passed
to all automatic invocations of ssh and scp by dput. Note that you can define multiline (dput) configuration options by indenting
the second line with whitespace (i.e. similar to RFC822 header continuations).
post_upload_command
This option defines a command to be run by dput after a successful upload.
pre_upload_command
This option defines a command to be run by dput before a upload happens.
default_host_main
This defines the default host for packages that are allowed to be uploaded to the main archive. This variable is used when guessing
the host to upload to.
BUGS
Please send bug reports to the author.
FILES
/etc/dput.cf
global dput configuration file
~/.dput.cf
peruser dput configuration file
AUTHOR
Christian Kurz. Updated by Thomas Viehmann <tv@beamnet.de>.
Many other people have contributed to this code. See the Thanks file.
SEE ALSO
dput(1)
/usr/share/doc/dput
COMMENTS
The author appreciates comments and suggestions from you, if any.
April 8, 2001 dput.cf(5)