[ANN] Squeak 5.1 Feature Freeze -- Trunk closed for new features; only bug fixes or text updates

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

Re: [Vm-dev] Re: [squeak-dev] [ANN] Squeak 5.1 Feature Freeze -- Trunk closed for new features; only bug fixes or text updates

Eliot Miranda-2
Hi Tim,

On Sun, Aug 14, 2016 at 11:44 AM, tim Rowledge <[hidden email]> wrote:


> On 14-08-2016, at 4:03 AM, Eliot Miranda <[hidden email]> wrote:
>
>
> Hi Tim,
>
>> On Aug 11, 2016, at 11:14 AM, tim Rowledge <[hidden email]> wrote:
> [snip]
>
>> The image is frikkin’ huge. How on earth do we have 22Mb of ByteArray/BitMap/ByteString around? And it looks like we are keeping a very large amount of MC stuff; 13018 instances of MCVersionInfo/MCVersionName/DateAndTime/Date/Time/UUID. Is that smart? Simply flushing the cached ancestry from the MC browser gets rid of 60% of them and appears to save 3Mb. Except the damn saved image afterwards is exactly the same size! Sigh.

Build a VMMaker image with image/buildspurtrunkvmmaker.sh and you can now use Spur32BitPreen to rewrite the image to be more compact.  We can use this as part of the release process until Clément and I have fixed Spur compaction.  e.g.

Spur32BitPreen new preenImage: '../oscogvm/image/trunk50'
Looking for module  ... loaded...computing accessor depths...done
Looking for module  ... loaded...computing accessor depths...done::::.............................................done.
old heap size: 41,897,472 initial new heap size: 26,818,472
change: -35.99%
final new heap size: 26,818,472 change: -35.99%

Done!
 
HTH
_,,,^..^,,,_
best, Eliot


Reply | Threaded
Open this post in threaded view
|

Re: Re: [Vm-dev] [squeak-dev] [ANN] Squeak 5.1 Feature Freeze -- Trunk closed for new features; only bug fixes or text updates

timrowledge

> On 15-08-2016, at 8:16 PM, Eliot Miranda <[hidden email]> wrote:

> final new heap size: 26,818,472 change: -35.99%
>

Excellent! I wonder if it’ll be friendly...


tim
--
tim Rowledge; [hidden email]; http://www.rowledge.org/tim
Useful Latin Phrases:- Mihi ignosce. Cum homine de cane debeo congredi = Excuse me. I've got to see a man about a dog.



Reply | Threaded
Open this post in threaded view
|

Re: [ANN] Squeak 5.1 Feature Freeze -- Trunk closed for new features; only bug fixes or text updates

Hannes Hirzel
In reply to this post by fniephaus
On 8/14/16, Fabio Niephaus <[hidden email]> wrote:
> Here are the helper functions I came up with for the squeak.sh launcher to
> ensure that the kernel is newer than 2.6.12 and that a squeak.conf exists:
> https://gist.github.com/fniephaus/84dc1e065b2694cf9beafed5920f8cfe
>
> Best,
> Fabio

I added the calls to the two functions to helpers.sh

It works but needs sudo permission which is normally not given. So
some tweaking is needed.


THIS DOES NOT WORK
user8@user8-Latitude:~$ ./helpers.sh
./helpers.sh: line 17: \: command not found
/etc/security/limits.d/squeak.conf is missing. Do you want to create
one? This operation requires sudo permissions. (y/N): y
You may be asked to enter your password...
./helpers.sh: line 32: /etc/security/limits.d/squeak.conf: Permission denied
Done! Please log out and log back in before you try again.
user8@user8-Latitude:~$

THIS IS FINE
 sudo ./helpers.sh
[sudo] password for user8:
./helpers.sh: line 17: \: command not found
/etc/security/limits.d/squeak.conf is missing. Do you want to create
one? This operation requires sudo permissions. (y/N): y
You may be asked to enter your password...
Done! Please log out and log back in before you try again.
user8@user8-Latitude:~$

--Hannes

> --
>
> On Sun, Aug 14, 2016 at 11:03 PM H. Hirzel <[hidden email]> wrote:
>
>> For the case I reported
>>
>>     uname -r
>>
>> gives
>>
>>     3.19.0-25-generic
>>
>> for the kernel version
>>
>> --Hannes
>>
>> On 8/14/16, Levente Uzonyi <[hidden email]> wrote:
>> > On Sun, 14 Aug 2016, tim Rowledge wrote:
>> >
>> >>
>> >>> On 14-08-2016, at 12:43 AM, H. Hirzel <[hidden email]>
>> >>> wrote:
>> >>>
>> >>> Hello Levente
>> >>>
>> >>> The following on  did the job. The 64bit all-in-one runs fine on
>> >>> Ubuntu
>> >>> 14.04.1.
>> >>
>> >> I guess an obvious question here is why on earth ubuntu is using such
>> >> an
>> >> old kernel. Raspbian (based on debian and so very conservative) got
>> >> past
>> >> that point at least 18 months ago.
>> >
>> > It doesn't. 14.04 uses 3.13 by default, but you can install 4.2 o 4.4
>> > if
>> > you want to.
>> >
>> > Levente
>> >
>> >>
>> >>
>> >> tim
>> >> --
>> >> tim Rowledge; [hidden email]; http://www.rowledge.org/tim
>> >> Strange OpCodes: BBL: Branch on Burned out Light
>> >>
>> >>
>> >>
>> >>
>> >
>> >
>>
>>
>

Reply | Threaded
Open this post in threaded view
|

Re: [ANN] Squeak 5.1 Feature Freeze -- Trunk closed for new features; only bug fixes or text updates

fniephaus

--

On Tue, Aug 16, 2016 at 2:07 PM H. Hirzel <[hidden email]> wrote:
On 8/14/16, Fabio Niephaus <[hidden email]> wrote:
> Here are the helper functions I came up with for the squeak.sh launcher to
> ensure that the kernel is newer than 2.6.12 and that a squeak.conf exists:
> https://gist.github.com/fniephaus/84dc1e065b2694cf9beafed5920f8cfe
>
> Best,
> Fabio

I added the calls to the two functions to helpers.sh

It works but needs sudo permission which is normally not given. So
some tweaking is needed.


THIS DOES NOT WORK
user8@user8-Latitude:~$ ./helpers.sh
./helpers.sh: line 17: \: command not found
/etc/security/limits.d/squeak.conf is missing. Do you want to create
one? This operation requires sudo permissions. (y/N): y
You may be asked to enter your password...
./helpers.sh: line 32: /etc/security/limits.d/squeak.conf: Permission denied
Done! Please log out and log back in before you try again.
user8@user8-Latitude:~$

THIS IS FINE
 sudo ./helpers.sh
[sudo] password for user8:
./helpers.sh: line 17: \: command not found
/etc/security/limits.d/squeak.conf is missing. Do you want to create
one? This operation requires sudo permissions. (y/N): y
You may be asked to enter your password...
Done! Please log out and log back in before you try again.
user8@user8-Latitude:~$

Thanks for the feedback, Hannes.
I've already fixed and tested this on Linux (see [1]), but I forgot to update the gist which I just did.
The newer version now uses `sudo tee -a`.

Thanks again,
Fabio

 

--Hannes

> --
>
> On Sun, Aug 14, 2016 at 11:03 PM H. Hirzel <[hidden email]> wrote:
>
>> For the case I reported
>>
>>     uname -r
>>
>> gives
>>
>>     3.19.0-25-generic
>>
>> for the kernel version
>>
>> --Hannes
>>
>> On 8/14/16, Levente Uzonyi <[hidden email]> wrote:
>> > On Sun, 14 Aug 2016, tim Rowledge wrote:
>> >
>> >>
>> >>> On 14-08-2016, at 12:43 AM, H. Hirzel <[hidden email]>
>> >>> wrote:
>> >>>
>> >>> Hello Levente
>> >>>
>> >>> The following on  did the job. The 64bit all-in-one runs fine on
>> >>> Ubuntu
>> >>> 14.04.1.
>> >>
>> >> I guess an obvious question here is why on earth ubuntu is using such
>> >> an
>> >> old kernel. Raspbian (based on debian and so very conservative) got
>> >> past
>> >> that point at least 18 months ago.
>> >
>> > It doesn't. 14.04 uses 3.13 by default, but you can install 4.2 o 4.4
>> > if
>> > you want to.
>> >
>> > Levente
>> >
>> >>
>> >>
>> >> tim
>> >> --
>> >> tim Rowledge; [hidden email]; http://www.rowledge.org/tim
>> >> Strange OpCodes: BBL: Branch on Burned out Light
>> >>
>> >>
>> >>
>> >>
>> >
>> >
>>
>>
>



