Search Results

Search: Posts Made By: Quintab
Forum: Programming 01-12-2012
5,188
Posted By Quintab
Did you mean to use GDK_KEY_q instead of GDK_q ? ...
Did you mean to use GDK_KEY_q instead of GDK_q ?

gtk_widget_add_accelerator(quit, "activate", accel_group, GDK_q, GDK_CONTROL_MASK, GTK_ACCEL_VISIBLE);
Forum: Ubuntu 01-07-2011
1,413
Posted By Quintab
you might also try to re-install the gnome...
you might also try to re-install the gnome desktop:

sudo apt-get update && sudo apt-get install ubuntu-desktop
Forum: Solaris 04-09-2009
2,872
Posted By Quintab
Grub lists the various boot choices and starts...
Grub lists the various boot choices and starts numbering as 0, 1, 2, ...

So '0' is the FIRST boot option in the list and is probably Windows. Is the second option Solaris? if so change the...
1,752
Posted By Quintab
lc = 41 i think i = 1 first since this line is...
lc = 41
i think i = 1 first since this line is included in a for loop
sprintf(like,"%s%i","0",lc);

the first line, the variable named 'lc' is assigned the number 41
The sprint() function prints...
3,394
Posted By Quintab
You can try to make an editor start-up file,...
You can try to make an editor start-up file, .exrc and put the command to enter number lines in it!
On the other hand, the 'r' in rvi means that this is a 'restrictive' vi and you may not be able...
1,333
Posted By Quintab
From within a.txt, move the cursor to the end of...
From within a.txt, move the cursor to the end of the file, enter "!!cat b.txt" (without the qoutes) and it should append the file b.txt to your file. You can then save as a.txt or another name.
Forum: Linux 02-12-2008
10
9,857
Posted By Quintab
My guess is that it appears your program is...
My guess is that it appears your program is trying to call perl from "C:\Program Files\perl..." but there is a space in the path ... the call needs to be enclosed in quotes.
Forum: Solaris 11-20-2007
12,037
Posted By Quintab
Are you sure that the 5 images are INDIVIDUAL CD...
Are you sure that the 5 images are INDIVIDUAL CD iso images or should they be combined into a SINGLE DVD iso disk?

see: Solaris Operating System - Download & Burning Instructions...
Forum: Linux 09-09-2007
30,778
Posted By Quintab
You can also try: uname -m, but this may only...
You can also try: uname -m, but this may only tell you your machine's architecture!
2,759
Posted By Quintab
Try the script on some dummy data first to make...
Try the script on some dummy data first to make sure it works the way you expect! (been there, done that)
3,785
Posted By Quintab
If you want to run a script every hour (| day |...
If you want to run a script every hour (| day | year | etc.) cron is the way to go. If you want to run a script, lets say at 12:00, then you can use the at command. $> at 1200 command
65,581
Posted By Quintab
Try: po_number=`cat text_file | cut -d"|"...
Try:

po_number=`cat text_file | cut -d"|" -f16` ...
65,581
Posted By Quintab
If you are using vi, the [CTRL][V] tells the...
If you are using vi, the [CTRL][V] tells the computer NOT to execute the next command ([CTRL][M] - which is a new line) but to write it or in this case to replace it. If you are using vim in...
Forum: Open Source 08-30-2007
339,811
Posted By Quintab
Anyone remember teco? :D I currently use vi...
Anyone remember teco? :D I currently use vi (gvim/vim) and UEStudio (UltraEdit).
3,658
Posted By Quintab
Maybe I don't understand your question, but when...
Maybe I don't understand your question, but when you login to Solaris as root, are you in the / directory?
When you login as root in RH linux are you in /root or / or archives/?
Forum: SuSE 01-16-2006
156,231
Posted By Quintab
Sun Ultra 20 - Scientific Linux processor ...
Sun Ultra 20 - Scientific Linux

processor : 0
vendor_id : AuthenticAMD
cpu family : 15
model : 39
model name : AMD Opteron(tm) Processor 148
stepping :...
71,300
Posted By Quintab
You can also use the 'cut' command to remove...
You can also use the 'cut' command to remove columns.

cat filename | cut -f1,2,3,4,5,6,8,9,10,11,12,13,14
Forum: SuSE 12-14-2005
156,231
Posted By Quintab
Dell D600 Laptop
processor : 0
vendor_id : GenuineIntel
cpu family : 6
model : 9
model name : Intel(R) Pentium(R) M processor 1400MHz
stepping : 5
cpu MHz : 1398.846
cache size : 1024 KB
fdiv_bug : no...
3,067
Posted By Quintab
You can also assign the current directory to an...
You can also assign the current directory to an environment variable and use it as a shorthand to move around...

Use the 'accent grave' marks (usually on top row of keyboard, next to 1) to assign...
3,240
Posted By Quintab
You might also post a "mount" command to see what...
You might also post a "mount" command to see what is mounted on your system.
19,430
Posted By Quintab
You should also check out:...
You should also check out: http://www.research.att.com/sw/tools/uwin/
19,430
Posted By Quintab
Another option is to down load an ISO image of...
Another option is to down load an ISO image of KNOPPIX linux and burn it to a CD. It will run entirely from the CD and memory. http://www.knopper.net/knoppix/
Forum: Linux 01-05-2005
4,935
Posted By Quintab
*nix will try to translate the "/" as a...
*nix will try to translate the "/" as a directory. You can try to use the 'tr'anslate filter to replace the "/" with, for example "_" (underscore).

tr "/" "_"
2,176
Posted By Quintab
Please see the following link: ...
Please see the following link:
http://www.linuxdevcenter.com/pub/a/linux/2000/05/05/LivingLinux.html

It appears that it was the 'Writer's WorkBench' I was thinking of. The GNU version does not...
5,645
Posted By Quintab
Use sed - a stream editor!
Use sed - a stream editor!
Showing results 1 to 25 of 28

 
All times are GMT -4. The time now is 07:13 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy