[osol-discuss] Using Active Directory as name service

2012-03-21 Thread Andrew Watkins


Hi guys,

I thought I would look into moving from running 2 naming services (LDAP 
and AD) and transferring to AD.

I see I have two options:

1) Setup the NIS unix service on Windows and use ldapclient to point 
to AD server.
This looks a good solution which I see many people have tried, but 
the only downfall is I would lose the automount maps, which I can see 
how they can be import into AD.



2) Use the Solaris 11 nss_ad Naming Service module.
This may work, but I have had no luck yet, so just wonder if any 
one has got it working yet, since Oracle Support and the internet does 
not have any information about it! I am using oracle.com doc site: 
http://docs.oracle.com/cd/E23824_01/html/821-1455/adsetup-10.html#scrolltoc


- Setup Windows 2008 Server
- After the following command krb5.conf is created and a machine is 
created in AD


- #/usr/sbin/kclient -T ms_ad
Starting client setup
---
Setting up /etc/krb5/krb5.conf.
Attempting to join 'SOLARIS' to the 'TEST1.INT' domain.
Password for administra...@test1.int:
Forest name found: test1.int
Site name not found.  Local DCs/GCs will not be discovered.

Computer account 'SOLARIS' already exists in the 'TEST1.INT' domain.
Do you wish to recreate this computer account ? [y/n]: y

Would you like to delete any sub-object found for this computer 
account ? [y/n]: y

Looking to see if the machine account contains other objects...
Creating the machine account in AD via LDAP.

Warning: unable to set smb domain, server and password information.
Warning: unable to create DNS records for client.
This could mean that 'testaw1.test1.int' is not included as a 
'nameserver' in the /etc/resolv.conf file or some other type of error.

---
Setup COMPLETE.

# cat /etc/resolv.conf
domaintest1.int
searchtest1.int
nameserver193.61.29.188

# tail /var/adm/messages
Mar 20 17:19:00 solaris ksmb[3685]: [ID 390819 user.error] SMF 
initialization problem: entity not found
Mar 20 17:19:00 solaris ksmb[3685]: [ID 537292 user.error] 
smb_setdomainprops: failed to set machine account password
Mar 20 17:19:00 solaris kdyndns[3689]: [ID 380301 user.error] 
dyndns: secure update response code: operation refused: 5
Mar 20 17:19:00 solaris kdyndns[3689]: [ID 904790 user.error] 
dyndns: both non-secure and secure updates failed on all configured name 
servers
Mar 20 17:19:00 solaris kdyndns[3689]: [ID 380301 user.error] 
dyndns: secure update response code: operation refused: 5
Mar 20 17:19:00 solaris kdyndns[3689]: [ID 904790 user.error] 
dyndns: both non-secure and secure updates failed on all configured name 
servers



As always thanks,

Andrew

--
Andrew Watkins * Birkbeck College
http://notallmicrosoft.blogspot.com/

___
opensolaris-discuss mailing list
opensolaris-discuss@opensolaris.org


[osol-discuss] SASL support in sendmail

2012-01-20 Thread Andrew Watkins


I know this is a Solaris 11 point, but I thought still good place to 
post questions just in cas ethe answer is out there.


I thought I would set-up Solaris 11 version of Sendmail with AUTH SASL, 
but when I got to the final part, I get the error:


# /usr/lib/sendmail -d0  -bt  /dev/null
Version 8.14.5+Sun
 Compiled with: DNSMAP LDAPMAP LOG MAP_REGEX MATCHGECOS MILTER MIME7TO8
MIME8TO7 NAMED_BIND NDBM NETINET NETINET6 NETUNIX
NEWDB NIS PIPELINING SCANF STARTTLS TCPWRAPPERS
USERDB USE_LDAP_INIT XDEBUG

Warning: Option: AuthMechanisms requires SASL support (-DSASL)
Warning: Option: AuthOptions requires SASL support (-DSASL)

But I thought that Solaris game with SASL? There is some old 2010 
support docs which say download Cyrus SASL and sendmail and compile it 
yourself, but I was hoping to avoid this.


Any comments?

Thanks,

Andrew
___
opensolaris-discuss mailing list
opensolaris-discuss@opensolaris.org


Re: [osol-discuss] NFS Can not remove a property

2011-12-14 Thread Andrew Watkins


Cindy,

Thanks for that information and I am sure others will find it useful as 
well.


Cheers,

Andrew

On 12/13/11 06:27 PM, Cindy Swearingen wrote:

Hi Andrew,

You can use the zfs set share to respecify property=value values or
you can use the zfs -c set to remove the property values so you would
need to specify rw=value public=false, and so on.

When using zfs -c set share, I found that peeling off one property=value
at a time worked best.

Recreating the share might be easier and rw is the default so you
don't have to specify it.

See zfs -c set share syntax below.

We're working on share improvements that will make these operations
easier.

Thanks,

Cindy

# zfs create tank/cindy
# zfs set
share=name=cindy,path=/tank/cindy,prot=nfs,rw=*,public=true,log=global
tank/cindy
# zfs set sharenfs=on cindy

# zfs set -c share=name=cindy,prot=nfs,log=global tank/cindy
name=cindy,path=/tank/cindy,prot=nfs,public=true,sec=sys,rw=*

# zfs set -c share=name=cindy,prot=nfs,sec=sys,rw=* tank/cindy
name=cindy,path=/tank/cindy,prot=nfs,public=true,sec=sys

# zfs set -c share=name=cindy,prot=nfs,public=true tank/cindy
name=cindy,path=/tank/cindy,prot=nfs,sec=sys

# zfs get share
NAME PROPERTY VALUE SOURCE
tank/cindy share name=cindy,path=/tank/cindy,prot=nfs,sec=sys local


On 12/13/11 09:47, Andrew Watkins wrote:


I know this is a Solaris 11 point, but I thought it would be still good
to post strange behavior with Solaris 11. At least if anyone else
notices it and to decide if it is a bug?


# zfs set share=name=andrew,path=/dpool/andrew,
prot=nfs,sec=sys,rw=*,public=true,log=global dpool/andrew
name=andrew,path=/dpool/andrew,prot=nfs,sec=sys,rw=*,public=true,log=global



# zfs set share=name=andrew,path=/dpool/andrew,prot=nfs,rw dpool/andrew
name=andrew,path=/dpool/andrew,prot=nfs,sec=sys,rw=*,public=true,log=global


It does not remove the none specified items, so how do I remove/reset a
setting?

zfs get share
NAME PROPERTY VALUE SOURCE
dpool/andrew share
name=andrew,path=/dpool/andrew,prot=nfs,public=true,log=global,sec=sys,rw=*

local

In the end I did a remove share and recreated it!

Any thoughts on how to remove a property of a share?

Cheers,

Andrew







___
opensolaris-discuss mailing list
opensolaris-discuss@opensolaris.org



--
Andrew Watkins * Birkbeck College
http://notallmicrosoft.blogspot.com/
___
opensolaris-discuss mailing list
opensolaris-discuss@opensolaris.org


Re: [osol-discuss] Solaris 11 and Samba and change ACL do not work

2011-12-13 Thread Andrew Watkins


Thanks Chris that solved it.

I had followed that before but I missed the vfs objects = zfsacl part. 
Teach me to skip information.


I also used the idmap config whiched help with my mapping of AD and 
LDAP. ref: 
http://blogs.oracle.com/jurasek/entry/even_more_simple_configuration


Cheers,

Andrew

On 12/10/11 05:05 PM, Chris Ridd wrote:


On 9 Dec 2011, at 16:05, Andrew Watkins wrote:



Hi,

I will try here as my first port of call.

I am using Samba to server files to our Windows users and I want them to change 
permissions of files so they can give access to other users.

Before any says anything I am doing this in a ZONE so CIFS server is not 
available in Solaris zones.

Well, it does not seem to work and I have followed a few blog entries but they 
all give the same result:

- Edit file properties
- Add user to Windows Security Tab and select Apply:
Unable to save permission changes on MyFile.txt
Access is denied

Should this be a problem?

The blog entries I have followed (why are they never 100% complete!)

http://blog.mc-thias.org/?title=registering-a-samba-solaris-10-server-as-a-ms-ad-membermore=1c=1tb=1pb=1

http://blog.allanglesit.com/2011/03/solaris-11-join-ad-domain-for-samba/

Any pointers?


Are you using vfs objects = zfsacl ?

Thishttp://nineproductions.com/technology/14-sun-solaris/65-solaris-11-samba-zfs-configuration.html
  looks useful...

Chris



--
Andrew Watkins * Birkbeck College
http://notallmicrosoft.blogspot.com/
___
opensolaris-discuss mailing list
opensolaris-discuss@opensolaris.org


[osol-discuss] NFS Can not remove a property

2011-12-13 Thread Andrew Watkins


I know this is a Solaris 11 point, but I thought it would be still good 
to post strange behavior with Solaris 11. At least if anyone else 
notices it and to decide if it is a bug?



# zfs set share=name=andrew,path=/dpool/andrew,
prot=nfs,sec=sys,rw=*,public=true,log=global dpool/andrew
name=andrew,path=/dpool/andrew,prot=nfs,sec=sys,rw=*,public=true,log=global


# zfs set share=name=andrew,path=/dpool/andrew,prot=nfs,rw dpool/andrew
name=andrew,path=/dpool/andrew,prot=nfs,sec=sys,rw=*,public=true,log=global

It does not remove the none specified items, so how do I remove/reset a 
setting?


zfs get share
NAME  PROPERTY  VALUE  SOURCE
dpool/andrew  share 
name=andrew,path=/dpool/andrew,prot=nfs,public=true,log=global,sec=sys,rw=* 
 local


In the end I did a remove share and recreated it!

Any thoughts on how to remove a property of a share?

Cheers,

Andrew






--
Andrew Watkins * Birkbeck College
http://notallmicrosoft.blogspot.com/
___
opensolaris-discuss mailing list
opensolaris-discuss@opensolaris.org


[osol-discuss] Solaris 11 and Samba and change ACL do not work

2011-12-09 Thread Andrew Watkins


Hi,

I will try here as my first port of call.

I am using Samba to server files to our Windows users and I want them to 
change permissions of files so they can give access to other users.


Before any says anything I am doing this in a ZONE so CIFS server is not 
available in Solaris zones.


Well, it does not seem to work and I have followed a few blog entries 
but they all give the same result:


- Edit file properties
- Add user to Windows Security Tab and select Apply:
Unable to save permission changes on MyFile.txt
Access is denied

Should this be a problem?

The blog entries I have followed (why are they never 100% complete!)

http://blog.mc-thias.org/?title=registering-a-samba-solaris-10-server-as-a-ms-ad-membermore=1c=1tb=1pb=1

http://blog.allanglesit.com/2011/03/solaris-11-join-ad-domain-for-samba/

Any pointers?

Cheers,

--
Andrew Watkins * Birkbeck College
http://notallmicrosoft.blogspot.com/
___
opensolaris-discuss mailing list
opensolaris-discuss@opensolaris.org


Re: [osol-discuss] pfexec does not work any longer

2011-11-16 Thread Andrew Watkins


Brian,

Thanks for the information, but it does not work. I will have another 
look at the documentation, since I may be missing something in the new 
release.


Andrew

On 11/14/11 07:36 PM, Brian Cameron wrote:


Andrew:

The functional replacement of the Primary Administrator RBAC profile
is System Administrator. If you use this instead, you should find
that your use is able to run programs with pfexec in much the same way
as you used to do with Primary Administrator.

Note that if you setup your login shell to a shell like pfsh, pfksh,
pfcsh, pfbash, ..., then you do not have to run programs with pfexec
when needed. With these shells, pfexec is automatically used when
needed.

If you want users to need to enter a role password in order to run
programs, you can also configure the user to have access to a role
which has the needed privileges (e.g. root). If RBAC is configured
this way, then the panel will present the dialog to enter this role
password before running such programs. But, it sounds like you more
just want to use the System Administrator profile and avoid needing
to enter passwords.

Others have recommended sudo. The sudo program is useful for those
people who find it the best way to configure a needed system. That
said, using sudo to just avoid the use of RBAC is probably not the best
use.

Brian


On 11/11/11 11:37 AM, Andrew Watkins wrote:


I have lost the ability of making a user have access to root on Solaris
11 using the command pfexec.

On the old Solaris 11 express box it works:
===
% grep andrew /etc/user_attr
andrewprofiles=Primary Administrator;roles=root
% id
uid=102(andrew) gid=10(staff)
% pfexec id
uid=0(root) gid=0(root)

Now on Solaris 11 it does not:
==
grep andrew /etc/user_attr
andrewprofiles=Primary Administrator;roles=root

% id
uid=102(andrew) gid=10(staff)
% pfexec id
uid=102(andrew) gid=10(staff)


What do I have to do to get pfexec working again?

Cheers,

Andrew






--
Andrew Watkins * Birkbeck College
http://notallmicrosoft.blogspot.com/
___
opensolaris-discuss mailing list
opensolaris-discuss@opensolaris.org


[osol-discuss] Is raidz root support on Solaris 11

2011-11-15 Thread Andrew Watkins


Can I ask if raidz is support on root with Solaris 11?

I am having problem doing it from auto-installer and I just thought that 
may be the reason.


Cheers,

Andrew
___
opensolaris-discuss mailing list
opensolaris-discuss@opensolaris.org


[osol-discuss] pfexec does not work any longer

2011-11-11 Thread Andrew Watkins


I have lost the ability of making a user have access to root on Solaris 
11 using the command pfexec.


On the old Solaris 11 express box it works:
===
% grep andrew /etc/user_attr
andrewprofiles=Primary Administrator;roles=root
% id
uid=102(andrew) gid=10(staff)
% pfexec id
uid=0(root) gid=0(root)

Now on Solaris 11 it does not:
==
grep andrew /etc/user_attr
andrewprofiles=Primary Administrator;roles=root

% id
uid=102(andrew) gid=10(staff)
% pfexec id
uid=102(andrew) gid=10(staff)


What do I have to do to get pfexec working again?

Cheers,

Andrew

--
Andrew Watkins * Birkbeck College
http://notallmicrosoft.blogspot.com/
___
opensolaris-discuss mailing list
opensolaris-discuss@opensolaris.org


Re: [osol-discuss] ACL for window