Reply | Threaded
Open this post in threaded view
|

Re: [ANN] Squeak 5.1 Feature Freeze -- Trunk closed for new features; only bug fixes or text updates

Hannes Hirzel
A minor bug:

If I open

'Help menu'  -> 'Squeak Help'

then choose 'The Project' -> 'Extending the system'

and click on 'SqueakMap'

the SqueakMap window opens _behind_ the 'Help window'

-----
/home/user/sq5.1.beta/Squeak5.1beta-16420-32bit-r3397-All-in-One.app/Contents/Resources/Squeak5.1beta-16420-32bit.image
Squeak5.1beta
latest update: #16506
Current Change Set: Unnamed1
Image format 6521 (32 bit)
--

--Hannes

On 8/16/16, Fabio Niephaus <[hidden email]> wrote:

> --
>
> On Tue, Aug 16, 2016 at 2:07 PM H. Hirzel <[hidden email]> wrote:
>
>> On 8/14/16, Fabio Niephaus <[hidden email]> wrote:
>> > Here are the helper functions I came up with for the squeak.sh launcher
>> to
>> > ensure that the kernel is newer than 2.6.12 and that a squeak.conf
>> exists:
>> > https://gist.github.com/fniephaus/84dc1e065b2694cf9beafed5920f8cfe
>> >
>> > Best,
>> > Fabio
>>
>> I added the calls to the two functions to helpers.sh
>>
>> It works but needs sudo permission which is normally not given. So
>> some tweaking is needed.
>>
>>
>> THIS DOES NOT WORK
>> user8@user8-Latitude:~$ ./helpers.sh
>> ./helpers.sh: line 17: \: command not found
>> /etc/security/limits.d/squeak.conf is missing. Do you want to create
>> one? This operation requires sudo permissions. (y/N): y
>> You may be asked to enter your password...
>> ./helpers.sh: line 32: /etc/security/limits.d/squeak.conf: Permission
>> denied
>> Done! Please log out and log back in before you try again.
>> user8@user8-Latitude:~$
>>
>> THIS IS FINE
>>  sudo ./helpers.sh
>> [sudo] password for user8:
>> ./helpers.sh: line 17: \: command not found
>> /etc/security/limits.d/squeak.conf is missing. Do you want to create
>> one? This operation requires sudo permissions. (y/N): y
>> You may be asked to enter your password...
>> Done! Please log out and log back in before you try again.
>> user8@user8-Latitude:~$
>>
>
> Thanks for the feedback, Hannes.
> I've already fixed and tested this on Linux (see [1]), but I forgot to
> update the gist which I just did.
> The newer version now uses `sudo tee -a`.
>
> Thanks again,
> Fabio
>
> [1]
> https://github.com/squeak-smalltalk/squeak-app/commit/4e83cc33b65f4222c1fed778d200d578af5d941a
>
>
>>
>> --Hannes
>>
>> > --
>> >
>> > On Sun, Aug 14, 2016 at 11:03 PM H. Hirzel <[hidden email]>
>> wrote:
>> >
>> >> For the case I reported
>> >>
>> >>     uname -r
>> >>
>> >> gives
>> >>
>> >>     3.19.0-25-generic
>> >>
>> >> for the kernel version
>> >>
>> >> --Hannes
>> >>
>> >> On 8/14/16, Levente Uzonyi <[hidden email]> wrote:
>> >> > On Sun, 14 Aug 2016, tim Rowledge wrote:
>> >> >
>> >> >>
>> >> >>> On 14-08-2016, at 12:43 AM, H. Hirzel <[hidden email]>
>> >> >>> wrote:
>> >> >>>
>> >> >>> Hello Levente
>> >> >>>
>> >> >>> The following on  did the job. The 64bit all-in-one runs fine on
>> >> >>> Ubuntu
>> >> >>> 14.04.1.
>> >> >>
>> >> >> I guess an obvious question here is why on earth ubuntu is using
>> >> >> such
>> >> >> an
>> >> >> old kernel. Raspbian (based on debian and so very conservative) got
>> >> >> past
>> >> >> that point at least 18 months ago.
>> >> >
>> >> > It doesn't. 14.04 uses 3.13 by default, but you can install 4.2 o
>> >> > 4.4
>> >> > if
>> >> > you want to.
>> >> >
>> >> > Levente
>> >> >
>> >> >>
>> >> >>
>> >> >> tim
>> >> >> --
>> >> >> tim Rowledge; [hidden email]; http://www.rowledge.org/tim
>> >> >> Strange OpCodes: BBL: Branch on Burned out Light
>> >> >>
>> >> >>
>> >> >>
>> >> >>
>> >> >
>> >> >
>> >>
>> >>
>> >
>>
>>
>

Reply | Threaded
Open this post in threaded view
|

Re: [ANN] Squeak 5.1 Feature Freeze -- Trunk closed for new features; only bug fixes or text updates

marcel.taeumel
Hannes Hirzel wrote
A minor bug:

If I open

'Help menu'  -> 'Squeak Help'

then choose 'The Project' -> 'Extending the system'

and click on 'SqueakMap'

the SqueakMap window opens _behind_ the 'Help window'

-----
/home/user/sq5.1.beta/Squeak5.1beta-16420-32bit-r3397-All-in-One.app/Contents/Resources/Squeak5.1beta-16420-32bit.image
Squeak5.1beta
latest update: #16506
Current Change Set: Unnamed1
Image format 6521 (32 bit)
--

--Hannes

On 8/16/16, Fabio Niephaus <[hidden email]> wrote:
> --
>
> On Tue, Aug 16, 2016 at 2:07 PM H. Hirzel <[hidden email]> wrote:
>
>> On 8/14/16, Fabio Niephaus <[hidden email]> wrote:
>> > Here are the helper functions I came up with for the squeak.sh launcher
>> to
>> > ensure that the kernel is newer than 2.6.12 and that a squeak.conf
>> exists:
>> > https://gist.github.com/fniephaus/84dc1e065b2694cf9beafed5920f8cfe
>> >
>> > Best,
>> > Fabio
>>
>> I added the calls to the two functions to helpers.sh
>>
>> It works but needs sudo permission which is normally not given. So
>> some tweaking is needed.
>>
>>
>> THIS DOES NOT WORK
>> user8@user8-Latitude:~$ ./helpers.sh
>> ./helpers.sh: line 17: \: command not found
>> /etc/security/limits.d/squeak.conf is missing. Do you want to create
>> one? This operation requires sudo permissions. (y/N): y
>> You may be asked to enter your password...
>> ./helpers.sh: line 32: /etc/security/limits.d/squeak.conf: Permission
>> denied
>> Done! Please log out and log back in before you try again.
>> user8@user8-Latitude:~$
>>
>> THIS IS FINE
>>  sudo ./helpers.sh
>> [sudo] password for user8:
>> ./helpers.sh: line 17: \: command not found
>> /etc/security/limits.d/squeak.conf is missing. Do you want to create
>> one? This operation requires sudo permissions. (y/N): y
>> You may be asked to enter your password...
>> Done! Please log out and log back in before you try again.
>> user8@user8-Latitude:~$
>>
>
> Thanks for the feedback, Hannes.
> I've already fixed and tested this on Linux (see [1]), but I forgot to
> update the gist which I just did.
> The newer version now uses `sudo tee -a`.
>
> Thanks again,
> Fabio
>
> [1]
> https://github.com/squeak-smalltalk/squeak-app/commit/4e83cc33b65f4222c1fed778d200d578af5d941a
>
>
>>
>> --Hannes
>>
>> > --
>> >
>> > On Sun, Aug 14, 2016 at 11:03 PM H. Hirzel <[hidden email]>
>> wrote:
>> >
>> >> For the case I reported
>> >>
>> >>     uname -r
>> >>
>> >> gives
>> >>
>> >>     3.19.0-25-generic
>> >>
>> >> for the kernel version
>> >>
>> >> --Hannes
>> >>
>> >> On 8/14/16, Levente Uzonyi <[hidden email]> wrote:
>> >> > On Sun, 14 Aug 2016, tim Rowledge wrote:
>> >> >
>> >> >>
>> >> >>> On 14-08-2016, at 12:43 AM, H. Hirzel <[hidden email]>
>> >> >>> wrote:
>> >> >>>
>> >> >>> Hello Levente
>> >> >>>
>> >> >>> The following on  did the job. The 64bit all-in-one runs fine on
>> >> >>> Ubuntu
>> >> >>> 14.04.1.
>> >> >>
>> >> >> I guess an obvious question here is why on earth ubuntu is using
>> >> >> such
>> >> >> an
>> >> >> old kernel. Raspbian (based on debian and so very conservative) got
>> >> >> past
>> >> >> that point at least 18 months ago.
>> >> >
>> >> > It doesn't. 14.04 uses 3.13 by default, but you can install 4.2 o
>> >> > 4.4
>> >> > if
>> >> > you want to.
>> >> >
>> >> > Levente
>> >> >
>> >> >>
>> >> >>
>> >> >> tim
>> >> >> --
>> >> >> tim Rowledge; [hidden email]; http://www.rowledge.org/tim
>> >> >> Strange OpCodes: BBL: Branch on Burned out Light
>> >> >>
>> >> >>
>> >> >>
>> >> >>
>> >> >
>> >> >
>> >>
>> >>
>> >
>>
>>
>
Hi Hannes,

should work now: http://forum.world.st/The-Trunk-Collections-mt-712-mcz-tp4911564.html

Best,
Marcel
Reply | Threaded
Open this post in threaded view
|

Re: [ANN] Squeak 5.1 Feature Freeze -- Trunk closed for new features; only bug fixes or text updates

Hannes Hirzel
Hello Marcel

Unfortunately it is not an improvement. It now does not work at all.

And the links on the 'Welcome' page are no longer working either.

--Hannes

On 8/17/16, marcel.taeumel <[hidden email]> wrote:

> Hannes Hirzel wrote
>> A minor bug:
>>
>> If I open
>>
>> 'Help menu'  -> 'Squeak Help'
>>
>> then choose 'The Project' -> 'Extending the system'
>>
>> and click on 'SqueakMap'
>>
>> the SqueakMap window opens _behind_ the 'Help window'
>>
>> -----
>> /home/user/sq5.1.beta/Squeak5.1beta-16420-32bit-r3397-All-in-One.app/Contents/Resources/Squeak5.1beta-16420-32bit.image
>> Squeak5.1beta
>> latest update: #16506
>> Current Change Set: Unnamed1
>> Image format 6521 (32 bit)
>> --
>>
>> --Hannes
>>
>> On 8/16/16, Fabio Niephaus &lt;
>
>> lists@
>
>> &gt; wrote:
>>> --
>>>
>>> On Tue, Aug 16, 2016 at 2:07 PM H. Hirzel &lt;
>
>> hannes.hirzel@
>
>> &gt; wrote:
>>>
>>>> On 8/14/16, Fabio Niephaus &lt;
>
>> lists@
>
>> &gt; wrote:
>>>> > Here are the helper functions I came up with for the squeak.sh
>>>> launcher
>>>> to
>>>> > ensure that the kernel is newer than 2.6.12 and that a squeak.conf
>>>> exists:
>>>> > https://gist.github.com/fniephaus/84dc1e065b2694cf9beafed5920f8cfe
>>>> >
>>>> > Best,
>>>> > Fabio
>>>>
>>>> I added the calls to the two functions to helpers.sh
>>>>
>>>> It works but needs sudo permission which is normally not given. So
>>>> some tweaking is needed.
>>>>
>>>>
>>>> THIS DOES NOT WORK
>>>> user8@user8-Latitude:~$ ./helpers.sh
>>>> ./helpers.sh: line 17: \: command not found
>>>> /etc/security/limits.d/squeak.conf is missing. Do you want to create
>>>> one? This operation requires sudo permissions. (y/N): y
>>>> You may be asked to enter your password...
>>>> ./helpers.sh: line 32: /etc/security/limits.d/squeak.conf: Permission
>>>> denied
>>>> Done! Please log out and log back in before you try again.
>>>> user8@user8-Latitude:~$
>>>>
>>>> THIS IS FINE
>>>>  sudo ./helpers.sh
>>>> [sudo] password for user8:
>>>> ./helpers.sh: line 17: \: command not found
>>>> /etc/security/limits.d/squeak.conf is missing. Do you want to create
>>>> one? This operation requires sudo permissions. (y/N): y
>>>> You may be asked to enter your password...
>>>> Done! Please log out and log back in before you try again.
>>>> user8@user8-Latitude:~$
>>>>
>>>
>>> Thanks for the feedback, Hannes.
>>> I've already fixed and tested this on Linux (see [1]), but I forgot to
>>> update the gist which I just did.
>>> The newer version now uses `sudo tee -a`.
>>>
>>> Thanks again,
>>> Fabio
>>>
>>> [1]
>>> https://github.com/squeak-smalltalk/squeak-app/commit/4e83cc33b65f4222c1fed778d200d578af5d941a
>>>
>>>
>>>>
>>>> --Hannes
>>>>
>>>> > --
>>>> >
>>>> > On Sun, Aug 14, 2016 at 11:03 PM H. Hirzel &lt;
>
>> hannes.hirzel@
>
>> &gt;
>>>> wrote:
>>>> >
>>>> >> For the case I reported
>>>> >>
>>>> >>     uname -r
>>>> >>
>>>> >> gives
>>>> >>
>>>> >>     3.19.0-25-generic
>>>> >>
>>>> >> for the kernel version
>>>> >>
>>>> >> --Hannes
>>>> >>
>>>> >> On 8/14/16, Levente Uzonyi &lt;
>
>> leves@.elte
>
>> &gt; wrote:
>>>> >> > On Sun, 14 Aug 2016, tim Rowledge wrote:
>>>> >> >
>>>> >> >>
>>>> >> >>> On 14-08-2016, at 12:43 AM, H. Hirzel &lt;
>
>> hannes.hirzel@
>
>> &gt;
>>>> >> >>> wrote:
>>>> >> >>>
>>>> >> >>> Hello Levente
>>>> >> >>>
>>>> >> >>> The following on  did the job. The 64bit all-in-one runs fine on
>>>> >> >>> Ubuntu
>>>> >> >>> 14.04.1.
>>>> >> >>
>>>> >> >> I guess an obvious question here is why on earth ubuntu is using
>>>> >> >> such
>>>> >> >> an
>>>> >> >> old kernel. Raspbian (based on debian and so very conservative)
>>>> got
>>>> >> >> past
>>>> >> >> that point at least 18 months ago.
>>>> >> >
>>>> >> > It doesn't. 14.04 uses 3.13 by default, but you can install 4.2 o
>>>> >> > 4.4
>>>> >> > if
>>>> >> > you want to.
>>>> >> >
>>>> >> > Levente
>>>> >> >
>>>> >> >>
>>>> >> >>
>>>> >> >> tim
>>>> >> >> --
>>>> >> >> tim Rowledge;
>
>> tim@
>
>> ; http://www.rowledge.org/tim
>>>> >> >> Strange OpCodes: BBL: Branch on Burned out Light
>>>> >> >>
>>>> >> >>
>>>> >> >>
>>>> >> >>
>>>> >> >
>>>> >> >
>>>> >>
>>>> >>
>>>> >
>>>>
>>>>
>>>
>
> Hi Hannes,
>
> should work now:
> http://forum.world.st/The-Trunk-Collections-mt-712-mcz-tp4911564.html
>
> Best,
> Marcel
>
>
>
> --
> View this message in context:
> http://forum.world.st/ANN-Squeak-5-1-Feature-Freeze-Trunk-closed-for-new-features-only-bug-fixes-or-text-updates-tp4909004p4911565.html
> Sent from the Squeak - Dev mailing list archive at Nabble.com.
>
>

Reply | Threaded
Open this post in threaded view
|

Re: [ANN] Squeak 5.1 Feature Freeze -- Trunk closed for new features; only bug fixes or text updates

marcel.taeumel
Hannes Hirzel wrote
Hello Marcel

Unfortunately it is not an improvement. It now does not work at all.

And the links on the 'Welcome' page are no longer working either.

--Hannes

