Search Results

Search: Posts Made By: msarro
Forum: Solaris 06-27-2012
4,194
Posted By hicksd8
So you can't see c1t1d0 and c1t3d0 which just...
So you can't see c1t1d0 and c1t3d0 which just happen to be the second and fourth drives in the numbering sequence. This box has built in raid 1 controller (also can do raid 0) so it looks like c1t0d0...
1,366
Posted By Shell_Life
See if this works for you: echo...
See if this works for you:
echo /usr/local/logs/serverlogdir | sed 's#.*\(/.*/\)#\1#'
Forum: UNIX and Linux Applications 01-10-2011
5,250
Posted By DGPickett
The manual says there are many optional...
The manual says there are many optional arguments, but most come with prefix words, but this looks reasonable for raid 10:

Using the Command-Line Interface...
Forum: Solaris 12-10-2010
3,281
Posted By System Shock
Just remove it from patch_order so you can finish...
Just remove it from patch_order so you can finish patching.
After that, you can check if the patch is actually installed, or attempt to install it by itself.
Forum: Solaris 12-10-2010
8,358
Posted By System Shock
Use scp.
Use scp.
Forum: Solaris 12-10-2010
8,358
Posted By Corona688
Maybe you can reverse it. Telnet into the...
Maybe you can reverse it. Telnet into the server, run commandline FTP to download the files from somewhere.
Forum: Solaris 12-10-2010
8,358
Posted By System Shock
wow... out of curiosity, which vendor is this? ...
wow... out of curiosity, which vendor is this?

Anyway, can you do nfs mounts?
Forum: Solaris 12-10-2010
8,358
Posted By Corona688
Worst case you could install SSH, get the files,...
Worst case you could install SSH, get the files, uninstall SSH, then install broadsoft...
Forum: Solaris 12-10-2010
8,358
Posted By bluescreen
SSH installs when you build the system. You...
SSH installs when you build the system. You could scp the files over like Corona688 sez then disable the ssh daemon with
# svcadm disable ssh

HTH
Forum: Solaris 12-10-2010
8,358
Posted By bluescreen
:eek: Do you have root access? If so...
:eek:

Do you have root access? If so /bin/su to root and run
# pkill -1 ftpd # <== that is pkill dash one ftpd
This will reset the ftp daemon. Then try to ftp the file over to the Solaris...
1,194
Posted By DGPickett
If you dislike date functions, just collect the...
If you dislike date functions, just collect the bits before midnight:


export zy=$(date '+%Y') zm=$(date '+%m') zd=$(date '+%d')
1,194
Posted By methyl
As long as both scripts start before midnight,...
As long as both scripts start before midnight, you only need to evaluate the date once at the start of the script.

See this illustration of storing the date in an environment variable then using...
1,194
Posted By DGPickett
Start before 8:00, 16:00, midnight, store the...
Start before 8:00, 16:00, midnight, store the date-time in a variable, from date if not provided on the command line (for testing), and use bash date-time functions on the variable, not date. Then...
23,737
Posted By bartus11
Are you sure you want to use that regex? It will...
Are you sure you want to use that regex? It will match any hostname starting with "l" and ending with "n", so if your hosts file contains hostnames like "lion" etc, it will get deleted too. Try this...
23,737
Posted By ygemici
you can try this ;) # sed...
you can try this ;)
# sed 's/localhost6*.localdomain6*//'
45,322
Posted By danmero
# cat script #!/bin/sh for i in ${@};do echo...
# cat script
#!/bin/sh
for i in ${@};do echo ${i};done

# /temp/script 1 2 3 4 5 6 7 8 9 10 11
1
2
3
4
5
6
7
8
9
10
11
45,322
Posted By denn
you probably can't get much help without posting...
you probably can't get much help without posting your script or at least relevant portions of it... nobody really wants to guess how you're trying to do everthing.

the way you're doing your...
Showing results 1 to 17 of 17

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