2011-01-11 Thread Andrew Watkins


Ryan,

ACL are a big pain in CIFS. I guess you should have a closer look at 
what ls -lV shows on the files. I have been battling my way through it 
myself.



First, when I created the file and change delete permission to deny

 delete permission from windows side.

but user still can delete the file.


Are you talking about a UNIX or Windows user can delete the file?

If Windows user then check you have created the right permissions on the 
home directory for the owner, since it works correctly for windows:


 owner@:rwxpd-aARWc--s:fd-:allow
- remove D - Delete subfolders and Files
- remove C - Change Permissions
- remove o - Take Ownership 

If Solaris User, then you seem to be right. It looks like the ACL is 
being ignored in favour of the UNIX permissions


Is this what you get after adding deny!

# ls -lV DonotDELETE
-rwxr-xr-xr-x+  1 andrew staff  0 Jan 11 12:45 DonotDELETE
 owner@:d-:---:deny
 owner@:rwxpd-aARWc--s:fd-:allow
group:staff:r-x---a-R-c--s:fd-:allow
 group@:r-x---a-R-c--s:fd-:allow
  everyone@:r-x---a-R-c--s:fd-:allow

I guess this is a bug?

Andrew

--
Andrew Watkins * Birkbeck College
http://notallmicrosoft.blogspot.com/


On 01/11/11 10:29 AM, Ryan Park wrote:

Hello all,

First I like to thank you for the help. Thank you.

I have created smb share on opensolaris 134.
joined windows 2008 active directory and map the share to the system.

I have couple acl access permission problem.

First, when I created the file and change delete permission to deny delete 
permission from windows side.
but user still can delete the file.

Second, I have taken the snapshot and restored from windows folder/file 
property--previous version tab
When I delete the file and restores is using different user account.
that account has access to the file.

Please give me light to guide throught this problem

Thank you

Ryan

___
opensolaris-discuss mailing list
opensolaris-discuss@opensolaris.org


[osol-discuss] Is Solaris 11 dead on new desktops. Core i5

2010-12-08 Thread Andrew Watkins


I thought I would give Solaris 11 Express a go on some new desktops we 
have and it failed to boot the live CD, since it freezes at:


PCI Express-device: pci8086,3...@1a,7, ehci0
ehci0 is /p...@0,0/pci8086,3...@1a,7

PCI Express-device: pci8086,3...@1d,7, ehci1
ehci1 is /p...@0,0/pci8086,3...@1d,7

I found this bug
https://defect.opensolaris.org/bz/show_bug.cgi?id=15976 which it talks 
about which problem, which was never solved.


I guess this type of error requires new intel drives which means that it 
will never be fixed, since Oracle will not ship Core i3/5 systems and so 
will not bother working on it.


Also, I guess since it requires Intel help then the OpenSolaris versions 
of Solaris will not get any fixes either. So, the question Solaris 11 
is dead on desktops is becoming true


Cheers,

Andrew

--
Andrew Watkins * Birkbeck College
http://notallmicrosoft.blogspot.com/
___
opensolaris-discuss mailing list
opensolaris-discuss@opensolaris.org


Re: [osol-discuss] Can't bring windows back to or from to solaris 11

2010-12-03 Thread Andrew Watkins


I think you will also need to enable the x11-server listener as well.

$ svccfg -s x11-server listprop  options/tcp_listen
options/tcp_listen  boolean  false

$ pfexec svccfg -s x11-server setprop options/tcp_listen = true
$ svccfg -s x11-server listprop  options/tcp_listen
options/tcp_listen  boolean  true

You may need to restart the window manager.

Andrew

On 12/ 3/10 05:21 PM, Randy Jones wrote:

On 12/03/10 10:55, Mariela Ortega wrote:

How can i configure solaris 11 to bring back GUI's from another
solaris 10 servers? or to use the system remetly with exceed or
xwin-32? or XDMCP?

i used the setenv display and the ssy but nothing works, i get the
following error
Java HotSpot(TM) Client VM (build 1.4.2_13-b06, mixed mode)

java.lang.InternalError: Can't connect to X11 window server using
'archive.dfrc.nasa.gov:0.0' as the value of the DISPLAY variable.
at sun.awt.X11GraphicsEnvironment.initDisplay(Native Method)
at sun.awt.X11GraphicsEnvironment.clinit(Unknown Source)
at java.lang.Class.forName0(Native Method)
at java.lang.Class.forName(Unknown Source)
at java.awt.GraphicsEnvironment.getLocalGraphicsEnvironment(Unknown
Source)
at java.awt.Window.init(Unknown


The display you are attempting to connect to has to be setup to allow
connections from other hosts. You use xhost for this. Something like
this:

xhost +ipAddressOfRemoteClient
or
xhost +NameofRemoteClient

see man xhost




--
Andrew Watkins * Birkbeck College
http://notallmicrosoft.blogspot.com/
___
opensolaris-discuss mailing list
opensolaris-discuss@opensolaris.org


Re: [osol-discuss] Update/patch policy?

2010-11-16 Thread Andrew Watkins

On 11/16/10 04:45 AM, Alan Coopersmith wrote:

Dave Koelmeyer wrote:

Sean M. Brannon wrote:

What is the update/patch policy for Express? i.e.

is an Oracle support contract required to gain access
to Solaris 11 Express software/security updates?

Yes.


Oh, awesome. More demo software.


Free trial/evaluation software.   Like Solaris 10, production
use requires support contracts.



But, I thought security patches were always available for free?
But, I could be wrong!

Andrew

--
Andrew Watkins * Birkbeck College
http://notallmicrosoft.blogspot.com/
___
opensolaris-discuss mailing list
opensolaris-discuss@opensolaris.org


Re: [osol-discuss] samba version

2010-06-01 Thread Andrew Watkins

Brandon High wrote:

On Sun, May 30, 2010 at 1:06 PM, John Ryan john.r...@internode.on.net wrote:

Why not CIFS then? - It's streaks ahead of Samba


Samba has some advantages, such as the ability to act as domain
controller or AD master. The native cifs server certainly wins on
performance, support for VSS and ACLs.

As with everything, I supposed it depends on what your requirements are.


Also, printing should be added to this list, if OpenSolaris is your 
printer server!


Andrew
___
opensolaris-discuss mailing list
opensolaris-discuss@opensolaris.org


Re: [osol-discuss] Automated installer problem

2010-05-27 Thread Andrew Watkins


Looks like Jan is pointing you in the right direction, since I guess 
your disk does not have a SOLARIS fdisk partition, no free partition and 
I would even guess it has another O/S on it.


Also, check out the Deleting/Creating of fdisk Partition in AI Manifests 
files if you want it done automatically:


http://dlc.sun.com/osol/docs/content/2009.06/AIinstall/customai.html#iepartition

Andrew


Hi,

in order to determine what might went wrong, could you please attach
following information ?
(Run all commands within booted AI image - e.g. right after the
installation fails)

- AI manifest (located in /tmp/ai_combined_manifest.xml)

- partition configuration on target disk

# fdisk -W - c7t0d0

-  version of AI image used for the installation

# uname -a
# pkg info entire


Thank you,
Jan



On 05/26/10 11:29 PM, melbogia wrote:
We have been using automated installer so it is configured right. 
Today we tried to install opensolaris again with the automated 
installer but there is some kind of disk error and I cannot figure out 
how to fix it. Here is the log


r...@opensolaris:~# cat /tmp/install_log
AI May 26 20:48:07  /tmp/ai_combined_manifest.xml is a valid manifest
AI May 26 20:48:07  Auto reboot disabled
OM May 26 20:48:27  System reports enough physical memory for 
installation, swap is optional
AI May 26 20:48:27  Checking any disks for minimum recommended size 
of 12646 MB

AI May 26 20:48:27  Disk c7t0d0 size listed as 476940 MB
AI May 26 20:48:27  Default disk selected is c7t0d0
AI May 26 20:48:27  Disk name selected for installation is c7t0d0
AI May 26 20:48:27  no manifest partition information found
OM May 26 20:48:27  disk partition info not changed
AI May 26 20:48:27  no manifest slice information found
OM May 27 03:48:27  Timezone setting will be TZ=US/Pacific
OM May 27 03:48:27  Set timezone
AI May 27 03:48:27  installation will be performed from 
http://10.0.1.244 (opensolaris.org)
AI May 27 03:48:27  installation will be performed from 
http://10.0.1.244 (opensolaris.org)

AI May 27 03:48:27  list of packages to be installed is:
AI May 27 03:48:27  entire
AI May 27 03:48:27  SUNWcsd
AI May 27 03:48:27  SUNWcs
AI May 27 03:48:27  babel_install
AI May 27 03:48:27  list of packages to be removed is:
AI May 27 03:48:27  babel_install
AI May 27 03:48:27  slim_install
OM May 27 03:48:27  Disk was changed
OM May 27 03:48:27  Disk doesn't contain valid Solaris partition
OM May 27 03:48:27  Couldn't set fdisk attributes.


___
opensolaris-discuss mailing list
opensolaris-discuss@opensolaris.org



--
Andrew Watkins * Birkbeck College
http://notallmicrosoft.blogspot.com/
___
opensolaris-discuss mailing list
opensolaris-discuss@opensolaris.org


Re: [osol-discuss] [indiana-discuss] So when are we gonna fork this sucker?

2010-04-14 Thread Andrew Watkins




What ever happens to (Open)Solaris the new version of Solaris (Solaris 
Next again Oracle Welcome Session) will surly be based of 
OpenSolaris.. I guess the only key word will be Open


Andrew

George Koutras wrote:
I start shivering to the idea that oracle might drop opensolaris or keep developing only the Openstorage required portions of it, and adding to that the sudden silence in indiana-discuss from @oracle.com  @sun.com (last email on Friday 9/4), lets hope we will not be forced to move to bsd or linux world ( really outdated OSes compared to (open)solaris ). 
Please save the project.



George



--
Andrew Watkins * Birkbeck College
http://notallmicrosoft.blogspot.com/
___
opensolaris-discuss mailing list
opensolaris-discuss@opensolaris.org


Re: [osol-discuss] [storage-discuss] Problems with iscsi initiator with opensolaris 2009.06

2010-03-09 Thread Andrew Watkins
Just wondering if anyone worked out the problem with the slow reboot with iscsi.

I am seeing this myself now.

Andrew
-- 
This message posted from opensolaris.org
___
opensolaris-discuss mailing list
opensolaris-discuss@opensolaris.org


Re: [osol-discuss] Unable to ugrade from b132 to b133 : system freeze

2010-02-21 Thread Andrew Watkins


I thought it was a problem with the graphics driver, but you are right 
as soon as I start gdm the box dies and my remote ssh session are dead.. 
I will try again to see if I can get any error messages... Only got 1GB!



Same here with me - thought that it may be some problem in the versions since 
128a - but it happens more often. with 133 not as often as with 132 but 
yesterday 2 times.

Thinkpad T61p  with 4GB RAM  - Virtualbox with win64 running .

Freeze occurs in the same manner - tcp defensive mode on  ...   by by OS 
   


Andrew
___
opensolaris-discuss mailing list
opensolaris-discuss@opensolaris.org


[osol-discuss] Goodbye Sun.com

2010-01-28 Thread Andrew Watkins


Has any one gone to http://www.sun.com today?

You get http://www.oracle.com

Very quick change



--
Andrew Watkins * Birkbeck College
http://notallmicrosoft.blogspot.com/
___
opensolaris-discuss mailing list
opensolaris-discuss@opensolaris.org


Re: [osol-discuss] Goodbye Sun.com

2010-01-28 Thread Andrew Watkins


Well, I am sure over the next few weeks we will get lots of version 
upgrades:


Oracle Studio 12.2
Oracle Solaris 10 02/10
and
OracleOS 5.10.1

Andrew

On 28/01/2010 21:02, Sergio Schvezov wrote:

On Thu, 2010-01-28 at 22:24 +0800, Norbert P. Copones wrote:
   

but a link to opensolaris is here.

http://www.oracle.com/us/products/servers-storage/solaris/index.htm
 

You also have Oracle Solaris Studio there :-P

Will the former Sun Studio only work on Solaris in the near future? Or
is this already the case? :-P

___
opensolaris-discuss mailing list
opensolaris-discuss@opensolaris.org
   


___
opensolaris-discuss mailing list
opensolaris-discuss@opensolaris.org


[osol-discuss] Is the default 512MB to small for swap

2009-12-01 Thread Andrew Watkins


I am just wondering if the default lower limit should be increased from 
512MB when installed on small memory machines and depending on size of disk!


The reason is I just tried a image-update of OpenSolaris 2009.06 to the 
latest dev release 127 and had the following message:


pkg: There is not enough memory to complete the requested operation. 
At least 239MB of virtual memory was in use by this command before it 
ran out of memory.


The machine has 1Gig of memory (which I know is small these days) and 
the default swap which was 512MB. I was logged in remotely so was not 
running the gnome desktop on the machine but did have CIFS enabled 
(idmap size=815M, RSS=161M)


QUOTE: The swap volume size that is created during an initial 
installation is based on 1/2 the size of physical memory, but is 
generally in the 512 Mbyte to 2 Gbyte range. from opensolaris.org


Andrew
PS.
before some one says to increase it I did!
# zfs set volsize=1G rpool/swap

___
opensolaris-discuss mailing list
opensolaris-discuss@opensolaris.org


Re: [osol-discuss] OpenSolaris under Oracle?

2009-10-26 Thread Andrew Watkins

Pen-Yuan Hsing wrote:

Yeah, they keep mentioning Solaris, but not OpenSolaris. I like OpenSolaris a lot, but in my 
opinion it is still rough on the edges especially as a day-to-day desktop 
OS. So hopefully OpenSolaris development will be supported after the merger.


I think it will be a while before Oracle supports OpenSolaris for the 
reasons you mention. They will concentrate on Server releases and who 
can blame them.
Anyway, Solaris x64 will now get the same level of support as Solaris 
SPARC so at least they are going in the right direction and who knows 
what will be round the corner.


Andrew

--
Andrew Watkins * Birkbeck College
http://notallmicrosoft.blogspot.com/
___
opensolaris-discuss mailing list
opensolaris-discuss@opensolaris.org


Re: [osol-discuss] OT: Re: Oracle 10g on OpenSolaris (Solaris 5.11)

2009-08-19 Thread Andrew Watkins

casper@sun.com wrote:


That's not entirely true; quite a few people argued for scripting at
install and they were denied as there was clearly not a discussion
but more of a this is the plan and we're not changing it.

These people have unsubscribed because they felt there was no actual
discussion taking place.


I think that our large customers are underrepresented in OpenSolaris and I 
fear that the way AI-Install works complete disregards our most important

customers, at least, that is what some of them say to me.


The problem is that there has been all this great talk about AI, but the 
software is really in it very early stages and as you say does not offer 
all the features of Jumpstart (and may never do).


AI requirements 
http://opensolaris.org/os/project/caiman/auto_install/AI_Reqs_Final

e.g.
4.2 Will provide initial install support
- Does not mention scripting in any form ...etc
8.1.1 Will support http, https client/ server protocols
8.1.4 Will support boot from network but use local client profile on 
USB, CD/DVD

8.2.1 CD/DVD/USB automated installation will be supported

--
Andrew Watkins * Birkbeck College
http://notallmicrosoft.blogspot.com/
___
opensolaris-discuss mailing list
opensolaris-discuss@opensolaris.org


Re: [osol-discuss] SXCE end-of-life plans

2009-08-11 Thread Andrew Watkins


 I think this is a great shame since OpenSolaris Indiana 2009.06 is not 
ready to replace Solaris. I think many users are using SXCE since they 
want the new features of OpenSolaris, but Indiana is not ready for that job.


Here is the reasons including my real bugbear!

- Automated Install (ONLY works with certain DHCP servers)
  I use SXCE on many desktops and use Network JumpStart and/or a DVD 
Jumpstart image for this, since Jumpstart SXCE/Solaris offers many ways 
to install a image. AI only offers one way and if you have a non 
compatible DHCP (Microsoft) then I can not install Indiana


- No DVD image of OpenSolaris Indiana
 I know it is on the way but!

- No text Console install process
 I am not talking about tty

- Sparse zones

- No clear method of upgrade from Solaris - OpenSolaris

End of an era.

Andrew

___
opensolaris-discuss mailing list
opensolaris-discuss@opensolaris.org


Re: [osol-discuss] OpenSolaris 2009.06 missing SXCE b114 desktop applications

2009-06-02 Thread Andrew Watkins

Andrew,

With that in mind how would a user find out which package has the given 
program in it.


So, I want gimp how do I know which package it is in??

Andrew



russell aspinwall wrote:

Hi,

At present I have both OpenSolaris 2009.06 and Solaris Express CE b114 
running on my computer within VirtualBox clients. Comparing the two 
environments OpenSolaris 2009.06 is missing desktop applications such 
as GIMP and many others compared to SXCE b114. I tried to add GIMP via 
the Package Manager, while gimpprint exists gimp does not.
  


The gimp package is confusingly called SUNWgnome-img-editor on 
OpenSolaris, so install it like this:


pfexec pkg install SUNWgnome-img-editor



Cheers,


Andrew.



___
opensolaris-discuss mailing list
opensolaris-discuss@opensolaris.org


Re: [osol-discuss] Opensolaris Bible: Buy it!

2009-03-10 Thread Andrew Watkins


 Of course, however I just received an email from Amazon that my order 
got delayed.


It has just arrived from Amazon UK. It's a big book...

Andrew

___
opensolaris-discuss mailing list
opensolaris-discuss@opensolaris.org


Re: [osol-discuss] SXCE b100 release date?

2008-10-23 Thread Andrew Watkins


Paul Gress wrote:
 The way I see it, is they stated they would have gnome 24 in release 101 
 and they are fixing the font problems after removing numerous fonts and 
 installing freely available fonts.  So it must be taking a little longer 
 then expected to complete these tasks.  This is all my opinion, not 
 based on fact, but this is how I see it.  Give them a little time, all 
 will be great when it's all resolved.
 
 Paul

I have a feeling that the delay is so that they get a few more things 
fixed, since  - I am sure I read once that - OpenSolaris 2008.11 would 
be based on build 100.

Andrew

-- 
Andrew Watkins * Birkbeck College
http://notallmicrosoft.blogspot.com/
___
opensolaris-discuss mailing list
opensolaris-discuss@opensolaris.org


Re: [osol-discuss] I want to boot OpenSolaris from USB disk

2008-06-06 Thread Andrew Watkins

Chen,

How are you making the bootable USB in the first place?

Have you followed the example which can be located on ether of these two
blogs:

http://blogs.sun.com/dminer/entry/opensolaris_developer_preview_on_usb

or

http://softwareblogs.intel.com/2008/05/15/fun-with-usb-sticks-how-to-make-one-bootable-with-opensolaris-200805/

Andrew



Chen Jianxun(Kelvin) wrote:
 Hi All
 
 I am Kelvin Chen, I want to create bootable OpenSolaris USB disk, and I
 have finished something about it, but I meet many trouble too, so, now I
 need some help on it, if any one have experience about that, please help
 me, thank you very much.
 
 I have installed OpenSolaris 08/05 on USB Disk successfully, and I can
 boot OpenSolaris from USB Disk. But I meet many trouble when I try to
 boot OpenSolaris from the same USB Disk but on another computer. I move
 the USB Disk to another computer, it can not boot and give some error
 message I catch the screen output, and attache the photo with this
 email, I hope it is helpful for someone.
 
 I can guess the reason of that, such as I move the USB Disk from
 computer A to computer B, the computer A and computer B know the USB
 Disk from different PCI path, and recognize as different device ID, so
 the boot program can not find the correct boot device and can not boot
 normally.
 
 Who have experience on it. Please give me a hand for that. Thank you
 verymuch.
 
 
 
 
 This body part will be downloaded on demand.
___
opensolaris-discuss mailing list
opensolaris-discuss@opensolaris.org


Re: [osol-discuss] In Unix

2008-03-20 Thread Andrew Watkins
Come on folks!
The first answer should be What has this got to do with OpenSolaris?

But you are presuming that the file has only the 4 lines in it. What happens if 
the crontab is much longer

# more data here
0 0 * * * /usr/bin/true
#Start of lines added by SUNWscu
20 4 * * 0 /usr/cluster/lib/sc/newcleventlog /var/cluster/logs/eventlog
20 4 * * 0 /usr/cluster/lib/sc/newcleventlog /var/cluster/logs/DS
# End of lines added by SUNWscu

try:
% awk ' { if ( $0 ~ /^#Start of lines added by SUNWscu/ ) { START=1 } else if ( 
$0 ~ /^# End   of lines added by SUNWscu/ ) { START=0 } else if ( START==1 ) { 
print $0 }  } ' filename

Andrew
 
 
This message posted from opensolaris.org
___
opensolaris-discuss mailing list
opensolaris-discuss@opensolaris.org


Re: [osol-discuss] [advocacy-discuss] OpenSolaris Developer Preview

2008-02-18 Thread Andrew Watkins


 It's true, OpenSolaris (Indiana) will replace Solaris Express Developer
 Edition after SXDE 1/08.

I am a bit surprised that you think the product will be up to the same 
level in a few of months time as the current SXDE 1/08.

At the moment the two areas which concern me are how I can do network 
Jumpstart installs - nearly at a flick of a switch I can upgrade a lab 
of machines running the latest and greatest OpenSolaris. I can't use 
Solaris 10 since of the outdated interfaces.

Also, I still like the single download - it may be a DVD size, but at 
least it is done in one go and it allows me to upgrade my home machine 
in one easy go! Is there any way of doing this at the moment i.e. mass 
download of packages to install at a later date?

Don't get me wrong Indiana is the way of the future with its small 
download, install and then package update for ever more for the desktop 
world, but I can't not see it for the Solaris Server World.

Thanks anyway for the clarification.

Andrew
___
opensolaris-discuss mailing list
opensolaris-discuss@opensolaris.org


Re: [osol-discuss] [advocacy-discuss] OpenSolaris Developer Preview 2 Available