On 8/17/16, marcel.taeumel <[hidden email]> wrote:
> Hannes Hirzel wrote
>> A minor bug:
>>
>> If I open
>>
>> 'Help menu'  -> 'Squeak Help'
>>
>> then choose 'The Project' -> 'Extending the system'
>>
>> and click on 'SqueakMap'
>>
>> the SqueakMap window opens _behind_ the 'Help window'
>>
>> -----
>> /home/user/sq5.1.beta/Squeak5.1beta-16420-32bit-r3397-All-in-One.app/Contents/Resources/Squeak5.1beta-16420-32bit.image
>> Squeak5.1beta
>> latest update: #16506
>> Current Change Set: Unnamed1
>> Image format 6521 (32 bit)
>> --
>>
>> --Hannes
>>
>> On 8/16/16, Fabio Niephaus <
>
>> lists@
>
>> > wrote:
>>> --
>>>
>>> On Tue, Aug 16, 2016 at 2:07 PM H. Hirzel <
>
>> hannes.hirzel@
>
>> > wrote:
>>>
>>>> On 8/14/16, Fabio Niephaus <
>
>> lists@
>
>> > wrote:
>>>> > Here are the helper functions I came up with for the squeak.sh
>>>> launcher
>>>> to
>>>> > ensure that the kernel is newer than 2.6.12 and that a squeak.conf
>>>> exists:
>>>> > https://gist.github.com/fniephaus/84dc1e065b2694cf9beafed5920f8cfe
>>>> >
>>>> > Best,
>>>> > Fabio
>>>>
>>>> I added the calls to the two functions to helpers.sh
>>>>
>>>> It works but needs sudo permission which is normally not given. So
>>>> some tweaking is needed.
>>>>
>>>>
>>>> THIS DOES NOT WORK
>>>> user8@user8-Latitude:~$ ./helpers.sh
>>>> ./helpers.sh: line 17: \: command not found
>>>> /etc/security/limits.d/squeak.conf is missing. Do you want to create
>>>> one? This operation requires sudo permissions. (y/N): y
>>>> You may be asked to enter your password...
>>>> ./helpers.sh: line 32: /etc/security/limits.d/squeak.conf: Permission
>>>> denied
>>>> Done! Please log out and log back in before you try again.
>>>> user8@user8-Latitude:~$
>>>>
>>>> THIS IS FINE
>>>>  sudo ./helpers.sh
>>>> [sudo] password for user8:
>>>> ./helpers.sh: line 17: \: command not found
>>>> /etc/security/limits.d/squeak.conf is missing. Do you want to create
>>>> one? This operation requires sudo permissions. (y/N): y
>>>> You may be asked to enter your password...
>>>> Done! Please log out and log back in before you try again.
>>>> user8@user8-Latitude:~$
>>>>
>>>
>>> Thanks for the feedback, Hannes.
>>> I've already fixed and tested this on Linux (see [1]), but I forgot to
>>> update the gist which I just did.
>>> The newer version now uses `sudo tee -a`.
>>>
>>> Thanks again,
>>> Fabio
>>>
>>> [1]
>>> https://github.com/squeak-smalltalk/squeak-app/commit/4e83cc33b65f4222c1fed778d200d578af5d941a
>>>
>>>
>>>>
>>>> --Hannes
>>>>
>>>> > --
>>>> >
>>>> > On Sun, Aug 14, 2016 at 11:03 PM H. Hirzel <
>
>> hannes.hirzel@
>
>> >
>>>> wrote:
>>>> >
>>>> >> For the case I reported
>>>> >>
>>>> >>     uname -r
>>>> >>
>>>> >> gives
>>>> >>
>>>> >>     3.19.0-25-generic
>>>> >>
>>>> >> for the kernel version
>>>> >>
>>>> >> --Hannes
>>>> >>
>>>> >> On 8/14/16, Levente Uzonyi <
>
>> leves@.elte
>
>> > wrote:
>>>> >> > On Sun, 14 Aug 2016, tim Rowledge wrote:
>>>> >> >
>>>> >> >>
>>>> >> >>> On 14-08-2016, at 12:43 AM, H. Hirzel <
>
>> hannes.hirzel@
>
>> >
>>>> >> >>> wrote:
>>>> >> >>>
>>>> >> >>> Hello Levente
>>>> >> >>>
>>>> >> >>> The following on  did the job. The 64bit all-in-one runs fine on
>>>> >> >>> Ubuntu
>>>> >> >>> 14.04.1.
>>>> >> >>
>>>> >> >> I guess an obvious question here is why on earth ubuntu is using
>>>> >> >> such
>>>> >> >> an
>>>> >> >> old kernel. Raspbian (based on debian and so very conservative)
>>>> got
>>>> >> >> past
>>>> >> >> that point at least 18 months ago.
>>>> >> >
>>>> >> > It doesn't. 14.04 uses 3.13 by default, but you can install 4.2 o
>>>> >> > 4.4
>>>> >> > if
>>>> >> > you want to.
>>>> >> >
>>>> >> > Levente
>>>> >> >
>>>> >> >>
>>>> >> >>
>>>> >> >> tim
>>>> >> >> --
>>>> >> >> tim Rowledge;
>
>> tim@
>
>> ; http://www.rowledge.org/tim
>>>> >> >> Strange OpCodes: BBL: Branch on Burned out Light
>>>> >> >>
>>>> >> >>
>>>> >> >>
>>>> >> >>
>>>> >> >
>>>> >> >
>>>> >>
>>>> >>
>>>> >
>>>>
>>>>
>>>
>
> Hi Hannes,
>
> should work now:
> http://forum.world.st/The-Trunk-Collections-mt-712-mcz-tp4911564.html
>
> Best,
> Marcel
>
>
>
> --
> View this message in context:
> http://forum.world.st/ANN-Squeak-5-1-Feature-Freeze-Trunk-closed-for-new-features-only-bug-fixes-or-text-updates-tp4909004p4911565.html
> Sent from the Squeak - Dev mailing list archive at Nabble.com.
>
>
Hi Hannes,

there was no change to the links on the welcome page. Those are TextURL and no TextDoit.

Best,
Marcel
Reply | Threaded
Open this post in threaded view
|

Re: [ANN] Squeak 5.1 Feature Freeze -- Trunk closed for new features; only bug fixes or text updates

Hannes Hirzel
To be more precise:

The windows open but not in the current project. They open in the
project from which I called the menu entry 'Squeak' -> 'Update
Squeak'.

On 8/17/16, marcel.taeumel <[hidden email]> wrote:

> Hannes Hirzel wrote
>> Hello Marcel
>>
>> Unfortunately it is not an improvement. It now does not work at all.
>>
>> And the links on the 'Welcome' page are no longer working either.
>>
>> --Hannes
>>
>> On 8/17/16, marcel.taeumel &lt;
>
>> Marcel.Taeumel@
>
>> &gt; wrote:
>>> Hannes Hirzel wrote
>>>> A minor bug:
>>>>
>>>> If I open
>>>>
>>>> 'Help menu'  -> 'Squeak Help'
>>>>
>>>> then choose 'The Project' -> 'Extending the system'
>>>>
>>>> and click on 'SqueakMap'
>>>>
>>>> the SqueakMap window opens _behind_ the 'Help window'
>>>>
>>>> -----
>>>> /home/user/sq5.1.beta/Squeak5.1beta-16420-32bit-r3397-All-in-One.app/Contents/Resources/Squeak5.1beta-16420-32bit.image
>>>> Squeak5.1beta
>>>> latest update: #16506
>>>> Current Change Set: Unnamed1
>>>> Image format 6521 (32 bit)
>>>> --
>>>>
>>>> --Hannes
>>>>
>>>> On 8/16/16, Fabio Niephaus &lt;
>>>
>>>> lists@
>>>
>>>> &gt; wrote:
>>>>> --
>>>>>
>>>>> On Tue, Aug 16, 2016 at 2:07 PM H. Hirzel &lt;
>>>
>>>> hannes.hirzel@
>>>
>>>> &gt; wrote:
>>>>>
>>>>>> On 8/14/16, Fabio Niephaus &lt;
>>>
>>>> lists@
>>>
>>>> &gt; wrote:
>>>>>> > Here are the helper functions I came up with for the squeak.sh
>>>>>> launcher
>>>>>> to
>>>>>> > ensure that the kernel is newer than 2.6.12 and that a squeak.conf
>>>>>> exists:
>>>>>> > https://gist.github.com/fniephaus/84dc1e065b2694cf9beafed5920f8cfe
>>>>>> >
>>>>>> > Best,
>>>>>> > Fabio
>>>>>>
>>>>>> I added the calls to the two functions to helpers.sh
>>>>>>
>>>>>> It works but needs sudo permission which is normally not given. So
>>>>>> some tweaking is needed.
>>>>>>
>>>>>>
>>>>>> THIS DOES NOT WORK
>>>>>> user8@user8-Latitude:~$ ./helpers.sh
>>>>>> ./helpers.sh: line 17: \: command not found
>>>>>> /etc/security/limits.d/squeak.conf is missing. Do you want to create
>>>>>> one? This operation requires sudo permissions. (y/N): y
>>>>>> You may be asked to enter your password...
>>>>>> ./helpers.sh: line 32: /etc/security/limits.d/squeak.conf: Permission
>>>>>> denied
>>>>>> Done! Please log out and log back in before you try again.
>>>>>> user8@user8-Latitude:~$
>>>>>>
>>>>>> THIS IS FINE
>>>>>>  sudo ./helpers.sh
>>>>>> [sudo] password for user8:
>>>>>> ./helpers.sh: line 17: \: command not found
>>>>>> /etc/security/limits.d/squeak.conf is missing. Do you want to create
>>>>>> one? This operation requires sudo permissions. (y/N): y
>>>>>> You may be asked to enter your password...
>>>>>> Done! Please log out and log back in before you try again.
>>>>>> user8@user8-Latitude:~$
>>>>>>
>>>>>
>>>>> Thanks for the feedback, Hannes.
>>>>> I've already fixed and tested this on Linux (see [1]), but I forgot to
>>>>> update the gist which I just did.
>>>>> The newer version now uses `sudo tee -a`.
>>>>>
>>>>> Thanks again,
>>>>> Fabio
>>>>>
>>>>> [1]
>>>>> https://github.com/squeak-smalltalk/squeak-app/commit/4e83cc33b65f4222c1fed778d200d578af5d941a
>>>>>
>>>>>
>>>>>>
>>>>>> --Hannes
>>>>>>
>>>>>> > --
>>>>>> >
>>>>>> > On Sun, Aug 14, 2016 at 11:03 PM H. Hirzel &lt;
>>>
>>>> hannes.hirzel@
>>>
>>>> &gt;
>>>>>> wrote:
>>>>>> >
>>>>>> >> For the case I reported
>>>>>> >>
>>>>>> >>     uname -r
>>>>>> >>
>>>>>> >> gives
>>>>>> >>
>>>>>> >>     3.19.0-25-generic
>>>>>> >>
>>>>>> >> for the kernel version
>>>>>> >>
>>>>>> >> --Hannes
>>>>>> >>
>>>>>> >> On 8/14/16, Levente Uzonyi &lt;
>>>
>>>> leves@.elte
>>>
>>>> &gt; wrote:
>>>>>> >> > On Sun, 14 Aug 2016, tim Rowledge wrote:
>>>>>> >> >
>>>>>> >> >>
>>>>>> >> >>> On 14-08-2016, at 12:43 AM, H. Hirzel &lt;
>>>
>>>> hannes.hirzel@
>>>
>>>> &gt;
>>>>>> >> >>> wrote:
>>>>>> >> >>>
>>>>>> >> >>> Hello Levente
>>>>>> >> >>>
>>>>>> >> >>> The following on  did the job. The 64bit all-in-one runs fine
>>>>>> on
>>>>>> >> >>> Ubuntu
>>>>>> >> >>> 14.04.1.
>>>>>> >> >>
>>>>>> >> >> I guess an obvious question here is why on earth ubuntu is
>>>>>> >> >> using
>>>>>> >> >> such
>>>>>> >> >> an
>>>>>> >> >> old kernel. Raspbian (based on debian and so very conservative)
>>>>>> got
>>>>>> >> >> past
>>>>>> >> >> that point at least 18 months ago.
>>>>>> >> >
>>>>>> >> > It doesn't. 14.04 uses 3.13 by default, but you can install 4.2
>>>>>> >> > o
>>>>>> >> > 4.4
>>>>>> >> > if
>>>>>> >> > you want to.
>>>>>> >> >
>>>>>> >> > Levente
>>>>>> >> >
>>>>>> >> >>
>>>>>> >> >>
>>>>>> >> >> tim
>>>>>> >> >> --
>>>>>> >> >> tim Rowledge;
>>>
>>>> tim@
>>>
>>>> ; http://www.rowledge.org/tim
>>>>>> >> >> Strange OpCodes: BBL: Branch on Burned out Light
>>>>>> >> >>
>>>>>> >> >>
>>>>>> >> >>
>>>>>> >> >>
>>>>>> >> >
>>>>>> >> >
>>>>>> >>
>>>>>> >>
>>>>>> >
>>>>>>
>>>>>>
>>>>>
>>>
>>> Hi Hannes,
>>>
>>> should work now:
>>> http://forum.world.st/The-Trunk-Collections-mt-712-mcz-tp4911564.html
>>>
>>> Best,
>>> Marcel
>>>
>>>
>>>
>>> --
>>> View this message in context:
>>> http://forum.world.st/ANN-Squeak-5-1-Feature-Freeze-Trunk-closed-for-new-features-only-bug-fixes-or-text-updates-tp4909004p4911565.html
>>> Sent from the Squeak - Dev mailing list archive at Nabble.com.
>>>
>>>
>
> Hi Hannes,
>
> there was no change to the links on the welcome page. Those are TextURL and
> no TextDoit.
>
> Best,
> Marcel
>
>
>
> --
> View this message in context:
> http://forum.world.st/ANN-Squeak-5-1-Feature-Freeze-Trunk-closed-for-new-features-only-bug-fixes-or-text-updates-tp4909004p4911572.html
> Sent from the Squeak - Dev mailing list archive at Nabble.com.
>
>

Reply | Threaded
Open this post in threaded view
|

Re: [ANN] Squeak 5.1 Feature Freeze -- Trunk closed for new features; only bug fixes or text updates

marcel.taeumel
Hannes Hirzel wrote
To be more precise:

The windows open but not in the current project. They open in the
project from which I called the menu entry 'Squeak' -> 'Update
Squeak'.

On 8/17/16, marcel.taeumel <[hidden email]> wrote:
> Hannes Hirzel wrote
>> Hello Marcel
>>
>> Unfortunately it is not an improvement. It now does not work at all.
>>
>> And the links on the 'Welcome' page are no longer working either.
>>
>> --Hannes
>>
>> On 8/17/16, marcel.taeumel <
>
>> Marcel.Taeumel@
>
>> > wrote:
>>> Hannes Hirzel wrote
>>>> A minor bug:
>>>>
>>>> If I open
>>>>
>>>> 'Help menu'  -> 'Squeak Help'
>>>>
>>>> then choose 'The Project' -> 'Extending the system'
>>>>
>>>> and click on 'SqueakMap'
>>>>
>>>> the SqueakMap window opens _behind_ the 'Help window'
>>>>
>>>> -----
>>>> /home/user/sq5.1.beta/Squeak5.1beta-16420-32bit-r3397-All-in-One.app/Contents/Resources/Squeak5.1beta-16420-32bit.image
>>>> Squeak5.1beta
>>>> latest update: #16506
>>>> Current Change Set: Unnamed1
>>>> Image format 6521 (32 bit)
>>>> --
>>>>
>>>> --Hannes
>>>>
>>>> On 8/16/16, Fabio Niephaus <
>>>
>>>> lists@
>>>
>>>> > wrote:
>>>>> --
>>>>>
>>>>> On Tue, Aug 16, 2016 at 2:07 PM H. Hirzel <
>>>
>>>> hannes.hirzel@
>>>
>>>> > wrote:
>>>>>
>>>>>> On 8/14/16, Fabio Niephaus <
>>>
>>>> lists@
>>>
>>>> > wrote:
>>>>>> > Here are the helper functions I came up with for the squeak.sh
>>>>>> launcher
>>>>>> to
>>>>>> > ensure that the kernel is newer than 2.6.12 and that a squeak.conf
>>>>>> exists:
>>>>>> > https://gist.github.com/fniephaus/84dc1e065b2694cf9beafed5920f8cfe
>>>>>> >
>>>>>> > Best,
>>>>>> > Fabio
>>>>>>
>>>>>> I added the calls to the two functions to helpers.sh
>>>>>>
>>>>>> It works but needs sudo permission which is normally not given. So
>>>>>> some tweaking is needed.
>>>>>>
>>>>>>
>>>>>> THIS DOES NOT WORK
>>>>>> user8@user8-Latitude:~$ ./helpers.sh
>>>>>> ./helpers.sh: line 17: \: command not found
>>>>>> /etc/security/limits.d/squeak.conf is missing. Do you want to create
>>>>>> one? This operation requires sudo permissions. (y/N): y
>>>>>> You may be asked to enter your password...
>>>>>> ./helpers.sh: line 32: /etc/security/limits.d/squeak.conf: Permission
>>>>>> denied
>>>>>> Done! Please log out and log back in before you try again.
>>>>>> user8@user8-Latitude:~$
>>>>>>
>>>>>> THIS IS FINE
>>>>>>  sudo ./helpers.sh
>>>>>> [sudo] password for user8:
>>>>>> ./helpers.sh: line 17: \: command not found
>>>>>> /etc/security/limits.d/squeak.conf is missing. Do you want to create
>>>>>> one? This operation requires sudo permissions. (y/N): y
>>>>>> You may be asked to enter your password...
>>>>>> Done! Please log out and log back in before you try again.
>>>>>> user8@user8-Latitude:~$
>>>>>>
>>>>>
>>>>> Thanks for the feedback, Hannes.
>>>>> I've already fixed and tested this on Linux (see [1]), but I forgot to
>>>>> update the gist which I just did.
>>>>> The newer version now uses `sudo tee -a`.
>>>>>
>>>>> Thanks again,
>>>>> Fabio
>>>>>
>>>>> [1]
>>>>> https://github.com/squeak-smalltalk/squeak-app/commit/4e83cc33b65f4222c1fed778d200d578af5d941a
>>>>>
>>>>>
>>>>>>
>>>>>> --Hannes
>>>>>>
>>>>>> > --
>>>>>> >
>>>>>> > On Sun, Aug 14, 2016 at 11:03 PM H. Hirzel <
>>>
>>>> hannes.hirzel@
>>>
>>>> >
>>>>>> wrote:
>>>>>> >
>>>>>> >> For the case I reported
>>>>>> >>
>>>>>> >>     uname -r
>>>>>> >>
>>>>>> >> gives
>>>>>> >>
>>>>>> >>     3.19.0-25-generic
>>>>>> >>
>>>>>> >> for the kernel version
>>>>>> >>
>>>>>> >> --Hannes
>>>>>> >>
>>>>>> >> On 8/14/16, Levente Uzonyi <
>>>
>>>> leves@.elte
>>>
>>>> > wrote:
>>>>>> >> > On Sun, 14 Aug 2016, tim Rowledge wrote:
>>>>>> >> >
>>>>>> >> >>
>>>>>> >> >>> On 14-08-2016, at 12:43 AM, H. Hirzel <
>>>
>>>> hannes.hirzel@
>>>
>>>> >
>>>>>> >> >>> wrote:
>>>>>> >> >>>
>>>>>> >> >>> Hello Levente
>>>>>> >> >>>
>>>>>> >> >>> The following on  did the job. The 64bit all-in-one runs fine
>>>>>> on
>>>>>> >> >>> Ubuntu
>>>>>> >> >>> 14.04.1.
>>>>>> >> >>
>>>>>> >> >> I guess an obvious question here is why on earth ubuntu is
>>>>>> >> >> using
>>>>>> >> >> such
>>>>>> >> >> an
>>>>>> >> >> old kernel. Raspbian (based on debian and so very conservative)
>>>>>> got
>>>>>> >> >> past
>>>>>> >> >> that point at least 18 months ago.
>>>>>> >> >
>>>>>> >> > It doesn't. 14.04 uses 3.13 by default, but you can install 4.2
>>>>>> >> > o
>>>>>> >> > 4.4
>>>>>> >> > if
>>>>>> >> > you want to.
>>>>>> >> >
>>>>>> >> > Levente
>>>>>> >> >
>>>>>> >> >>
>>>>>> >> >>
>>>>>> >> >> tim
>>>>>> >> >> --
>>>>>> >> >> tim Rowledge;
>>>
>>>> tim@
>>>
>>>> ; http://www.rowledge.org/tim
>>>>>> >> >> Strange OpCodes: BBL: Branch on Burned out Light
>>>>>> >> >>
>>>>>> >> >>
>>>>>> >> >>
>>>>>> >> >>
>>>>>> >> >
>>>>>> >> >
>>>>>> >>
>>>>>> >>
>>>>>> >
>>>>>>
>>>>>>
>>>>>
>>>
>>> Hi Hannes,
>>>
>>> should work now:
>>> http://forum.world.st/The-Trunk-Collections-mt-712-mcz-tp4911564.html
>>>
>>> Best,
>>> Marcel
>>>
>>>
>>>
>>> --
>>> View this message in context:
>>> http://forum.world.st/ANN-Squeak-5-1-Feature-Freeze-Trunk-closed-for-new-features-only-bug-fixes-or-text-updates-tp4909004p4911565.html
>>> Sent from the Squeak - Dev mailing list archive at Nabble.com.
>>>
>>>
>
> Hi Hannes,
>
> there was no change to the links on the welcome page. Those are TextURL and
> no TextDoit.
>
> Best,
> Marcel
>
>
>
> --
> View this message in context:
> http://forum.world.st/ANN-Squeak-5-1-Feature-Freeze-Trunk-closed-for-new-features-only-bug-fixes-or-text-updates-tp4909004p4911572.html
> Sent from the Squeak - Dev mailing list archive at Nabble.com.
>
>
Oooops... I'm on it. Thanks for the bug report.

Best,
Marcel
Reply | Threaded
Open this post in threaded view
|

Re: [ANN] Squeak 5.1 Feature Freeze -- Trunk closed for new features; only bug fixes or text updates

marcel.taeumel
marcel.taeumel wrote
Hannes Hirzel wrote
To be more precise:

The windows open but not in the current project. They open in the
project from which I called the menu entry 'Squeak' -> 'Update
Squeak'.

On 8/17/16, marcel.taeumel <[hidden email]> wrote:
> Hannes Hirzel wrote
>> Hello Marcel
>>
>> Unfortunately it is not an improvement. It now does not work at all.
>>
>> And the links on the 'Welcome' page are no longer working either.
>>
>> --Hannes
>>
>> On 8/17/16, marcel.taeumel <
>
>> Marcel.Taeumel@
>
>> > wrote:
>>> Hannes Hirzel wrote
>>>> A minor bug:
>>>>
>>>> If I open
>>>>
>>>> 'Help menu'  -> 'Squeak Help'
>>>>
>>>> then choose 'The Project' -> 'Extending the system'
>>>>
>>>> and click on 'SqueakMap'
>>>>
>>>> the SqueakMap window opens _behind_ the 'Help window'
>>>>
>>>> -----
>>>> /home/user/sq5.1.beta/Squeak5.1beta-16420-32bit-r3397-All-in-One.app/Contents/Resources/Squeak5.1beta-16420-32bit.image
>>>> Squeak5.1beta
>>>> latest update: #16506
>>>> Current Change Set: Unnamed1
>>>> Image format 6521 (32 bit)
>>>> --
>>>>
>>>> --Hannes
>>>>
>>>> On 8/16/16, Fabio Niephaus <
>>>
>>>> lists@
>>>
>>>> > wrote:
>>>>> --
>>>>>
>>>>> On Tue, Aug 16, 2016 at 2:07 PM H. Hirzel <
>>>
>>>> hannes.hirzel@
>>>
>>>> > wrote:
>>>>>
>>>>>> On 8/14/16, Fabio Niephaus <
>>>
>>>> lists@
>>>
>>>> > wrote:
>>>>>> > Here are the helper functions I came up with for the squeak.sh
>>>>>> launcher
>>>>>> to
>>>>>> > ensure that the kernel is newer than 2.6.12 and that a squeak.conf
>>>>>> exists:
>>>>>> > https://gist.github.com/fniephaus/84dc1e065b2694cf9beafed5920f8cfe
>>>>>> >
>>>>>> > Best,
>>>>>> > Fabio
>>>>>>
>>>>>> I added the calls to the two functions to helpers.sh
>>>>>>
>>>>>> It works but needs sudo permission which is normally not given. So
>>>>>> some tweaking is needed.
>>>>>>
>>>>>>
>>>>>> THIS DOES NOT WORK
>>>>>> user8@user8-Latitude:~$ ./helpers.sh
>>>>>> ./helpers.sh: line 17: \: command not found
>>>>>> /etc/security/limits.d/squeak.conf is missing. Do you want to create
>>>>>> one? This operation requires sudo permissions. (y/N): y
>>>>>> You may be asked to enter your password...
>>>>>> ./helpers.sh: line 32: /etc/security/limits.d/squeak.conf: Permission
>>>>>> denied
>>>>>> Done! Please log out and log back in before you try again.
>>>>>> user8@user8-Latitude:~$
>>>>>>
>>>>>> THIS IS FINE
>>>>>>  sudo ./helpers.sh
>>>>>> [sudo] password for user8:
>>>>>> ./helpers.sh: line 17: \: command not found
>>>>>> /etc/security/limits.d/squeak.conf is missing. Do you want to create
>>>>>> one? This operation requires sudo permissions. (y/N): y
>>>>>> You may be asked to enter your password...
>>>>>> Done! Please log out and log back in before you try again.
>>>>>> user8@user8-Latitude:~$
>>>>>>
>>>>>
>>>>> Thanks for the feedback, Hannes.
>>>>> I've already fixed and tested this on Linux (see [1]), but I forgot to
>>>>> update the gist which I just did.
>>>>> The newer version now uses `sudo tee -a`.
>>>>>
>>>>> Thanks again,
>>>>> Fabio
>>>>>
>>>>> [1]
>>>>> https://github.com/squeak-smalltalk/squeak-app/commit/4e83cc33b65f4222c1fed778d200d578af5d941a
>>>>>
>>>>>
>>>>>>
>>>>>> --Hannes
>>>>>>
>>>>>> > --
>>>>>> >
>>>>>> > On Sun, Aug 14, 2016 at 11:03 PM H. Hirzel <
>>>
>>>> hannes.hirzel@
>>>
>>>> >
>>>>>> wrote:
>>>>>> >
>>>>>> >> For the case I reported
>>>>>> >>
>>>>>> >>     uname -r
>>>>>> >>
>>>>>> >> gives
>>>>>> >>
>>>>>> >>     3.19.0-25-generic
>>>>>> >>
>>>>>> >> for the kernel version
>>>>>> >>
>>>>>> >> --Hannes
>>>>>> >>
>>>>>> >> On 8/14/16, Levente Uzonyi <
>>>
>>>> leves@.elte
>>>
>>>> > wrote:
>>>>>> >> > On Sun, 14 Aug 2016, tim Rowledge wrote:
>>>>>> >> >
>>>>>> >> >>
>>>>>> >> >>> On 14-08-2016, at 12:43 AM, H. Hirzel <
>>>
>>>> hannes.hirzel@
>>>
>>>> >
>>>>>> >> >>> wrote:
>>>>>> >> >>>
>>>>>> >> >>> Hello Levente
>>>>>> >> >>>
>>>>>> >> >>> The following on  did the job. The 64bit all-in-one runs fine
>>>>>> on
>>>>>> >> >>> Ubuntu
>>>>>> >> >>> 14.04.1.
>>>>>> >> >>
>>>>>> >> >> I guess an obvious question here is why on earth ubuntu is
>>>>>> >> >> using
>>>>>> >> >> such
>>>>>> >> >> an
>>>>>> >> >> old kernel. Raspbian (based on debian and so very conservative)
>>>>>> got
>>>>>> >> >> past
>>>>>> >> >> that point at least 18 months ago.
>>>>>> >> >
>>>>>> >> > It doesn't. 14.04 uses 3.13 by default, but you can install 4.2
>>>>>> >> > o
>>>>>> >> > 4.4
>>>>>> >> > if
>>>>>> >> > you want to.
>>>>>> >> >
>>>>>> >> > Levente
>>>>>> >> >
>>>>>> >> >>
>>>>>> >> >>
>>>>>> >> >> tim
>>>>>> >> >> --
>>>>>> >> >> tim Rowledge;
>>>
>>>> tim@
>>>
>>>> ; http://www.rowledge.org/tim
>>>>>> >> >> Strange OpCodes: BBL: Branch on Burned out Light
>>>>>> >> >>
>>>>>> >> >>
>>>>>> >> >>
>>>>>> >> >>
>>>>>> >> >
>>>>>> >> >
>>>>>> >>
>>>>>> >>
>>>>>> >
>>>>>>
>>>>>>
>>>>>
>>>
>>> Hi Hannes,
>>>
>>> should work now:
>>> http://forum.world.st/The-Trunk-Collections-mt-712-mcz-tp4911564.html
>>>
>>> Best,
>>> Marcel
>>>
>>>
>>>
>>> --
>>> View this message in context:
>>> http://forum.world.st/ANN-Squeak-5-1-Feature-Freeze-Trunk-closed-for-new-features-only-bug-fixes-or-text-updates-tp4909004p4911565.html
>>> Sent from the Squeak - Dev mailing list archive at Nabble.com.
>>>
>>>
>
> Hi Hannes,
>
> there was no change to the links on the welcome page. Those are TextURL and
> no TextDoit.
>
> Best,
> Marcel
>
>
>
> --
> View this message in context:
> http://forum.world.st/ANN-Squeak-5-1-Feature-Freeze-Trunk-closed-for-new-features-only-bug-fixes-or-text-updates-tp4909004p4911572.html
> Sent from the Squeak - Dev mailing list archive at Nabble.com.
>
>
Oooops... I'm on it. Thanks for the bug report.

Best,
Marcel
Hi Hannes,

please update, switch between two projects back-and-forth. Re-open those help browsers. It should work now. :-) Sorry for those inconveniences.....

Best,
Marcel
Reply | Threaded
Open this post in threaded view
|

Re: [ANN] Squeak 5.1 Feature Freeze -- Trunk closed for new features; only bug fixes or text updates

Hannes Hirzel
It works fine now, thank you, Marcel.

Some suggestions for more hyperlinks to open tools

entry 'Tools'
           'Basic Development Tools'    Workspace, Browser, File List,
                                                    Method Finder, Change Sorter
           'Transcript'
              'Transcript Window'    have a link behind 'Workspace'

          'Workspace'
              'Open a workspace'     1. have a link behind 'Workspace'
                                              2. Have the proper short
cut mentioned for Linux (ctrl K)


--Hannes

On 8/17/16, marcel.taeumel <[hidden email]> wrote:

> marcel.taeumel wrote
>>
>> Hannes Hirzel wrote
>>> To be more precise:
>>>
>>> The windows open but not in the current project. They open in the
>>> project from which I called the menu entry 'Squeak' -> 'Update
>>> Squeak'.
>>>
>>> On 8/17/16, marcel.taeumel &lt;
>
>>> Marcel.Taeumel@
>
>>> &gt; wrote:
>>>> Hannes Hirzel wrote
>>>>> Hello Marcel
>>>>>
>>>>> Unfortunately it is not an improvement. It now does not work at all.
>>>>>
>>>>> And the links on the 'Welcome' page are no longer working either.
>>>>>
>>>>> --Hannes
>>>>>
>>>>> On 8/17/16, marcel.taeumel &lt;
>>>>
>>>>> Marcel.Taeumel@
>>>>
>>>>> &gt; wrote:
>>>>>> Hannes Hirzel wrote
>>>>>>> A minor bug:
>>>>>>>
>>>>>>> If I open
>>>>>>>
>>>>>>> 'Help menu'  -> 'Squeak Help'
>>>>>>>
>>>>>>> then choose 'The Project' -> 'Extending the system'
>>>>>>>
>>>>>>> and click on 'SqueakMap'
>>>>>>>
>>>>>>> the SqueakMap window opens _behind_ the 'Help window'
>>>>>>>
>>>>>>> -----
>>>>>>> /home/user/sq5.1.beta/Squeak5.1beta-16420-32bit-r3397-All-in-One.app/Contents/Resources/Squeak5.1beta-16420-32bit.image
>>>>>>> Squeak5.1beta
>>>>>>> latest update: #16506
>>>>>>> Current Change Set: Unnamed1
>>>>>>> Image format 6521 (32 bit)
>>>>>>> --
>>>>>>>
>>>>>>> --Hannes
>>>>>>>
>>>>>>> On 8/16/16, Fabio Niephaus &lt;
>>>>>>
>>>>>>> lists@
>>>>>>
>>>>>>> &gt; wrote:
>>>>>>>> --
>>>>>>>>
>>>>>>>> On Tue, Aug 16, 2016 at 2:07 PM H. Hirzel &lt;
>>>>>>
>>>>>>> hannes.hirzel@
>>>>>>
>>>>>>> &gt; wrote:
>>>>>>>>
>>>>>>>>> On 8/14/16, Fabio Niephaus &lt;
>>>>>>
>>>>>>> lists@
>>>>>>
>>>>>>> &gt; wrote:
>>>>>>>>> > Here are the helper functions I came up with for the squeak.sh
>>>>>>>>> launcher
>>>>>>>>> to
>>>>>>>>> > ensure that the kernel is newer than 2.6.12 and that a
>>>>>>>>> squeak.conf
>>>>>>>>> exists:
>>>>>>>>> >
>>>>>>>>> https://gist.github.com/fniephaus/84dc1e065b2694cf9beafed5920f8cfe
>>>>>>>>> >
>>>>>>>>> > Best,
>>>>>>>>> > Fabio
>>>>>>>>>
>>>>>>>>> I added the calls to the two functions to helpers.sh
>>>>>>>>>
>>>>>>>>> It works but needs sudo permission which is normally not given. So
>>>>>>>>> some tweaking is needed.
>>>>>>>>>
>>>>>>>>>
>>>>>>>>> THIS DOES NOT WORK
>>>>>>>>> user8@user8-Latitude:~$ ./helpers.sh
>>>>>>>>> ./helpers.sh: line 17: \: command not found
>>>>>>>>> /etc/security/limits.d/squeak.conf is missing. Do you want to
>>>>>>>>> create
>>>>>>>>> one? This operation requires sudo permissions. (y/N): y
>>>>>>>>> You may be asked to enter your password...
>>>>>>>>> ./helpers.sh: line 32: /etc/security/limits.d/squeak.conf:
>>>>>>>>> Permission
>>>>>>>>> denied
>>>>>>>>> Done! Please log out and log back in before you try again.
>>>>>>>>> user8@user8-Latitude:~$
>>>>>>>>>
>>>>>>>>> THIS IS FINE
>>>>>>>>>  sudo ./helpers.sh
>>>>>>>>> [sudo] password for user8:
>>>>>>>>> ./helpers.sh: line 17: \: command not found
>>>>>>>>> /etc/security/limits.d/squeak.conf is missing. Do you want to
>>>>>>>>> create
>>>>>>>>> one? This operation requires sudo permissions. (y/N): y
>>>>>>>>> You may be asked to enter your password...
>>>>>>>>> Done! Please log out and log back in before you try again.
>>>>>>>>> user8@user8-Latitude:~$
>>>>>>>>>
>>>>>>>>
>>>>>>>> Thanks for the feedback, Hannes.
>>>>>>>> I've already fixed and tested this on Linux (see [1]), but I forgot
>>>>>>>> to
>>>>>>>> update the gist which I just did.
>>>>>>>> The newer version now uses `sudo tee -a`.
>>>>>>>>
>>>>>>>> Thanks again,
>>>>>>>> Fabio
>>>>>>>>
>>>>>>>> [1]
>>>>>>>> https://github.com/squeak-smalltalk/squeak-app/commit/4e83cc33b65f4222c1fed778d200d578af5d941a
>>>>>>>>
>>>>>>>>
>>>>>>>>>
>>>>>>>>> --Hannes
>>>>>>>>>
>>>>>>>>> > --
>>>>>>>>> >
>>>>>>>>> > On Sun, Aug 14, 2016 at 11:03 PM H. Hirzel &lt;
>>>>>>
>>>>>>> hannes.hirzel@
>>>>>>
>>>>>>> &gt;
>>>>>>>>> wrote:
>>>>>>>>> >
>>>>>>>>> >> For the case I reported
>>>>>>>>> >>
>>>>>>>>> >>     uname -r
>>>>>>>>> >>
>>>>>>>>> >> gives
>>>>>>>>> >>
>>>>>>>>> >>     3.19.0-25-generic
>>>>>>>>> >>
>>>>>>>>> >> for the kernel version
>>>>>>>>> >>
>>>>>>>>> >> --Hannes
>>>>>>>>> >>
>>>>>>>>> >> On 8/14/16, Levente Uzonyi &lt;
>>>>>>
>>>>>>> leves@.elte
>>>>>>
>>>>>>> &gt; wrote:
>>>>>>>>> >> > On Sun, 14 Aug 2016, tim Rowledge wrote:
>>>>>>>>> >> >
>>>>>>>>> >> >>
>>>>>>>>> >> >>> On 14-08-2016, at 12:43 AM, H. Hirzel &lt;
>>>>>>
>>>>>>> hannes.hirzel@
>>>>>>
>>>>>>> &gt;
>>>>>>>>> >> >>> wrote:
>>>>>>>>> >> >>>
>>>>>>>>> >> >>> Hello Levente
>>>>>>>>> >> >>>
>>>>>>>>> >> >>> The following on  did the job. The 64bit all-in-one runs
>>>>>>>>> fine
>>>>>>>>> on
>>>>>>>>> >> >>> Ubuntu
>>>>>>>>> >> >>> 14.04.1.
>>>>>>>>> >> >>
>>>>>>>>> >> >> I guess an obvious question here is why on earth ubuntu is
>>>>>>>>> >> >> using
>>>>>>>>> >> >> such
>>>>>>>>> >> >> an
>>>>>>>>> >> >> old kernel. Raspbian (based on debian and so very
>>>>>>>>> conservative)
>>>>>>>>> got
>>>>>>>>> >> >> past
>>>>>>>>> >> >> that point at least 18 months ago.
>>>>>>>>> >> >
>>>>>>>>> >> > It doesn't. 14.04 uses 3.13 by default, but you can install
>>>>>>>>> 4.2
>>>>>>>>> >> > o
>>>>>>>>> >> > 4.4
>>>>>>>>> >> > if
>>>>>>>>> >> > you want to.
>>>>>>>>> >> >
>>>>>>>>> >> > Levente
>>>>>>>>> >> >
>>>>>>>>> >> >>
>>>>>>>>> >> >>
>>>>>>>>> >> >> tim
>>>>>>>>> >> >> --
>>>>>>>>> >> >> tim Rowledge;
>>>>>>
>>>>>>> tim@
>>>>>>
>>>>>>> ; http://www.rowledge.org/tim
>>>>>>>>> >> >> Strange OpCodes: BBL: Branch on Burned out Light
>>>>>>>>> >> >>
>>>>>>>>> >> >>
>>>>>>>>> >> >>
>>>>>>>>> >> >>
>>>>>>>>> >> >
>>>>>>>>> >> >
>>>>>>>>> >>
>>>>>>>>> >>
>>>>>>>>> >
>>>>>>>>>
>>>>>>>>>
>>>>>>>>
>>>>>>
>>>>>> Hi Hannes,
>>>>>>
>>>>>> should work now:
>>>>>> http://forum.world.st/The-Trunk-Collections-mt-712-mcz-tp4911564.html
>>>>>>
>>>>>> Best,
>>>>>> Marcel
>>>>>>
>>>>>>
>>>>>>
>>>>>> --
>>>>>> View this message in context:
>>>>>> http://forum.world.st/ANN-Squeak-5-1-Feature-Freeze-Trunk-closed-for-new-features-only-bug-fixes-or-text-updates-tp4909004p4911565.html
>>>>>> Sent from the Squeak - Dev mailing list archive at Nabble.com.
>>>>>>
>>>>>>
>>>>
>>>> Hi Hannes,
>>>>
>>>> there was no change to the links on the welcome page. Those are TextURL
>>>> and
>>>> no TextDoit.
>>>>
>>>> Best,
>>>> Marcel
>>>>
>>>>
>>>>
>>>> --
>>>> View this message in context:
>>>> http://forum.world.st/ANN-Squeak-5-1-Feature-Freeze-Trunk-closed-for-new-features-only-bug-fixes-or-text-updates-tp4909004p4911572.html
>>>> Sent from the Squeak - Dev mailing list archive at Nabble.com.
>>>>
>>>>
>> Oooops... I'm on it. Thanks for the bug report.
>>
>> Best,
>> Marcel
>
> Hi Hannes,
>
> please update, switch between two projects back-and-forth. Re-open those
> help browsers. It should work now. :-) Sorry for those inconveniences.....
>
> Best,
> Marcel
>
>
>
> --
> View this message in context:
> http://forum.world.st/ANN-Squeak-5-1-Feature-Freeze-Trunk-closed-for-new-features-only-bug-fixes-or-text-updates-tp4909004p4911582.html
> Sent from the Squeak - Dev mailing list archive at Nabble.com.
>
>

123