Akita Linux, Beta 16 ISO

For talk and support relating specifically to Puppy derivatives
Message
Author
User avatar
technosaurus
Posts: 4853
Joined: Mon 19 May 2008, 01:24
Location: Blue Springs, MO
Contact:

#271 Post by technosaurus »

I have a lot of gtk1 apps including the latest mtpaint for my kids underpowered geode boxes. There is a small error in x.x.68 that prevented a nothreads compile (even in gtk2), but I moved the necessary code to where it was needed and voila, their favorite paint program only uses ~8mb of RAM. I doubt many would want a nothreads gtk1 version, but I can make my hack into a proper patch if need be.
Check out my [url=https://github.com/technosaurus]github repositories[/url]. I may eventually get around to updating my [url=http://bashismal.blogspot.com]blogspot[/url].

User avatar
sc0ttman
Posts: 2812
Joined: Wed 16 Sep 2009, 05:44
Location: UK

#272 Post by sc0ttman »

technosaurus wrote:I have a lot of gtk1 apps including the latest mtpaint for my kids underpowered geode boxes. There is a small error in x.x.68 that prevented a nothreads compile (even in gtk2), but I moved the necessary code to where it was needed and voila, their favorite paint program only uses ~8mb of RAM. I doubt many would want a nothreads gtk1 version, but I can make my hack into a proper patch if need be.
Maybe something for PULP (that gtk1 focused puplet)? Not that I wouldn't mind it.. Does gtk1 support UTF-8? Would the russian show up alright? Cos I've replaced jasper (as we no longer need it, thanks to don) with the es.fr.de.ru .mo files, and still saved a little space.. :) A good move I reckon..
[b][url=https://bit.ly/2KjtxoD]Pkg[/url], [url=https://bit.ly/2U6dzxV]mdsh[/url], [url=https://bit.ly/2G49OE8]Woofy[/url], [url=http://goo.gl/bzBU1]Akita[/url], [url=http://goo.gl/SO5ug]VLC-GTK[/url], [url=https://tiny.cc/c2hnfz]Search[/url][/b]

User avatar
technosaurus
Posts: 4853
Joined: Mon 19 May 2008, 01:24
Location: Blue Springs, MO
Contact:

#273 Post by technosaurus »

gtk1 support(ed) a lot of languages, has a much smaller footprint and _had_ quite a few good apps. MTPaint uses less than half the resources, but he biggest difference I have seen though is in the gtk1 standalone flash player v6 (~8mb RAM footprint)

on another note, I thought I saw you post something about trying to compile urxvt smaller ... can't seem to find the post again but if so try mrxvt ... urxvt is bloated up C++ code and that alone tends to add 200+kb in puppy (no precompiled headers maybe?)
... I don't think my 73kb pet of mrxvt had NLS enabled but you can check it out here:
http://www.murga-linux.com/puppy/viewto ... h&id=39133

here are my notes on how to get numbered tabs in mrxvt

Code: Select all

---
+++ mrxvt-0.5.4/src/init.c ..........set tabs to numbers
    /*
     * Set the tab title
     */
    if (IS_NULL(title)){
		title = DEFAULT_TAB_TITLE;
		sprintf(title,"%d",r->ntabs);
	}
Check out my [url=https://github.com/technosaurus]github repositories[/url]. I may eventually get around to updating my [url=http://bashismal.blogspot.com]blogspot[/url].

User avatar
sc0ttman
Posts: 2812
Joined: Wed 16 Sep 2009, 05:44
Location: UK

#274 Post by sc0ttman »

technosaurus wrote:urxvt is bloated up C++ code and that alone tends to add 200+kb in puppy (no precompiled headers maybe?)
... I don't think my 73kb pet of mrxvt had NLS enabled but you can check it out here:
http://www.murga-linux.com/puppy/viewto ... h&id=39133

here are my notes on how to get numbered tabs in mrxvt

Code: Select all

---
+++ mrxvt-0.5.4/src/init.c ..........set tabs to numbers
    /*
     * Set the tab title
     */
    if (IS_NULL(title)){
		title = DEFAULT_TAB_TITLE;
		sprintf(title,"%d",r->ntabs);
	}
I'm now running mrxvt, quite nice... No UTF-8 in mrxvt though... It is not yet supported, and I've no idea when it will be.. So I tried the 'mrxvt05utf8' version (a fork or off-shoot or whatever) and it segfaulted a lot... :( I will try to build it a few ways, but it seems that its not at all stable

That is a shame because if I can get UTF-8 working in mrxvt that will be really nice.. And means I can do away with termit .. I've already got rid of aterm and urxvt..

Also, it got me thinking, what would I need to do to make changes to the actual default terminal - upgrading features and such... I'd ideally like elinks to run in 256 colours, with UTF-8 - when no X server is running... I also found 'mp', 'mc' and a few other terminal apps really nice..

I have re-compiled elinks to include a bittorrent client, and will probably remove puptransmission and transmissioncli - this will save around 200kb...

I am also interested in getting a high res terminal, or maybe one that can show VLC, mplayer, etc... Framebuffer or something... There is a 'framebufferwizard' but it seems not to work... And I know nothing on the subject..

---------------------

Also, I found something called cw that claims to colorize (colourise) the output of many commands ... I have attached below.. I cannot seem to make it do anything..

I have also attached dtach which gives you the 'detach' functionality from 'screen' ... It can be used with mrxvt.. more info
Attachments
dtach.gz
unzip and put in /usr/bin/
(6.19 KiB) Downloaded 495 times
cw_DOC-1.0.16-i486.pet
(9.81 KiB) Downloaded 476 times
cw-1.0.16-i486.pet
terminal output colouriser
(33.42 KiB) Downloaded 501 times
[b][url=https://bit.ly/2KjtxoD]Pkg[/url], [url=https://bit.ly/2U6dzxV]mdsh[/url], [url=https://bit.ly/2G49OE8]Woofy[/url], [url=http://goo.gl/bzBU1]Akita[/url], [url=http://goo.gl/SO5ug]VLC-GTK[/url], [url=https://tiny.cc/c2hnfz]Search[/url][/b]

User avatar
technosaurus
Posts: 4853
Joined: Mon 19 May 2008, 01:24
Location: Blue Springs, MO
Contact:

#275 Post by technosaurus »

Check out my [url=https://github.com/technosaurus]github repositories[/url]. I may eventually get around to updating my [url=http://bashismal.blogspot.com]blogspot[/url].

User avatar
sc0ttman
Posts: 2812
Joined: Wed 16 Sep 2009, 05:44
Location: UK

#276 Post by sc0ttman »

technosaurus wrote:Suzy has a couple patches
https://build.opensuse.org/package/file ... e%3Asdrahn
I am loving mrxvt... I disabled extras like transparency, xft jpeg png etc at compile time.. I figured I would also disable all the GUI stuff in the config file, cos when using the terminals keybindings are much better - no need to switch back to the mouse... So I added a load of keybindings to the rc file...

Works great, really like it... Fast and convenient :)
I added also a readme about mrxvt keystokes to /root/my-documents/quick-tips/

...I really hope the UTF-8 version/patches you linked to works OK, yet to try it, but will soon.. I forgot to add your tab rename patch, and really miss it - so I will re-compile anyway...

________________________

Just an update... A new ISO will be up really soon...

As above, mrxvt replaces urxvt (removed completely), and termit (still installed)..

I've also added scliss, renamed as 'ezfind' - a great little CLI search tool by 01micko, that I just discovered :D

Finally, Akita is using the Xorg binary from Wary so I have updated lots of Xorg modules like ati_drv.so, and so on... I stole them from Wary 512 - I hope this is not dumb, I do not htink the Xorg modules rely on kernel versions, do they??

The remastered version boots for me, using the 'nv' Xorg module, so it seems OK.
[b][url=https://bit.ly/2KjtxoD]Pkg[/url], [url=https://bit.ly/2U6dzxV]mdsh[/url], [url=https://bit.ly/2G49OE8]Woofy[/url], [url=http://goo.gl/bzBU1]Akita[/url], [url=http://goo.gl/SO5ug]VLC-GTK[/url], [url=https://tiny.cc/c2hnfz]Search[/url][/b]

User avatar
sc0ttman
Posts: 2812
Joined: Wed 16 Sep 2009, 05:44
Location: UK

Akita Linux.. BETA1

#277 Post by sc0ttman »

EDIT: BETA2 now available, later in this thread...

New ISO uploaded: Akita Linux Beta 1, Sept 08 2011

Download mirrors: http://www.multiupload.com/SLG92MW8QI
(Size 87mb, md5: 5b6b43ea9cce68686f454337d38c33c0)

Changes since last time (akita alpha1):
- faster menus and many faster programs
- better default program choices and settings
- much better delayedrun, with nice flash installer
- more localisation of key programs
- more drivers in zdrv, updated Xorg modules
- cleaner menus, some new easier GUIs
- many programs updated to latest versions

Bugs not yet fixed:
- mrxvt still not UTF-8 enabled
- update the rest of Xorg to xorg-server-7.3-w5 package, and its deps
- still not added eduroam, quickpet or opengl-installer
- not yet updated help files
- update PPM, add filter for 'DEV' and 'NLS' packages (help wanted!!!)
- create zdrv_cutr GUI,
- update devx (a lot of updates needed, but normal 'devx_420.sfs' still works fine..)
- add MAC address settings to firstrun, maybe
- look into EduRoam GUI... (I didn't forget)
- custom help documentation, update 'puppyhelp'
- support localisation for JWMConfig, wizardwizard, input-wizard.. maybe puppyinstaller <-- help!
- remove unused libs and binaries - many leftovers: icons, gtk1, for example

Feedback welcome :D

Things to test, if possible:

installation:
- frugal installer, puppy installer, browser installer, pupsaveconfig
- PPM and the wary 5 pets in the repo
- gparted, etc
- save file boot option pfix=delayedsave, forces pupmode=12 when pupmode=13 (disables saving to save file in real-time)

network:
- wireless (wifi) networking - PLEASE test this if you can.. it may be broken!
- pupdial, 3g modems, anything that needs wvdial
- samba-tng and tcsclient RDP working or not?
- mac changer working OK?

system:
- does elinks do its job? (html viewer, simple browser)
- termit to be replaced by faster UTF-8 terminal with working -e command? (urxvt -e not working)
- multimedia working OK?
- vlc-gtk working OK? any major problems?
- any problems with mplayer from PPM?
- any font or UTF-8 issues? (not including *rxvt terminal emulators)

hardware:
- test on netbooks, laptops, etc
- boot straight to desktop? xorgwizard working, if not?
- force feedback for joypads
- wacom and wizardpen drawing tablets

support and help:
- Menu>Help ... puppyhelp needs some fixes
- localisation, any missing translations, incorrect translations?
- important missing help docs? (I will also write a custom one, and get translations)

JWM/ROX desktop environment:
- test Menu>Setup>System>Toggle ROX Desktop
- test JWM-drives on the desktop, mounting unmounting stuff
Last edited by sc0ttman on Mon 19 Sep 2011, 12:18, edited 3 times in total.
[b][url=https://bit.ly/2KjtxoD]Pkg[/url], [url=https://bit.ly/2U6dzxV]mdsh[/url], [url=https://bit.ly/2G49OE8]Woofy[/url], [url=http://goo.gl/bzBU1]Akita[/url], [url=http://goo.gl/SO5ug]VLC-GTK[/url], [url=https://tiny.cc/c2hnfz]Search[/url][/b]

User avatar
don570
Posts: 5528
Joined: Wed 10 Mar 2010, 19:58
Location: Ontario

quick_launch-1.0

#278 Post by don570 »

I tried quick_launch-1.0 on Akita and it worked great.
You should try it and see if you can get it to launch with
a Ctrl-shift-L keystroke combination.

http://www.murga-linux.com/puppy/viewto ... 839#561839

I am in the process of making the localization
(using Zigbert's method)

_______________________________________________

User avatar
Keef
Posts: 987
Joined: Thu 20 Dec 2007, 22:12
Location: Staffordshire

CW

#279 Post by Keef »

If you go to /usr/bin/cw/ and run the wrapper scripts from there, you will see the effects. (eg ./date). Some look better than others. Try 'free'.

oligin10
Posts: 193
Joined: Sat 17 Jul 2010, 15:47
Location: Buckeye State, USA

browser and flash installation, frisbee problems

#280 Post by oligin10 »

Hi Scott, not having a lot of time right now for Puppy, but wanted to give a couple of observations. First, Frisbee seems to have problems making connection. SNS works fine. I have had similar problems with other puplets and Frisbee. I am trying wireless setup with Atheros 5k pcmcia card. Also, Firedog 3.6 is shown in menu but not installed. It will install properly from browser installer. Flock does not install, says already installed. Midori and Opera seem to install fine. Flash installer does populate in installed pets. Flash 7 does not install at all. Flash 9 installed and says it will identify itself as Flash 10. Also, initial setup menu seems to be working properly now. Did not work at all in Akita Linux Alpha. Thanks again, Rob

THANKS, for all your hard work. I am really enjoying Akita and looking forward to the finished OS.

User avatar
wuwei
Posts: 800
Joined: Sat 15 Sep 2007, 11:59
Location: formerly de; now in tranquility

#281 Post by wuwei »

Beta 1 upgrade ran smoothly. Even the savefile was upgraded automatically. :D
The desktop showed conky in your white design, due to now having /root/.conkyrc instead of /etc/conky/conky.conf.


And since I read this honorable mention, sc0ttman....
...wuweis conkyrc...
I took my conky config file and renamed it to .conkyrc. You can download the attachment and just replace the original .conkyrc with my version, if so desired.

Two things to watch out for:

Akita seems to support only one CPU. Therefore, I have commented out the second CPU, because Conky wouldn't start with that line active.
Second, anybody using my .conkyrc must change the partition lines to fit his disk geometry.

All else: Akita is getting to be a real gem!
Attachments
conkyrc.zip
(2.39 KiB) Downloaded 410 times

User avatar
don570
Posts: 5528
Joined: Wed 10 Mar 2010, 19:58
Location: Ontario

review beta1

#282 Post by don570 »

I tried Beta1

Doesn't there need to be a software adjustment for the clock
for users who have a Linux-only machine?

___________________________________________________-

Would you install screenshotbrowser.sh? It's just a small script
to open the Screenshots folder and begin editing
with mtpaint

http://www.murga-linux.com/puppy/viewto ... 96&t=70996

________________________________________________

I've upgraded Quick Launch to version 1.1
http://www.murga-linux.com/puppy/viewto ... 50&t=71538

________________________________________________

Why don't you have baconrecorder installed?

http://www.murga-linux.com/puppy/viewto ... 46&t=69237

__________________________-

One of the apps that I use everyday is a simple
egg timer. I've rewritten it for Akita.
Attachments
ptmtimer-1.3.1.pet
(15.82 KiB) Downloaded 470 times
ptmtimer-NLS-1.3.pet
(955 Bytes) Downloaded 466 times

User avatar
don570
Posts: 5528
Joined: Wed 10 Mar 2010, 19:58
Location: Ontario

pen html files

#283 Post by don570 »

It might be nice to open html files with elinks
when the icon is clicked.

_________________

User avatar
sc0ttman
Posts: 2812
Joined: Wed 16 Sep 2009, 05:44
Location: UK

Re: pen html files

#284 Post by sc0ttman »

OK, so far I added libstdc5, wvdial is working, updated pfilesearch 1.26, picker 0.3, pupradio 0.14, I removed the 'flock' binary (which comes from the util-linux package, I believe), so adding Flock via browser-installer works again..
Hope it does not break anything...

I also tested Flash-get - Flash7 DOES download, it just takes a while.. And yes, all Flash libs are fake-updated to latest version, should not happen automatically, will fix this.

I also improved elinks_shell, tried out javascript in elinks (not worth it), failed to get a stable utf8 mrxvt, keeping termit - slow but works great otherwise... I am also not gonna mess with Frisbee, cos its beyond me!

I am now happy with the main system more or less, and just need to finally get onto making the QuickPet and OpenGL installer.. I will steal 01mickos code from Quickpet where needed, hopefully adjust his opengl installer to not require the .ids files in /usr/share :?:

I would really appreciate people who use this BETA to offer up some more translations and help i18n the following programs:

- xserver-wizard, input-wizard, wizardwizard, jwmconfig, flash-get, delayedrun, and any more you like, plus the others I already listed above, and in main post.
don570 wrote:It might be nice to open html files with elinks
when the icon is clicked.

_________________
I have done the above, and added the apps you linked to... I have added a few fixes as well:

- screenshot-browser exits with message if no screenshots found
- baconrecorder loads retrovol in the background to avoid freezing

Not gonna add your bookmarks thing, yet, cos Akita already has custom JWM bookmarks, and auto mounted drive bookmarks for GTK.. But I might find an unobtrusive place for it.. :D
_________________

I also have your conkyrc working, wuwei ... it's edited a bit..
[b][url=https://bit.ly/2KjtxoD]Pkg[/url], [url=https://bit.ly/2U6dzxV]mdsh[/url], [url=https://bit.ly/2G49OE8]Woofy[/url], [url=http://goo.gl/bzBU1]Akita[/url], [url=http://goo.gl/SO5ug]VLC-GTK[/url], [url=https://tiny.cc/c2hnfz]Search[/url][/b]

oligin10
Posts: 193
Joined: Sat 17 Jul 2010, 15:47
Location: Buckeye State, USA

Flash 7

#285 Post by oligin10 »

Sorry about Flash 7, guess I didn't wait long enough. Thanks again, looking forward to spending more time next week with this. Regards, Rob

User avatar
sc0ttman
Posts: 2812
Joined: Wed 16 Sep 2009, 05:44
Location: UK

akita beta2... so far

#286 Post by sc0ttman »

Updates made to beta1 so far...

Code: Select all

	- updated pfilesearch, pupradio, picker, 
	- fixed jwm_menu_create and jwm-extras
		- added xmessage and gxmessage groups
		- removed gettext from key bindings
		- split internet into 'WWW' and 'FileTransfer' categories
		- updated JWM translations
	- updated HTML mime handling, now uses defaulthtmlviewer
	- fixed browser-installer
		- now passes any given options to the installed browser 
		- removed flock binary from util-linus pkg, fixes flock browser install process
	- added teapot, updated defaultspreadsheet and defaults-chooser to use it
	- updated conkyrc file, customised from wuweis version
	- changed default wallpaper to japup (thanks to CatDude)
	- added ptmtimer, bacon-recorder and screenshot-browser (with updates)
	- fixed wvdial (and therefore pupdial, etc) added libstc5
	- added PSIPPY 0.26, upxd binary, hacked GUI to use ash, not bash
	- updated default elinks config, also added bookmarks
[b][url=https://bit.ly/2KjtxoD]Pkg[/url], [url=https://bit.ly/2U6dzxV]mdsh[/url], [url=https://bit.ly/2G49OE8]Woofy[/url], [url=http://goo.gl/bzBU1]Akita[/url], [url=http://goo.gl/SO5ug]VLC-GTK[/url], [url=https://tiny.cc/c2hnfz]Search[/url][/b]

rodin.s
Posts: 344
Joined: Wed 22 Sep 2010, 19:50
Location: Ukraine

/usr/share/applications for Russian

#287 Post by rodin.s »

I have checked and corrected Russian translations in /usr/share/applications
Also I've noticed that 'Name=' should be above all other 'Name[xx]=' for l10n to work.
Attachments
apps_ru.tar.gz
/usr/share/applications fixed
(35.6 KiB) Downloaded 450 times

User avatar
sc0ttman
Posts: 2812
Joined: Wed 16 Sep 2009, 05:44
Location: UK

Re: /usr/share/applications for Russian

#288 Post by sc0ttman »

rodin.s wrote:I have checked and corrected Russian translations in /usr/share/applications
Thats great, added... and looking good ;) I will upload another BETA before the final release, as I have updated the categories, adding a few more, so I updated some of the translations in /usr/bin/jwm_menu_create as well :roll:
Also I've noticed that 'Name=' should be above all other 'Name[xx]=' for l10n to work.
Hmm... I forgot about that, thanks... So I should probably use 'cat $file | sort | uniq' on each .desktop file to make sure Name= always appears before Name[**]=

To everyone:

I updated the main post with testing info

I would love people to test wife (wireless) in the new Akita Beta1, it may even be totally broken!!! :(
[b][url=https://bit.ly/2KjtxoD]Pkg[/url], [url=https://bit.ly/2U6dzxV]mdsh[/url], [url=https://bit.ly/2G49OE8]Woofy[/url], [url=http://goo.gl/bzBU1]Akita[/url], [url=http://goo.gl/SO5ug]VLC-GTK[/url], [url=https://tiny.cc/c2hnfz]Search[/url][/b]

oligin10
Posts: 193
Joined: Sat 17 Jul 2010, 15:47
Location: Buckeye State, USA

Atheros 5k pcmcia card works

#289 Post by oligin10 »

Hi Scott, only have 2 wireless cards to test. Atheros 5k pcmcia card works as it does in all series 4 based puplets. Realtek 8187b usb wifi does not work, same as in other series 4 based puplets. Thanks, Rob
P.S. Are you still looking at producing 2 versions with different kernels?

User avatar
sc0ttman
Posts: 2812
Joined: Wed 16 Sep 2009, 05:44
Location: UK

Re: Atheros 5k pcmcia card works

#290 Post by sc0ttman »

oligin10 wrote:Hi Scott, only have 2 wireless cards to test. Atheros 5k pcmcia card works as it does in all series 4 based puplets. Realtek 8187b usb wifi does not work, same as in other series 4 based puplets. Thanks, Rob
P.S. Are you still looking at producing 2 versions with different kernels?
Thanks for the info, I have added just about every extra driver that tempestuous has made for the 2.6.25.16 kernel, maybe I missed some.. I will check the "Extra Drivers for Puppy 4.1 - k2.6.25.16" thread again.. Maybe I will find something there..

And yes, I am looking at releasing a version with a much updated kernel, with better support for new hardware, and maybe a few more options compiled in as well..

I would need to follow the instructions on "Switching Puppy Kernels" and choose one I like, or build one myself with Iguleders kernel build script.. Stealing a kernel from another puppy would be best, as it would include all the 3rd party drivers and such.. (easier for me!!)..

I am very open to suggestions as to which kernel to choose, I will almost certainly choose one of the Wary kernels, need to read Barry blog a bit... although I am looking for something 'different' to 2.6.25.16 - no point making something the same..

I think sticking with a Wary kernel is best, as we get the 3rd party drivers, barrys kernel expertise, also all the matching udev rules and so on are in Wary, ready to steal :)

But of course, if I stole the Fluppy kernel, I could steal the udev stuff and 3rd party drivers from Fluppy, too... And I am curious to see if I can get it to work well on my EeePC...

Which reminds me, I MUST remember to setup xbindkeysconfog to support the most common netbook and laptop Fn keys .... Pemasu sent me a PM about it a while back, but I didn't get an example rcfile or anything :(

Aside from the steps taken in the "Switching kernels" thread, I am sure udev rules need to be updated, as does mksquashfs (sfs3 to sfs4), and I would really appreciate any other guidance before I actually do it...

Also, I believe Ndiswrapper and wpa_supplicant are supposed to be re-compiled with a new kernel.. And also i195resolution as well (maybe).. So all those things would be to also be stolen from whichever ISO I use to steal a new kernel!


(Sorry if this post look all messed up, I am using elinks right now, can't be bothered to install a 'real' browser... ;) )
Last edited by sc0ttman on Tue 13 Sep 2011, 16:53, edited 1 time in total.
[b][url=https://bit.ly/2KjtxoD]Pkg[/url], [url=https://bit.ly/2U6dzxV]mdsh[/url], [url=https://bit.ly/2G49OE8]Woofy[/url], [url=http://goo.gl/bzBU1]Akita[/url], [url=http://goo.gl/SO5ug]VLC-GTK[/url], [url=https://tiny.cc/c2hnfz]Search[/url][/b]

Post Reply