2008-02-15 Thread Andrew Watkins

 The preview is absolutely an experiment.  Indiana itself is an 
 experiment.  OpenSolaris?  Well, I don't know what to call it ;-)

I see Indiana is an experiment well I think it is more than that!

From: Net Talks Webcast Details: Sorting Out Solaris Releases

http://nettalk.sun.com/bhive/t/1000/webcast_details.jsp?content_id=1422

Larry Wake (Solaris Group Marking Manager)

Quote :
==
OpenSolaris as a distro (Project Indiana)
- Coming soon
- To replace SXDE, not Solaris 10 - yet
==

Andrew
___
opensolaris-discuss mailing list
opensolaris-discuss@opensolaris.org


[osol-discuss] SXCE Build 81 Looking Good

2008-02-02 Thread Andrew Watkins
I thought for a change I would say a Thank You for the latest build.
Installed it on my laptop and I was pleased to see so new features and some 
working ones.

My wireless WPA-PSK worked. It did not work on previous releases

A fully functional webserver ready to go (web stack) + GUI. I used Coolstack 
since v1, so it is good to see it appear in the OS by default and set out 
correctly for version upgrades:  (apache start problem but known bug: 
http://bugs.opensolaris.org/view_bug.do?bug_id=6653084)

Cheers

Andrew
 
 
This message posted from opensolaris.org
___
opensolaris-discuss mailing list
opensolaris-discuss@opensolaris.org


Re: [osol-discuss] Anybody now will Oracle make 11g release for Solaris x86?

2008-01-28 Thread Andrew Watkins

Hi,

I think Tom has spelt the problem out very well. Oracle
will only release a Open(Solaris) x86-64 version when
they have finished all there priority releases and then
depending what demand there is for the product.

I got my reply back from Oracle and now they just point
me to there support site which says that current support
release is 10gR2 and no news about release dates (if any)
for 11g. My money will be on a 11gR2 release, so at least
another year.

I will no chase Sun up to see what they say.

Andrew

 Hello,
 
 1. Oracle 11gR1 for Solaris 10 (SPARC) is a priority
 and the x86 edition of Oracle 11gR1 was proposed (I
 expect it for Oracle 11gR2 once stable on other
 primary Oses - if demand is there and to supercede
 10g). The 'proposed' status is documented in Oracle's
 product certification matrix as well (although, it may
 not be up to date based on certain previous comments
 on the terminal release).
 
 Note: Most ISVs run into the issue of resources,
 support, training and/or customer (i.e. mid-large 
 enterprise/business demand/ROI) of the product.
 
 2. Review installs of Oracle 10gR2 on the various
 OpenSolaris distros (SXCE/SXDE, Schillix, Nexenta,
 Belenix, Indiana)
 
 Note: 
 http://bderzhavets.blogspot.com/2007/10/install-oracle-10.html
 
 http://www.opensolaris.org/jive/thread.jspa?threadID=9161
 
 You may want to ask Sun about their reviews and
 speculations on future Oracle 11g+ support on Solaris
 x86 as well.
 
 ~ Ken Mays
 
 
 
 -
 Hello Andrew,
 
 Friday, January 25, 2008, 8:13:46 PM, you wrote:
 
 AW I have been looking into this recently and I got a
 reply from
 AW those Oracle people, which  is not what I was
 hoping for. Again it
 AW is down to the same old problem of demand for an
 Application on
 AW OpenSolaris/Solaris x86 platform. I guess it is
 the same problem
 AW the Linux people had a few years ago, so there is
 still hope.
 
 AW From Oracle===
 11g is not planned for Solaris Operating System x86.
 In the General Notes For Oracle Database -
 Enterprise Edition On
  Solaris Operating System x86 it states
 Terminal Release:

* 10gR2 is the terminal release for this
 platform.
 Regards,
 
 AW My understand of this is that there will not be a
 x86 release of
 AW 11gR1, but I guess there is still hope for 11gR2
 version
 
 
 DOes it mean not 32bit version or does it meant they
 abandon Solaris
 x86 altogether?!?!!?!?
 
 
 Best regards,
  Robert Milkowski
 
 
   
 
 Be a better friend, newshound, and 
 know-it-all with Yahoo! Mobile.  Try it now.  
 http://mobile.yahoo.com/;_ylt=Ahu06i62sR8HDtDypao8Wcj9tAcJ 
 
___
opensolaris-discuss mailing list
opensolaris-discuss@opensolaris.org


Re: [osol-discuss] Anybody now will Oracle make 11g release for Solaris x86?

2008-01-25 Thread Andrew Watkins
I have been looking into this recently and I got a reply from those Oracle 
people, which  is not what I was hoping for. Again it is down to the same old 
problem of demand for an Application on OpenSolaris/Solaris x86 platform. I 
guess it is the same problem the Linux people had a few years ago, so there is 
still hope.

From Oracle===
11g is not planned for Solaris Operating System x86.
In the General Notes For Oracle Database - Enterprise Edition On Solaris 
Operating System x86 it states
Terminal Release:

* 10gR2 is the terminal release for this platform.

Regards,

My understand of this is that there will not be a x86 release of 11gR1, but I 
guess there is still hope for 11gR2 version.
 
 
This message posted from opensolaris.org
___
opensolaris-discuss mailing list
opensolaris-discuss@opensolaris.org


Re: [osol-discuss] chrooting ftp users?

2008-01-23 Thread Andrew Watkins
  is there a way to configure the ftp server in Solaris in such a way
  that users be automatically chdir-ed to their home directory
  and that they see it as / ? I don't care if ftpd actually calls
  chroot() or not.
  I tried to set some option in /etc/ftpd/ftpaccess, but with
  miserable results (I find ftpaccess(4) quite unclear) .
 
  I know that proftpd or vsftpd would do it, but I'm trying to minimize
  the installation of third party packages.


Nico,

You can do this by adding the following to the ftpaccess file


# Restrict all users to there home directory
guestuser  *

# Give the following user full access
realuser   andrew   andrew

# Give the following group full access
realgroup  staffstaff
=

make sure you restart ftp
# svcadm restart svc:/network/ftp:default

There is one bad side effect [which I think is a bug]. You may start 
seeing the following in the log files (/var/adm/messages)

ftpd:  open_module: stat(/usr/lib/security/pam_unix_session.so.1) 
failed: No such file or directory
ftpd: load_modules: can not open module 
/usr/lib/security/pam_unix_session.so.1

and last  command will not show logout time. This is because you have 
chroot the account and /usr/lib/security/pam_unix_session.so.1 does 
not exist under the users home directory.

Hope it helps

Andrew



___
opensolaris-discuss mailing list
opensolaris-discuss@opensolaris.org


[osol-discuss] Will OpenSolaris work on a intel desktop Quad processor

2007-10-24 Thread Andrew Watkins

I am finally biting the bullet and ditching my work machine - a 9 year 
old Ultra 10 - for a new system I thought I would go for the fastest cpu 
on the market. I already have OpenSolaris running on Core™2 Duo box.

It may sound a silly question, since Solaris does run on Quad-Core Intel 
Xeon, so therefore OpenSolaris should work aswell. But, how about the 
plain Intel® Core™2 Quad processor for desktop. I guess there should 
not be any difference on the software side between the Intel Xeon and 
the Intel Core 2 processors, but ..?


Thanks in advance.

Andrew
___
opensolaris-discuss mailing list
opensolaris-discuss@opensolaris.org


Re: [osol-discuss] OT: Sun joins the dark side :-D

2007-09-14 Thread Andrew Watkins

 Likewise, I haven't seen the Sun One Directory server being able to fully and 
 completely replace Microsoft Active Directory because it is fully 
 interoperable with AD, meaning that it can supplant it.

At the end of the day this is better for Sun than Microsoft.

Microsoft don't care about any other companies and they don't need to 
worry, since there OS is the one which is widely used around the world.

On the other Sun want to make sure they fit into the Microsoft world, 
since they have given up on killing the Beast! Sun want to make sure 
that all there software/hardware works well with MS Windows.

The real battle is for second place!

Andrew
___
opensolaris-discuss mailing list
opensolaris-discuss@opensolaris.org


Re: [osol-discuss] Fwd: Sun Device Detection Tool 1.2 is released

2007-08-06 Thread Andrew Watkins

 I have tried this both ways on different revs of Solaris and sometimes I get
 the submission button and sometimes I don't.
 
 and .. I don't know why either.

Is there any chance that the submission only appears when you are 
running on Solaris 10 11/06 or Developer 5/07 releases.

This seems to be the case for me.


Andrew
___
opensolaris-discuss mailing list
opensolaris-discuss@opensolaris.org


Re: [osol-discuss] Flash Player 9 for solaris is released to the public.

2007-07-12 Thread Andrew Watkins
Don't make the same mistake as me and install Flash on a Solaris 9 box.

OK! It does say Solaris 10, but I thought it may work.

Andrew
 
 
This message posted from opensolaris.org
___
opensolaris-discuss mailing list
opensolaris-discuss@opensolaris.org


Re: [osol-discuss] What CPU run 64 bit kernel OpenSolaris

2007-07-05 Thread Andrew Watkins
Thanks for all the information, but the problem I am having - well not a 
problem - just a general question.

What I have done is boot a Intel Core 2 (running Windows) off the latest 
OpenSolaris B67 x86 and entered the Singe User Shell straight away.

# isainfo -v
32-bit i386 applications

Now is this telling me the the computer can not run 64bit or is just because 
the install kernel is 32bit it want report if it can run 64bit.

I have also used the Device Detection Tool, but that will report there are 
3264 bit drivers are available, but does not tell me that OpenSolaris will run 
in 64bit mode.

I guess by what people have said is that if the CPU supports EM64T or AMD64 
then of course it will run 64bit!

Thanks
 
 
This message posted from opensolaris.org
___
opensolaris-discuss mailing list
opensolaris-discuss@opensolaris.org


[osol-discuss] What CPU run 64 bit kernel OpenSolaris

2007-07-04 Thread Andrew Watkins
I know you may think it is a silly question, but I am unable to find the answer.
OK! We know Sun SPARC chips all run 64 bit OpenSolaris, but which AMD and Intel 
cpu can run it as well:

 - AMD Opteron run 64bit kernel
 - Intel Xeon run 64bit kernel

but what about:

 - AMD Athlon 64 X2 Dual-Core
 - AMD Athlon™ 64
 - intel Pentium 4
 - intel Core 2 Due

Thanks
Andrew
 
 
This message posted from opensolaris.org
___
opensolaris-discuss mailing list
opensolaris-discuss@opensolaris.org

[osol-discuss] Re: Re: SXCE Build 60 available

2007-03-28 Thread Andrew Watkins
After every release someone always ask what is new in it and I think it is a 
valid question, which is not always easy to find out. I think it is a little 
unfair to pass the buck to one group to keep this up to date, so why don't we 
ask all Communities to have a page on there home site to tell us what versions 
of there software has got in to the latest Solaris Express, Community Edition.

At the moment a few do it:
- Nevada : http://www.opensolaris.org/os/community/on/flag-days/
- X Window System : http://www.opensolaris.org/os/community/x_win/changelogs/
- ON bug fixes : http://dlc.sun.com/osol/on/downloads/current/

But why not every one. If your software is in the latest release let everyone 
know.
JDS  :  tell us which GNOME version is in the current release.
Laptop : tell us which drivers are in

Andrew
 
 
This message posted from opensolaris.org
___
opensolaris-discuss mailing list
opensolaris-discuss@opensolaris.org


[osol-discuss] Re: ZFS causing slow boot up

2007-02-17 Thread Andrew Watkins
Are you exporting these filesystems or have quotas on them, since I believe 
there is a slow boot problem with that!
 
 
This message posted from opensolaris.org
___
opensolaris-discuss mailing list
opensolaris-discuss@opensolaris.org


[osol-discuss] Re: Solaris Language CD

2007-02-16 Thread Andrew Watkins
off topic, but how did you manage to install the software on the U10.
I just did the same and it would not install any software pass CD1

I go through the install procedure and it install of the packages from CD 1 
and 
 then reports:

Unable to run launcher without Java
following CDs will not be installed:
Solaris Software 2 for SPARC Platform
Solaris Software 3 for SPARC Platform
..etc...
 
 
This message posted from opensolaris.org
___
opensolaris-discuss mailing list
opensolaris-discuss@opensolaris.org


[osol-discuss] Re: telnetd exploit

2007-02-13 Thread Andrew Watkins
I guess another thing to think about is when did the telnetd change, since 
Solaris 9 and below do not have this problem. And I read somewhere that Solaris 
10 (First release) did not have it.

Did the OpenSolaris community add this bug or was it from Sun and why was it 
changed?

Only a thought;-)
 
 
This message posted from opensolaris.org
___
opensolaris-discuss mailing list
opensolaris-discuss@opensolaris.org


