Search Results

Search: Posts Made By: jld
Forum: Ubuntu 09-04-2011
2,275
Posted By jld
Ubunutu 8.04.4 RAID 1 mirror replace disk
Hi,

I have an Ubuntu system which I have an faulted mirror.
I trying to replace the disk, but I'm stuck on that it boots and only showing GRUB

GRUB

## ## End Default Options ##

title ...
1
2,866
Posted By jld
expect
Hi,

I'm creating an scripy that uploads several files to an webdav server. I'm using cadaver to acomplish this.

I use expect to try and catch login, but it does'nt work.
When I execute is from...
Forum: Solaris 11-06-2010
3,615
Posted By jld
You may also want to see the following perhapse...
You may also want to see the following perhapse usefull.

Oracle Solaris 10 IPv6 Implementation (System Administration Guide: IP Services) - Sun Microsystems...
Forum: Solaris 11-06-2010
2,735
Posted By jld
Solved it by myself, but I should have tought...
Solved it by myself, but I should have tought about it earlier.
What I forgot was to NAT the adresses from the 192.168.1.0/24 to the 192.168.2.0/24 adresses.

So what I have done.
- Enabled the...
Forum: Solaris 10-21-2010
2,735
Posted By jld
bash-3.00# ndd -get /dev/ip ip_forwarding 1 ...
bash-3.00# ndd -get /dev/ip ip_forwarding
1

bash-3.00# ndd -get /dev/ip e1000g0:ip_forwarding
1
bash-3.00# ndd -get /dev/ip e1000g1:ip_forwarding
1
Forum: Solaris 10-20-2010
2,735
Posted By jld
Solaris networking
Hi,

I have installed two solaris boxes in an VM.
First box is 10-1
Has two interfaces and in connected briged to the lan an d connected internal to an virtual lan.

Second box is 10-2
Has...
Forum: Solaris 09-10-2010
1,789
Posted By jld
I can only think of one application, script it!...
I can only think of one application, script it! Make an start/stop script.
Check if the database are up and running then start the services.
Forum: Solaris 09-10-2010
2,896
Posted By jld
I believe it is possible with hardware RAID. as...
I believe it is possible with hardware RAID. as long as you got enough space for the newbe than it will be no problem. Also you can rollback easily iff something goes wrong.

We use LiveUpgrade to...
Forum: Solaris 09-10-2010
19,281
Posted By jld
You need the correct gateway to connect to the...
You need the correct gateway to connect to the different vlan.
Most times this is a router or a system with router functions.
Forum: Solaris 08-04-2010
2,744
Posted By jld
The 7000 sim and the ftp host are different...
The 7000 sim and the ftp host are different machines.
Forum: Solaris 08-04-2010
2,744
Posted By jld
Using the telnet version. But when I enter the...
Using the telnet version.
But when I enter the credentials in the 7000 sim then I get the following.

stor:maintenance system updates download (uncommitted)> commit
error: download failed:...
Forum: Solaris 08-04-2010
2,744
Posted By jld
solaris ftp
Hi,

I trying to use ftp on solaris to get an update for my sun storage 7000 simulator, but i'm unable to get te file.
For every command I get the following.

bash-3.00# telnet localhost 21...
Forum: Solaris 08-03-2010
9,278
Posted By jld
Solved it my self. What i've done is. ...
Solved it my self.

What i've done is.

I thought that the problem resided in the fact that the primary interface was het interface on which dhcp was running. That explains when I pinged ik got...
Forum: Solaris 08-01-2010
9,278
Posted By jld
NIS slave unable to copy the data bases
Hi,

I'm learning for my Solaris 10 sys-admin part 2. I'm now trying to get nis working because for the exercise. I run in to a problem.

Setup:
Three Systems
solaris101 (client)
Nothing...
Forum: Solaris 06-14-2010
9,102
Posted By jld
Because it's added later :p
Because it's added later :p
Forum: Solaris 06-14-2010
9,102
Posted By jld
Yep that did the trick. Did'nt know that there...
Yep that did the trick. Did'nt know that there must be an entry there to start. Also did'nt find it in the man pages that there must be an entry.

Thanks!
Forum: Solaris 06-14-2010
2,735
Posted By jld
Explain your setup. how did you make the backup...
Explain your setup. how did you make the backup via SCSI? if the server does'nt have a SCSI port?

What I assume is that you used a tape drive connected to an other system.
Or you can connect the...
Forum: Solaris 06-14-2010
8,267
Posted By jld
Yes it is like setting up with partitions. But...
Yes it is like setting up with partitions.
But then zfs uses pooled storage

So if you wan't to use zfs /var on a different filesystem you could use the following.


# zfs create...
Forum: Solaris 06-14-2010
9,102
Posted By jld
Starting nfs/server
Hi,

I do not get nfs/server started.


bash-3.00# svcadm enable nfs/server

bash-3.00# svcs -a |grep nfs
disabled 21:44:36 svc:/network/nfs/cbd:default
disabled 21:44:36...
Forum: Solaris 05-14-2010
3,287
Posted By jld
Try a few thing first check your network config...
Try a few thing first check your network config to see if your vm has an ip and it is up.

ifconfig -a


Then check if you can locally ping your vm

ping 127.0.0.1
Forum: Solaris 05-14-2010
7,639
Posted By jld
Yes you can use solaris as an webserver. You...
Yes you can use solaris as an webserver. You could use it with apache standard.


svcs -a |grep apa
svcadm enable svc:/network/http:apache2

or via legacy run

/etc/init.d/apache start

...
Forum: Hardware 05-14-2010
8,518
Posted By jld
The T5120 is the T2 processor not the T2+. ...
The T5120 is the T2 processor not the T2+.

UltraSPARC T1 processor based models

The UltraSPARC T1-based Sun Fire T1000 and T2000 are branded to the SPARC Enterprise line:

* T1000 - 1...
10,118
Posted By jld
You can also try just grep. grep "pattern"...
You can also try just grep.

grep "pattern" /dir
105,009
Posted By jld
Here is it a bit more advanced. ...
Here is it a bit more advanced.


#!/bin/sh
SERVICE=service;

if ps ax | grep -v grep | grep $SERVICE > /dev/null
then
echo "$SERVICE service running, everything is fine"
else
echo...
105,009
Posted By jld
You can use the command that you use on the...
You can use the command that you use on the command line in youre script


#!/bin/sh
#
SERVICE=service

ps -ef |grep $service
Showing results 1 to 25 of 49

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