General :: Not Enough Hash Marks Of The -h Option Of The Rpm Command

Aug 1, 2010

In the rpm manual, Print 50 hash marks as the package archive is unpacked. Use with -v|--verbose for a nicer display. But actually, there're not enough hash marks when I'm installing a package. About 44 hash marks there...Well, I just want to know where the `50 hash marks' are.

View 4 Replies


ADVERTISEMENT

Ubuntu :: Gnumeric Spreadsheet Printing Hash Marks

Apr 10, 2010

I have created a very simple spreadsheet - using gnumeric - with small numbers and simple formulas - the numbers fit easily inside their cells - the formatting all seems in order BEFORE I try to print. When I set up the spreadsheet for printing - and "print preview" the document, I see hash marks in place of numbers in a majority of the cells. When I print the document, the hash marks are printed, in place of the numbers. When I view the document under normal circumstances, for editing - the hash marks are not present. All seems well. I cannot print the spreadsheet without the hash marks (#####) appearing!

View 1 Replies View Related

General :: If Command With -z Option?

Jan 17, 2011

Code:
if [ -x /usr/bin/id ]; then
if [ -z "$EUID" ]; then

[code]....

View 4 Replies View Related

General :: What Should Quotation Marks Be In Red

Apr 1, 2011

What should the quotation marks be in red?It returns an error:SELECT * FROM blog WHERE id="51586430" blog LIMIT 1; SQL error: unrecognized token: "" Incomplete SQL:

View 3 Replies View Related

General :: Why Cannot Z Be Last Command-Line Option Used With Tar

Nov 17, 2010

$ ls one.tar.gz
one.tar.gz
$ tar -xvfz one.tar.gz
tar: z: Cannot open: No such file or directory
tar: Error is not recoverable: exiting now
$ tar -xvzf one.tar.gz
one
$ tar -xzvf one.tar.gz
one
$ tar -zxvf one.tar.gz
one
$

View 2 Replies View Related

General :: Don't Allow To Add -sport Option In The Above Command?

Mar 10, 2011

i've an issue in a firewall command i hope u help me on.when i try to type the following firewall command:iptables -A INPUT -s xxx.xxx.xxx.xxx -dport 8000:9000 -p tcp -j ACCEPTit gives me:Bad argument `8000:9000`it complaints about the port range and i cant see in problems in that.i also tried to change the order of the options but it never worked.one other thing,why it don't allow me to add -sport option in the above command?

View 1 Replies View Related

General :: Bash Dirs Command And +N Option?

Feb 8, 2011

I'm trying to use the dirs command with the +N option. The manual says: dirs [-clpv] [+n] [-n]Without options, displays the list of currently remembered directories. The default display is on a single line with directory names separated by spaces. Direc- tories are added to the list with the pushd command; the popd command removes entries from the list. +n Displays the nth entry counting from the left of the list shown by dirs when invoked without options, starting with zero.

dirs -v shows:
0 /dir1/
1 /dir2/
2 /dir3/

However, dir +n 1, dir +N 1, dir -v +n 1, dir -v +N 1 all give:

[Code]...

View 2 Replies View Related

General :: Unzip Command: Option To Force Overwrite?

Jan 26, 2010

I am writing a shell script that unzips a ZIP file into an existing hierarchy of files, potentially overwriting some of the files. The problem is that the unzip command asks for confirmation: replace jsp/extension/add-aspect.jsp? [y]es, [n]o, [A]ll, [N]one, [r]ename: y

This is unacceptable for a script.I need an option to force unzip to overwrite the files.I did not find in the man page nor with Google.

View 1 Replies View Related

General :: When Extract The Tarball - Forgot The '-C' Option Of The Command 'tar'

Apr 23, 2010

I tried to install gfortran on my computer. When I extract the tarball, I forgot the '-C' option of the command 'tar', which should be added, according to the instruction of installation.

That is to say, I wrote in the mp directory:

Then, the tarball creates a '/usr' directory under '/tmp' directory, and it contains only a /local directory, which contains only a /gfortran directory.

The thing is, when I modify the name of this directory, for example, from /usr to /usr-modi, I found that the name of the directory /usr under the root directory is also changed from /usr to /usr-modi.

How can I delete this annoying /usr directory under /tmp, without tragically affect /usr under the root directory?

View 4 Replies View Related

General :: Double Quotation Marks Allowed In Filenames?

May 19, 2010

I tried to move a file from my desktop to another folder; moving it was not allowed, for some reason. Neither was opening it and saving a new copy in the target folder. Would that be because the filename contains double (") quotation marks? Are they not allowed? The filename is Edit of Bob's "Lady Liberty" Article.doc. [Filename not enclosed in quotation marks here, to avoid confusion.]I just changed the double quotation marks to single quotation marks; that solved everything.

View 2 Replies View Related

General :: Use '{}' To Redirect Output Of A Command Run Through Find's -exec Option?

Jan 10, 2011

I am trying to automate an svnadmin dump command for a backup script, and I want to do something like this:

find /var/svn/* ( ! -name dir -prune ) -type d -exec svnadmin dump {} > {}.svn ;

This seems to work, in that it looks through each svn repository in /var/svn, and runs svnadmin dump on it.

However, the second {} in the exec command doesn't get substituted for the name of the directory being processed. It basically just results a single file named {}.svn.

I suspect that this is because the shell interprets > to end the find command, and it tries redirecting stdout from that command to the file named {}.svn.

View 2 Replies View Related

General :: Pass Option To LILO In Order To Have Script / Command Executed At / After Boot

Aug 28, 2009

I have one distro installed, LILO as the boot loader, and i wonder if it's possible to duplicate the lilo entries with an option which executes some script or command during, or after the boot.Actually, i installed a Slackware + autolaunching virtual machine, but i have two VM, so i need to autolaunch one of them. May i choose it from the very beginning ?

View 9 Replies View Related

CentOS 5 :: Top Command Not Showing Command Option?

Mar 19, 2011

I have installed Centos in my server and when I take, top -c command its not showing the "command" option correctly. Due to the same, I'm not able to correctly track down the file which causes excessive usage. For eg:

top - 09:30:29 up 72 days, 12:46, 2 users, load average: 0.21, 0.16, 0.15
Tasks: 122 total, 1 running, 120 sleeping, 0 stopped, 1 zombie
Cpu(s): 4.8%us, 0.7%sy, 0.0%ni, 93.5%id, 1.0%wa, 0.0%hi, 0.0%si, 0.0%st

[code]....

View 3 Replies View Related

General :: Create Shadow Pasword Hash Manually?

Oct 14, 2010

How to create the password hash exactly the same as in shadow file (from the command line)?

The command
openssl passwd -crypt
returns something different.

View 6 Replies View Related

General :: Copy By Script Or Command Files With *.v Suffix By "-p" Option?

Apr 11, 2010

how can i copy by script or command files with *.v suffix by "-p" option?

Example:

kuku.ggg
kuku.dd
kuku.v
kuku.vb

only if i try to copy kuku.v by default cp -p will done.

View 7 Replies View Related

General :: Writing With "W" In Top Is Not An Option As Top Command

Sep 2, 2010

I have the "top" command and I want to override its default behavior for every user, even for future users.

Writing with "W" in top is not an option as my top command somehow overrides the custom behavior per user and always turns to default behavior.

So, what I am asking for is, are there command line switches that override default behavior of top, for example:

Code:
top -<BLABLA>

to show me the load average per core which would be equivalent to starting top first and then pushing the key "1" on the keyboard.

Remember, writing to toprc is not an option for me as top for some reason ignores its config and just goes for default behavior.

Edit: it seems to me this is a bug in the procps package. That is why I updated it to the latest version for my distro CentOS 5.5 and procps to the following [URL] HOWEVER, it doesn't work even now.

View 8 Replies View Related

General :: Edit Grub Menu From Initial Grub Screen - Possible To It's Own 'e' Option Or 'c' From Grub Command Line?

Nov 20, 2010

my Setup is Fedora 14 x64 + radeon hd 4830 i've downloaded .run package from ati site with latest driver for x64 systems. installed it, but didn't edited grub.conf becouse i didn't understood anything there (probably didn't spent enough time to get things understand) Now i've lost possibility to enter my Fedora system. during boot it lost it's modern blue boot screen (with filling drop), it was replaced by standard old boot screen with triple-color stripe. after this boot screen monitor start blinking going on and off. and on last step i'm getting "Fedora 14 boot bla bla bla something" on screen. nothing works except Ctrl+Alt+Delete. system reboots showing successful daemons shutting sequence. How can i edit grub menu from initial grub screen is it possible to it's own 'e' option or 'c' from grub command line?

View 4 Replies View Related

General :: Error Cannot Find Disk At [hash-code - Looks Like 0ace5f When Booting OpenSUSE 11.2 GNOME-LIVE (64bit)?

Jan 29, 2010

I am in the process of re-DL-ing the ISO as the checksums didn't match.

Mind you, that was with a shell extension in Win-Lose. Who knows.

Anyway:

I have the ISO (that I had previously) on a USB courtesy of UNetBootIn. All appears well until, quite quickly, I receive an error after the loading process which goes something like:

Code:
Error: cannot find disk at [hash-code - looks like 0ace5f etc etc, is about 12 char's in length.]Something very similar (but not same error I think) happened when I tried to do the same with my OpenSolaris or Fedora install. I.e., gets as far as the very beginning of the loader and then: bork.

At least one of them said "will reboot in 120 secs". Saves me the trouble!

View 2 Replies View Related

Programming :: Use Quotation Marks In C++ Stream?

Jul 27, 2011

I'm writing some code to speed up some code writing, basically it produces some code I use in every project. I produce the outputs with fstream filestr;, open a file and write to some data to it. However some code has quote marks that I need to output, however I can't use quote marks.
EG: filestr<<"#include "Header.h""<<endl;I get round this with some awful filestr.put ('"');However I'm sure there must be a straight forward way to do this. Can anyone advise?

View 3 Replies View Related

Ubuntu :: Login Option To Command Line?

May 14, 2010

Does anyone know how? I want to add the command line option to the login to. So, I have Gnome, KDE and command line.

View 9 Replies View Related

Hardware :: Can't Input Double Quotation Marks

Sep 17, 2009

my new system is redhat enterprise 5, i have changed 2 keyboard and used 2 input(fcitx and scim), the same question is that the system can not receive quotation marks,i can not use quotaion key input double quotation marks or single, badly.

View 2 Replies View Related

Programming :: Read Only Quotation Marks Text

Apr 14, 2011

Columns are separated by SPACE. Column 5th is in quotation marks. How can I ask AWK to read everything between quotation marks ?

View 4 Replies View Related

Ubuntu :: Command Line Option To Show Rhythmbox?

Aug 26, 2010

Does anyone know the command line option to show rhythmbox?

Basically I just want to make a shortcut to show the rhythmbox screen as opposed to clicking the icon and selecting show rhythmbox

rhythmbox-client --(option) --no-start

View 9 Replies View Related

Ubuntu :: Command To Make Download Option In Script?

Feb 11, 2011

I was making a download option in a script but I cant seem to get the command right
Code:
tar cjf /tmp/file.tar.bz2 --exclude="config" ./
My archive ends up with a file-1.tar in it.

View 3 Replies View Related

Software :: LPR Command -# X (number Of Copies) Option Not Working

Jun 20, 2011

I am not able to print multiple files when using the -#X (number of copies) option using lpr command.

The below is the command that i use :

lpr -#2 -o landscape -o deliver-to=Location -Pmyprinter file-name.pdf

Is there any configuration files that i need to modify for this option to be available ?

The printer that i have is using Postscript driver.

View 6 Replies View Related

Programming :: Input String Into Array Without Using Quotation Marks

Oct 11, 2010

I want to put a string, such as the one found in the image, into an array that will later be chopped into individual words and put into another array of individual words found in the initial string. (or, perhaps, I would be able to do that initially, but for now, that is the goal)My question is, how can I do that without using quotation marks?

View 5 Replies View Related

General :: Use Exclude Option In"rm" Command To Exclude Some Files/folders?

Feb 3, 2010

i have created on folder in my server to upload some regular states. I want that user can modify or upload already stored files. but, should not upload any unwanted files orfolders.for that i want to use "rm" command as auto scheduler (putting this in cron tab.so that all files will be removed except some required files / folders for which this upload facility is activated. users are using secure-shell for uploading data.

View 1 Replies View Related

General :: Add "flush" (or "sync") Option To Mount Command?

Jul 31, 2010

How do I add "flush" (or "sync") option to mount command? # mount --flush [what] [where] ?

View 1 Replies View Related

Ubuntu :: Get Boot To Command Prompt Option At Login Screen?

May 14, 2010

I know there is a way to do this... What do I need to install to give me this option from the login screen?

View 2 Replies View Related

Hardware :: Run Memtest86 - Error: Unrecognized Command Line Option

Jun 17, 2011

I am having memory problems on my old Compaq PC, and am trying to run memtest86+-4.20 to check it. I downloaded the source file, and tried a compile, but had the following problem:

[code]...

how to get around this issue?

View 3 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved