Search Results

Search: Posts Made By: jostber
Forum: Red Hat 07-21-2011
2,496
Posted By jostber
On Suse as root: zypper in nagios...
On Suse as root:

zypper in nagios nagios-plugins nagios-www
2,107
Posted By jostber
My script suggestion: #! /bin/bash #...
My script suggestion:

#! /bin/bash
# clean.sh

for file in *.xls; do
filename=${file%.*}
file_clean=`echo $filename | tr -d "[:digit:]_" `
final="$file_clean.xls"
mv "$file"...
1,565
Posted By jostber
Try: #!/bin/sh ## newfile.sh /bin/cat...
Try:

#!/bin/sh
## newfile.sh

/bin/cat /path/to/ftp_folder/* > /path/to/newfile_directory/newfile.txt
Forum: Red Hat 07-18-2011
3,405
Posted By jostber
Run 'top' to check what processes that hugs your...
Run 'top' to check what processes that hugs your memory or CPU.
1,565
Posted By jostber
Put this in a script: #!/bin/sh ##...
Put this in a script:

#!/bin/sh
## newfile.sh

/bin/cat /path/to/ftp_folder/* > /path/to/newfile_directory/newfile_`/bin/date +%Y-%m-%d_%H:%M`.txt

in crontab:

00 * * * *...
1,659
Posted By jostber
Try this: sed -e '/File Reader/!d' -e...
Try this:

sed -e '/File Reader/!d' -e 's/.*#\(.*\))"/\1/g' fileread.txt
Forum: Programming 07-18-2011
3,225
Posted By jostber
sed is the tool for this: sed -e...
sed is the tool for this:

sed -e 's/<name>\(.*\)<\/name>/\1/g' -e 's/<description>\(.*\)<\/description>/\1/g' file.xml > newfile.txt
Forum: UNIX and Linux Applications 07-18-2011
2,894
Posted By jostber
Starting Firefox in Safe Mode is also a good way...
Starting Firefox in Safe Mode is also a good way to check if there is any add-on that cause the crash problem.
8,257
Posted By jostber
Start with the awk oneliners site: ...
Start with the awk oneliners site:

http://www.pement.org/awk/awk1line.txt

Get the original Awk book by the program authors:

The AWK Programming Language...
6,330
Posted By jostber
What does lines like these refer to? S5013 ...
What does lines like these refer to?

S5013 2194 175
S5009 2194 175
6,330
Posted By jostber
Can you give an example from your data file?
Can you give an example from your data file?
Forum: Linux 07-17-2011
1,908
Posted By jostber
You can install wicd and use this to connect to...
You can install wicd and use this to connect to the network. Check if that works for you.

If not give us the output of these commands:

ifconfig -a
netstat -rn
ping -c2 <ip adress of your...
Forum: Programming 07-17-2011
1,537
Posted By jostber
Check security settings and see if your server...
Check security settings and see if your server allows to receive messages from clients?
6,330
Posted By jostber
What in your result do you want output...
What in your result do you want output differently?
Forum: UNIX and Linux Applications 07-17-2011
2,894
Posted By jostber
Can you reinstall Firefox and see if that works? ...
Can you reinstall Firefox and see if that works?

If not check this page for troubleshooting:

Firefox crashes when you open it | Troubleshooting | Firefox Help...
Forum: HP-UX 07-17-2011
4,543
Posted By jostber
Try this: top -n1 -b -H | egrep -A1 PID |...
Try this:

top -n1 -b -H | egrep -A1 PID | tail -1 | awk '{print $1}'
2,454
Posted By jostber
If you need a more complete overview of latency...
If you need a more complete overview of latency and network statistics, you can use Smokeping:

Download Smokeping Here (http://oss.oetiker.ch/smokeping/pub/)
5,358
Posted By jostber
Try to put this code in a variable instead and...
Try to put this code in a variable instead and let the for loop parse that:

USER=`cat /home/oracle/sidlist|awk -F, '{print $1}`


and then for ORACLE_SID in $USER

and exchange $user1 with...
2,241
Posted By jostber
Ubuntu Studio is built on natty 11.04 so I bet...
Ubuntu Studio is built on natty 11.04 so I bet that is what you got, i.e. the multimedia version of Ubuntu:

Ubuntu Studio - Wikipedia, the free encyclopedia...
Forum: Ubuntu 07-16-2011
6,453
Posted By jostber
Try this: 11.04 - How can I edit/create new...
Try this:

11.04 - How can I edit/create new launcher items in Unity by hand? - Ask Ubuntu - Stack Exchange...
2,126
Posted By jostber
Should the separator be space instead in your awk...
Should the separator be space instead in your awk code? awk -F" "
Forum: Ubuntu 07-16-2011
6,453
Posted By jostber
Check this: 11.04 - Can I edit which icons...
Check this:

11.04 - Can I edit which icons appear in the Unity dash? - Ask Ubuntu - Stack Exchange (http://askubuntu.com/questions/34182/can-i-edit-which-icons-appear-in-the-unity-dash)
5,358
Posted By jostber
You can extract the first field with awk: ...
You can extract the first field with awk:

awk -F, '{print $1}' sid.txt
db1
db2
db3
2,454
Posted By jostber
A bit on the side this answer, but you could try...
A bit on the side this answer, but you could try the netrw plugin to mitigate this:

Vim documentation: pi_netrw (http://vimdoc.sourceforge.net/htmldoc/pi_netrw.html)
2,241
Posted By jostber
You can try this command: lsb_release -a
You can try this command: lsb_release -a
Showing results 1 to 25 of 83

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