[osol-discuss] Re: Re: telnetd exploit

2007-02-12 Thread Andrew Watkins
 Good question. Let's spin it around a bit, though: if
 somebody did enable root logins via telnet on a UNIX
 system in this day and age, should they really have
  anything to do with UNIX?

You are right that opening root to remote access a machine via any way 
(telnet/rsh/ssh) is asking for trouble. Root should only be via CONSOLE or SU...

I guess another point is the way the exploit was released, since I believe that 
it was release on the web before notifying Sun about it, which is very 
Irresponsible.

Andrew
 
 
This message posted from opensolaris.org
___
opensolaris-discuss mailing list
opensolaris-discuss@opensolaris.org


[osol-discuss] Re: Distributed File System for Solaris

2006-05-10 Thread Andrew Watkins
 it's not completely clear to me how this filesystem
 is used and how you are planning to manage your
 alternate service, so the following may or may not be
 useful...

I will clear up exactly what I was hoping for. Want I wanted is to mirror 
2 disks on 2 different machines, so that both disks always have the same data
even though one may have failed.

What I thought the CacheFS would be able to do this since files are kept
in different location but are identical to the server location. The above 
comments make it clear that this may not work well in a fail over situation,
even if I managed to setup the disconnected  mode, which the man pages talks 
about but does not explain.

