[sage-support] Re: Plans for a Sage port to Solaris ??

2008-07-25 Thread Pierre

hey michael,

I've downloaded the solaris binary you pointed at and tried it. It
seems to work a little! although it keeps saying couldn't set locale
properly, mostly the first time you try something. Also, the first
time i ran it, i had to CTRL+C during initialization, it really was
stalled. Here's a little example:

--
| SAGE Version 3.0.5, Release Date: 2008-07-11   |
| Type notebook() for the GUI, and license() for information.|
--
couldn't set locale correctly
couldn't set locale correctly

couldn't set locale correctly
couldn't set locale correctly
sage: 2+2
4
sage: gap(2+2)
couldn't set locale correctly
couldn't set locale correctly
4
sage: gap(2+2)
4
sage: R.a,b= QQ[]
sage: I= [a*b, a+b]*R
sage: I.groebner_basis()
couldn't set locale correctly
couldn't set locale correctly
[a + b, b^2]
sage: I.groebner_basis()
[a + b, b^2]

Any idea how to get rid of the 'locale' message ? or fix whatever
serious problem lies behind it ? (btw i'm obviously not root on the
solaris machine)
also, what sort of tests should i run ? is there a full test for
sage ?
to finish with, why is the sage folder much smaller than the one i
have on my linux (ubuntu) machine ?

thanks!
pierre



--~--~-~--~~~---~--~~
To post to this group, send email to sage-support@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/sage-support
URLs: http://www.sagemath.org
-~--~~~~--~~--~--~---



[sage-support] Re: Installing SnapPeaPython using VMplayer

2008-07-25 Thread Robert Bradshaw

On Jul 25, 2008, at 8:43 AM, hypermonkey2 wrote:


 Thanks again for the reply, but i am running WINDOWS, so the
 directories
 /usr/local/sage/
 still only exist within the VMPlayer. Can i find them in WINODWS for a
 simple copy paste?

The short answer is No.

I think the way to copy files back and forth between the VMWare  
filesystem and the Windows file system is to set up sharing on one or  
the other of them (for you, it would probably be easiest to set up a  
samba or ftp server on the VMWare player, then log into it from  
Windows as if it were a remote computer.

You might try searching on the web for how to exchange files between  
VMWare and host filesystems as well.

- Robert




 On Jul 25, 11:04 am, William Stein [EMAIL PROTECTED] wrote:
 On Thu, Jul 24, 2008 at 9:39 PM, hypermonkey2 [EMAIL PROTECTED]  
 wrote:

 Thanks for the reply! My problem is exactly this: how do i copy the
 snappeapython package over? Where would the sage root folder be
 located in windows?
 that is to say that i have the prompt [EMAIL PROTECTED]:/home/#manage
 but there are no files there when i call ls.
 Where is this on my hard drive so that i may copy the snappeapython
 files there?

 Sage in the virtual machine is installed into

  /usr/local/sage/

 William
 


--~--~-~--~~~---~--~~
To post to this group, send email to sage-support@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/sage-support
URLs: http://www.sagemath.org
-~--~~~~--~~--~--~---



[sage-support] Re: SAGE, how-to questions...

2008-07-25 Thread Timothy Clemans

First load the Notebook object.
sage: nb = load('.sage/sage_notebook/nb.sobj', compress=False)

Adding a new user:
sage: nb.add_user('michael', 'AxhmjuK', '[EMAIL PROTECTED]', force=True)
sage: nb.save()

Changing user's password:
sage: nb.change_password('michael', 'CCDY')
sage: nb.save()

Deleting published worksheet:
Find the url of the worksheet you want to delete such as
http://sage.math.washington.edu:8999/home/pub/0/
sage: nb.delete_worksheet('pub/0')
sage: nb.save()

Deleting a user:
sage: nb.del_user('michael')
sage: nb.save()

2008/7/25 Thierry Dumont [EMAIL PROTECTED]:

 Hi,

 I have some questions about Sage management:

 1) How to suppress a user (created in the Notebook)
  -There is user_db.py in notebook/ with remove_user(self, user)
 but how to use it ?
 2) Is it possible to change the password of a user ?

 About published worksheets:

 3) How to suppress a published worksheet ?

 Thank you in advance.
 t.d.
 --

 Thierry Dumont. Institut Camille Jordan -- Mathematiques--
 Univ. Lyon I,43 Bd du 11 Novembre 1918, 69622
  - Villeurbanne Cedex - France.
 [EMAIL PROTECTED]  web: http://math.univ-lyon1.fr/~tdumont



--~--~-~--~~~---~--~~
To post to this group, send email to sage-support@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/sage-support
URLs: http://www.sagemath.org
-~--~~~~--~~--~--~---



[sage-support] Re: SAGE, how-to questions...

2008-07-25 Thread William Stein

On Fri, Jul 25, 2008 at 6:26 PM, Timothy Clemans
[EMAIL PROTECTED] wrote:

 First load the Notebook object.
 sage: nb = load('.sage/sage_notebook/nb.sobj', compress=False)

Just a heads up -- make sure to do this with the notebook server *not* running.

I'm sorry this is so inconvenient, by the way.

 -- William


 Adding a new user:
 sage: nb.add_user('michael', 'AxhmjuK', '[EMAIL PROTECTED]', force=True)
 sage: nb.save()

 Changing user's password:
 sage: nb.change_password('michael', 'CCDY')
 sage: nb.save()

 Deleting published worksheet:
 Find the url of the worksheet you want to delete such as
 http://sage.math.washington.edu:8999/home/pub/0/
 sage: nb.delete_worksheet('pub/0')
 sage: nb.save()

 Deleting a user:
 sage: nb.del_user('michael')
 sage: nb.save()

 2008/7/25 Thierry Dumont [EMAIL PROTECTED]:

 Hi,

 I have some questions about Sage management:

 1) How to suppress a user (created in the Notebook)
  -There is user_db.py in notebook/ with remove_user(self, user)
 but how to use it ?
 2) Is it possible to change the password of a user ?

 About published worksheets:

 3) How to suppress a published worksheet ?

 Thank you in advance.
 t.d.
 --

 Thierry Dumont. Institut Camille Jordan -- Mathematiques--
 Univ. Lyon I,43 Bd du 11 Novembre 1918, 69622
  - Villeurbanne Cedex - France.
 [EMAIL PROTECTED]  web: http://math.univ-lyon1.fr/~tdumont



 




-- 
William Stein
Associate Professor of Mathematics
University of Washington
http://wstein.org

--~--~-~--~~~---~--~~
To post to this group, send email to sage-support@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/sage-support
URLs: http://www.sagemath.org
-~--~~~~--~~--~--~---