Cuis installation instructions in Git repo issue

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
5 messages Options
Reply | Threaded
Open this post in threaded view
|

Cuis installation instructions in Git repo issue

stack
Hello.  I was trying to follow the instructions in the readme.md file in
the git repo (I am using Xubuntu 14.04 32-bit linux):

mkdir CuisDevelopment
cd CuisDevelopment
git clone https://github.com/Cuis-Smalltalk/Cuis-Smalltalk-Dev.git
Cuis-Smalltalk-Dev/bin/newImage.sh MyProject

The final line fails.  newImage.sh is not marked as an executable
(copyImage.sh is also not an executable, but getCog.sh is).  I chmod'ed
it, but it still fails with 'Image directory already exists'.

getCog.sh also fails (probably a version number issue) with tar: 'This
does not look like a tar archive'

Juan, you may want to take a look at it when you get a chance.  As they
say, you only have one chance to make a first impression...

Thanks


_______________________________________________
Cuis mailing list
[hidden email]
http://jvuletich.org/mailman/listinfo/cuis_jvuletich.org
Reply | Threaded
Open this post in threaded view
|

Help from Linux users wanted. (was Re: Cuis installation instructions in Git repo issue)

Juan Vuletich-4
Hi Folks,

On 6/2/2014 4:11 PM, [hidden email] wrote:

> Hello.  I was trying to follow the instructions in the readme.md file in
> the git repo (I am using Xubuntu 14.04 32-bit linux):
>
> mkdir CuisDevelopment
> cd CuisDevelopment
> git clone https://github.com/Cuis-Smalltalk/Cuis-Smalltalk-Dev.git
> Cuis-Smalltalk-Dev/bin/newImage.sh MyProject
>
> The final line fails.  newImage.sh is not marked as an executable
> (copyImage.sh is also not an executable, but getCog.sh is).  I chmod'ed
> it, but it still fails with 'Image directory already exists'.
>
> getCog.sh also fails (probably a version number issue) with tar: 'This
> does not look like a tar archive'
>
> Juan, you may want to take a look at it when you get a chance.  As they
> say, you only have one chance to make a first impression...
>
> Thanks
>

I'm not a real Linux user, so I need your help. I need you all Linux
users to review our setup instructions, and the ways for installing and
running an appropriate VM for Cuis. Please send to the list your recipes
for setting up a VM, including possible required libraries, etc. It
could be Eliot's Cog, squeakVM.org, or Pharo's. Any VM that runs is ok.
Send your instructions, specifying your Linux flavor and word size (32/64).

Or just check the instructions on GitHub, fix them, send pull requests, etc.

Most likely, I broke Unix file attributes while updating some file in
Windows. A pull request from Linux should fix it.

Please help me make the Cuis experience on Linux as smooth as it is on
Windows and Mac OS.

Thanks!
Juan Vuletich

_______________________________________________
Cuis mailing list
[hidden email]
http://jvuletich.org/mailman/listinfo/cuis_jvuletich.org
Reply | Threaded
Open this post in threaded view
|

Re: Help from Linux users wanted. (was Re: Cuis installation instructions in Git repo issue)

Bill Six-2
Juan,

Attached is a patch I used to get Cuis-Smalltalk-Dev.git running on Ubuntu 14.04 tonight.


  "sudo dpkg --add-architecture i386
 sudo apt-get update
 sudo apt-get install libc6:i386"
I needed to sudo apt-get install libsm6:i386 libuuid1:i386  libice6:i386.

Note that the VM directory changed from coglinux to nsvmlinux

Hope this helps.

Bill Six






On Mon, Jun 2, 2014 at 8:13 PM, Juan Vuletich <[hidden email]> wrote:
Hi Folks,

On 6/2/2014 4:11 PM, [hidden email] wrote:
Hello.  I was trying to follow the instructions in the readme.md file in
the git repo (I am using Xubuntu 14.04 32-bit linux):

mkdir CuisDevelopment
cd CuisDevelopment
git clone https://github.com/Cuis-Smalltalk/Cuis-Smalltalk-Dev.git
Cuis-Smalltalk-Dev/bin/newImage.sh MyProject

The final line fails.  newImage.sh is not marked as an executable
(copyImage.sh is also not an executable, but getCog.sh is).  I chmod'ed
it, but it still fails with 'Image directory already exists'.

getCog.sh also fails (probably a version number issue) with tar: 'This
does not look like a tar archive'

Juan, you may want to take a look at it when you get a chance.  As they
say, you only have one chance to make a first impression...

Thanks


I'm not a real Linux user, so I need your help. I need you all Linux users to review our setup instructions, and the ways for installing and running an appropriate VM for Cuis. Please send to the list your recipes for setting up a VM, including possible required libraries, etc. It could be Eliot's Cog, squeakVM.org, or Pharo's. Any VM that runs is ok. Send your instructions, specifying your Linux flavor and word size (32/64).

Or just check the instructions on GitHub, fix them, send pull requests, etc.

Most likely, I broke Unix file attributes while updating some file in Windows. A pull request from Linux should fix it.

Please help me make the Cuis experience on Linux as smooth as it is on Windows and Mac OS.

Thanks!
Juan Vuletich

_______________________________________________
Cuis mailing list
[hidden email]
http://jvuletich.org/mailman/listinfo/cuis_jvuletich.org


_______________________________________________
Cuis mailing list
[hidden email]
http://jvuletich.org/mailman/listinfo/cuis_jvuletich.org

ubuntu14.04.patch (2K) Download Attachment
Reply | Threaded
Open this post in threaded view
|

Re: Help from Linux users wanted. (was Re: Cuis installation instructions in Git repo issue)

David T. Lewis
In reply to this post by Juan Vuletich-4
On Mon, Jun 02, 2014 at 09:13:54PM -0300, Juan Vuletich wrote:

> Hi Folks,
>
> On 6/2/2014 4:11 PM, [hidden email] wrote:
> >Hello.  I was trying to follow the instructions in the readme.md file in
> >the git repo (I am using Xubuntu 14.04 32-bit linux):
> >
> >mkdir CuisDevelopment
> >cd CuisDevelopment
> >git clone https://github.com/Cuis-Smalltalk/Cuis-Smalltalk-Dev.git
> >Cuis-Smalltalk-Dev/bin/newImage.sh MyProject
> >
> >The final line fails.  newImage.sh is not marked as an executable
> >(copyImage.sh is also not an executable, but getCog.sh is).  I chmod'ed
> >it, but it still fails with 'Image directory already exists'.
> >
> >getCog.sh also fails (probably a version number issue) with tar: 'This
> >does not look like a tar archive'
> >
> >Juan, you may want to take a look at it when you get a chance.  As they
> >say, you only have one chance to make a first impression...
> >
> >Thanks
> >
>
> I'm not a real Linux user, so I need your help. I need you all Linux
> users to review our setup instructions, and the ways for installing and
> running an appropriate VM for Cuis. Please send to the list your recipes
> for setting up a VM, including possible required libraries, etc. It
> could be Eliot's Cog, squeakVM.org, or Pharo's. Any VM that runs is ok.
> Send your instructions, specifying your Linux flavor and word size (32/64).
>
> Or just check the instructions on GitHub, fix them, send pull requests, etc.
>
> Most likely, I broke Unix file attributes while updating some file in
> Windows. A pull request from Linux should fix it.
>
> Please help me make the Cuis experience on Linux as smooth as it is on
> Windows and Mac OS.
>

I usually use a locally compiled VM on my PC (personal preference), but
any of the VMs from squeakvm.org.unix (interpreter VM) or
http://www.mirandabanda.org/files/Cog/VM/ (Cog) are fine. The VM included
in the latest Squeak download is good also.

A VM installed from Ubuntu is not so good. This is not a supported Squeak
VM and it has problems on a 64-bit system for sure. I can't say if it works
on a 32-bit Ubuntu.

Dave


_______________________________________________
Cuis mailing list
[hidden email]
http://jvuletich.org/mailman/listinfo/cuis_jvuletich.org
Reply | Threaded
Open this post in threaded view
|

Re: Help from Linux users wanted. (was Re: Cuis installation instructions in Git repo issue)

garduino
I do the same approach than David, in particular, I use a precompiled Cog from Eliot's site.

Then I have the Git client and I get always updated Cuis images.

Is not a good idea install Squeak from the Linux repos.

My 0,02.



2014-06-03 7:47 GMT-03:00 David T. Lewis <[hidden email]>:
On Mon, Jun 02, 2014 at 09:13:54PM -0300, Juan Vuletich wrote:
> Hi Folks,
>
> On 6/2/2014 4:11 PM, [hidden email] wrote:
> >Hello.  I was trying to follow the instructions in the readme.md file in
> >the git repo (I am using Xubuntu 14.04 32-bit linux):
> >
> >mkdir CuisDevelopment
> >cd CuisDevelopment
> >git clone https://github.com/Cuis-Smalltalk/Cuis-Smalltalk-Dev.git
> >Cuis-Smalltalk-Dev/bin/newImage.sh MyProject
> >
> >The final line fails.  newImage.sh is not marked as an executable
> >(copyImage.sh is also not an executable, but getCog.sh is).  I chmod'ed
> >it, but it still fails with 'Image directory already exists'.
> >
> >getCog.sh also fails (probably a version number issue) with tar: 'This
> >does not look like a tar archive'
> >
> >Juan, you may want to take a look at it when you get a chance.  As they
> >say, you only have one chance to make a first impression...
> >
> >Thanks
> >
>
> I'm not a real Linux user, so I need your help. I need you all Linux
> users to review our setup instructions, and the ways for installing and
> running an appropriate VM for Cuis. Please send to the list your recipes
> for setting up a VM, including possible required libraries, etc. It
> could be Eliot's Cog, squeakVM.org, or Pharo's. Any VM that runs is ok.
> Send your instructions, specifying your Linux flavor and word size (32/64).
>
> Or just check the instructions on GitHub, fix them, send pull requests, etc.
>
> Most likely, I broke Unix file attributes while updating some file in
> Windows. A pull request from Linux should fix it.
>
> Please help me make the Cuis experience on Linux as smooth as it is on
> Windows and Mac OS.
>

I usually use a locally compiled VM on my PC (personal preference), but
any of the VMs from squeakvm.org.unix (interpreter VM) or
http://www.mirandabanda.org/files/Cog/VM/ (Cog) are fine. The VM included
in the latest Squeak download is good also.

A VM installed from Ubuntu is not so good. This is not a supported Squeak
VM and it has problems on a 64-bit system for sure. I can't say if it works
on a 32-bit Ubuntu.

Dave


_______________________________________________
Cuis mailing list
[hidden email]
http://jvuletich.org/mailman/listinfo/cuis_jvuletich.org



--
Saludos / Regards,
Germán Arduino
www.arduinosoftware.com

_______________________________________________
Cuis mailing list
[hidden email]
http://jvuletich.org/mailman/listinfo/cuis_jvuletich.org