Anyway, I will look into the other suggestion mentioned.

Andrew
 
 
This message posted from opensolaris.org
___
opensolaris-discuss mailing list
opensolaris-discuss@opensolaris.org


[osol-discuss] Re: Distributed File System for Solaris

2006-05-09 Thread Andrew Watkins
 My manager asked me if I could a mirror copy of our /var/mail on another 
 system, just in case the system went down. He suggested that Windows has DFS 
 (Distributed File System) and I said I would look into it.

 Microsoft's DFS is a method for creating another copy of your data and
 being able to point clients to it on the fly.  The closest analog on
 Solaris is NFS client failover, where you can list multiple locations
 to mount something from.  It's best used with read-only mounts, as then
 the location info is in the kernel and failover is transparent.  Sun
 hasn't provided a tool to do the copies; I'd suggest periodic rsync.

Thanks for the replys and I will need to have a closer look at rsync, but I 
just thought since cachefs was there and working it would be a simple thing to 
do.

 How do you want to be able to access e-mail when the main server is
 down?  Do you need something that just works for everyone, or do you
 need something for just a few people?  How are people accessing the
 e-mail - IMAP or NFS access to /var/mail?

The truth is that our main building is going to be rewired and there are going 
to be some major power outage over weekends, so the plan was to use an off site 
machine we already have to offer some basic services when the main servers are 
down like e-mail and web for the people who don't have a life ;-)


 Over the weekend I thought of CacheFS which comes will solaris which allows 
 you to have a local copy of a network drive, so that it can improve the NFS 
 server performance and scalability by reducing server and network load.. My 
 joy was short lived when I relaises that when the server goes down your 
 local copy of that NFS is not accessable.

 I don't see why CacheFS can not work in this situation, so that if there is 
 a local version of the file use it and not just hang...

 I don't think CacheFS is a good match here.  There is a disconnected
 mode where the server isn't consulted, but in my experience you can't
 ensure that all blocks of all files will be available in the cache.
 Also, CacheFS doesn't work with NFSv4 :-(

As I said at first glance Cachefs looked perfect for the jobs and it was so 
easy to set up, but by the looks of it it may be better to start using rsync. 
The NFSv4 point is interesting and it looks like cachfeFS will become another 
EOL product.

Thanks again


Andrew
 
 
This message posted from opensolaris.org
___
opensolaris-discuss mailing list
opensolaris-discuss@opensolaris.org


[osol-discuss] Distributed File System for Solaris

2006-05-08 Thread Andrew Watkins
My manager asked me if I could a mirror copy of our /var/mail on another 
system, just in case the system went down. He suggested that Windows has DFS 
(Distributed File System) and I said I would look into it.

Over the weekend I thought of CacheFS which comes will solaris which allows you 
to have a local copy of a network drive, so that it can improve the NFS server 
performance and scalability by reducing server and network load.. My joy was 
short lived when I relaises that when the server goes down your local copy of 
that NFS is not accessable.

I don't see why CacheFS can not work in this situation, so that if there is a 
local version of the file use it and not just hang...

Any thoughts or has any one got a good Solaris/OpenSolaris solution to my 
problem.

Andrew
 
 
This message posted from opensolaris.org
___
opensolaris-discuss mailing list
opensolaris-discuss@opensolaris.org


[osol-discuss] Re: Proposal to remove /usr/sfw and its dependencies from th

2006-03-21 Thread Andrew Watkins
I just had a quick look at /usr/sfw and there are many packages which you can 
remove if you wish, since there is about 16000 files made out of 93 packages. 
If you don't want it remove it, but at least you have the choice and I find 
myself not install as much software from sunfreeware.com as I did with Solaris 
9. 
Most of this software is aimed at the desktop and developers which is important 
since you want users to install the OS and go. Not like previous release when 
you spend a few days getting the packages you really wanted.

One solution could be to introduce a new Solaris Software Group called Server 
Group which does not have any of the desktop stuff. What I normally do on our 
servers is to install Entire Group and then remove a lot of packages.

Andrew
This message posted from opensolaris.org
___
opensolaris-discuss mailing list
opensolaris-discuss@opensolaris.org


[osol-discuss] Re: Has Microsoft fixed the single sign on problem with Windows 2003 R2

2006-02-23 Thread Andrew Watkins
Some interesting comments about Single Sign on:

1) One thing which I think we are agreed on is LDAP is the best solution with 
some sort of communication with Windows Active Directory.

2) Sun's Directory Server Enterprise Edition and Access Manager is another 
solution but I have to say that it is a big product and I did have a go with 
it. I found it not very easy to setup and the sun documentation need a lot of 
work done on it. [Mat: Please write that bog, since I am sure I am not the only 
one who would read it!]

3) I have had a play with kerberos, but again it does not work as easy as NIS 
or LDAP authentication.

Anyway, thanks for the all the comments.
This message posted from opensolaris.org
___
opensolaris-discuss mailing list
opensolaris-discuss@opensolaris.org


[osol-discuss] Has Microsoft fixed the single sign on problem with Windows 2003 R2

2006-01-19 Thread Andrew Watkins
I have just read the UNIX Interoperability in Windows Server 2003 R2 and 
after looking at the online demo it looks like we can now import all our NIS 
stuff into AD.

It seems that Active Directory can act as a NIS server and can give us a single 
password for all us Solaris / Windows environments sites. I am not sure what 
needs to installed on the Solaris side.

Questions 1) Microsoft  Sun have been talking for about a year and MS have 
come up with a simple (a few button pushes) solution which may work, but Sun 
have still not got anything worth talking about and the System Identity 
Synchronization for Windows works if the wind is in the right direction

Question 2) I don't see any choice for Solaris Administrators in a mixed 
environments to ditch there NIS/LDAP unix servers and let AD do all the work. 
Any Tom, Dick and Harry can now setup a windows box to take control of Solaris 
information systems

Thoughts

Andrew
This message posted from opensolaris.org
___
opensolaris-discuss mailing list
opensolaris-discuss@opensolaris.org


[osol-discuss] Solaris 10 1/06 Which Solaris Express Version

2005-12-21 Thread Andrew Watkins
I see that Solaris 10 1/06 has just been released and looking at the 
documnetation it looks like it is based on Solaris Express 11/05 (no ZFS). Is 
this correct, or is it based in an early version.

I guess the question is when do Sun take the Express Version and turn it into a 
full Solaris version, since I find it hard to beleive that they only take 1 
month to do there final testing?

Just a general question.

Thanks

Andrew
This message posted from opensolaris.org
___
opensolaris-discuss mailing list
opensolaris-discuss@opensolaris.org