Page 1 of 1

Puppeee 4.4 back again

Posted: Fri 27 Dec 2013, 17:15
by Mike7
Hi, all.

Back in March, I succeeded in installing Puppeee 4.4 on a 4G pendrive for use with my Asus eeepc 1000HA. I could boot the pendrive and everything was working fine until I lost the op sys for some reason. I had medical issues at the time and couldn't continue.

However, I was later able to re-install Puppeee 4.4 on the same pendrive, and I have been using it happily ever since. Like I said in March, it's a great operating system, and I love the apps.

Don't get me wrong, though. It has a lot of bugs, which is natural for an unfinished project. For example, the suspend function (either by the key sequence or the shutdown window choices) doesn't usually work. Does anybody know why, or how to fix it?

Recently I've had a very vexing problem with Nicoedit. After a forced reboot (low RAM), Nicoedit now opens with a black workspace. No files can be loaded into it. The Nicoedit window is just totally blacked out, except for the drop-down menus and toolbars, which appear normally.

Can anyone here suggest a fix? I miss Nicoedit a lot. I was using it as my main text editor.

Aside from these problems, I love Puppeee 4.4. The included apps are so plentiful and work so well that I haven't needed to install any pets yet. Wireless is fast, and gets me connected when Windows and other Linux versions don't. Plus the pendrive installation routine devised by the Puppeee authors is the cleverest one around, and worked like a charm for me.

I know I should probably switch to Slacko or another recent Puppy, but I'm so content with Puppeee 4.4 that I don't feel like it.

Season's greetings, and thanks again to everyone here in the forum.

Cheers!

Mike

Posted: Fri 27 Dec 2013, 18:22
by ally
hey mike

I am hoping somebody will take on the puppeee baton, it has stood the test of time well enough but could really use a makeover.....

:)

Posted: Sun 29 Dec 2013, 16:28
by Mike7
Hi, Ally. Nice to hear from you.

It would indeed be nice if someone gave it a makeover. I’ve got a list of bugs that need working on.

In the meantime, if someone could help me out with my suspend and Nicoedit problems, that would be great.

Cheers!

Mike

P.S. I wonder how many of these Asus eeePCs are still in use? Must be quite a few, since mine is still running so well (knock on wood).

Posted: Sun 29 Dec 2013, 17:46
by ally
there are 4 in my family, good little tools

I just migrated my daughters systems to pemasu's exprimo which works very well - suspend works!

:)

Posted: Sun 29 Dec 2013, 19:13
by CatDude
Hello Mike7

I can't help you with your suspend problem,
but this
Mike7 wrote:...Recently I've had a very vexing problem with Nicoedit. After a forced reboot (low RAM), Nicoedit now opens with a black workspace. No files can be loaded into it. The Nicoedit window is just totally blacked out, except for the drop-down menus and toolbars, which appear normally.
sounds like it may be a corrupt config file: /root/.NicoEdit.rc
as i can create a similar situation by deliberately corrupting the said config file.

The only difference is i CAN load a file, it appears that it hasn't been loaded,
but if i select all (Ctrl+A) it then becomes visible.


Maybe (to satisfy my curiosity :wink: ) you could try loading a file and selecting all,
just to see if it is in fact loading it.


To fix the problem, the simplest thing would be to delete the config file,
it will be re-created when you next run Nicoedit.

Hope this helps
CatDude
.

Posted: Mon 30 Dec 2013, 00:51
by musher0
Hello, guys.

About the black BG in NicoEdit, a couple of suggestions:

1) close NicoEdit if it's open, remove the /root/.nicodeitrc file, and re-start NicoEdit.
Chances are that NicoEdit can recreate its own "rc" file.

2) If that doesn't work, the following by technosaurus a while back (but where in the haystack that is this forum !?) ;)

Code: Select all

style "default"
{
     GtkTextView::cursor_color ="#32022B"
     base[NORMAL] = "ivory2"
     base[ACTIVE]   = "#4d4b43" 
     base[SELECTED] = "#a09a84" 
     text[NORMAL]   = "#37161C"
     text[ACTIVE]   ="#e5e2d5"
     text[SELECTED] = "#264F26"
}
class "GtkTextView" style "default"
# Fin de l'import du code de technosaurus
You add the above code at the top of the file : /root/.gtkrc.mine
(The color codes are not technosaurus's original colors, I toyed a lot with it.)
This little configuration code should give you some control over the editor's colors.

If you don't have a configuration file called .gtkrc.mine in root, create one by simply typing
from console:

Code: Select all

> ~/.gtkrc.mine
3) Is it possible to change the color of the font (characters) in NicoEdit to white on black?

4) If nothing else works, be happy with geany? :roll:

But I do hope that something will work! BFN.

musher0

Posted: Wed 01 Jan 2014, 18:43
by Mike7
Hi, Ally.
I just migrated my daughters systems to pemasu's exprimo which works very well - suspend works!
I've been reading the exprimo threads. Interesting. I'm sure I'll end up upgrading to exprimo or one of the other recent versions of Puppy. For now, though, I've gotten used to Puppeee4.4 and want to keep it tuned up.

I have a lot to learn about Linux, and a working system that I'm already familiar with is probably the best way to do it.

Happy New Year!

Mike

Posted: Wed 01 Jan 2014, 19:00
by Mike7
Hi, CatDude.
sounds like it may be a corrupt config file: /root/.NicoEdit.rc
as i can create a similar situation by deliberately corrupting the said config file.

The only difference is i CAN load a file, it appears that it hasn't been loaded,
but if i select all (Ctrl+A) it then becomes visible.


Maybe (to satisfy my curiosity :wink: ) you could try loading a file and selecting all,
just to see if it is in fact loading it.
You're right. It does.

To fix the problem, the simplest thing would be to delete the config file, it will be re-created when you next run Nicoedit.
It worked! Thank you very much.

Question: Do all the apps have .rc files that are re-created when you run them?

Cheers and Happy New Year.

Mike

[/quote]

Posted: Wed 01 Jan 2014, 19:18
by Mike7
Hi, musher0.

Deleting the nicoedit.rc file solved the problem.

I'm interested in your code, though, for future experimentation.

Code: Select all

style "default"
{
     GtkTextView::cursor_color ="#32022B"
     base[NORMAL] = "ivory2"
     base[ACTIVE]   = "#4d4b43" 
     base[SELECTED] = "#a09a84" 
     text[NORMAL]   = "#37161C"
     text[ACTIVE]   ="#e5e2d5"
     text[SELECTED] = "#264F26"
}
class "GtkTextView" style "default"
# Fin de l'import du code de technosaurus
Coupla questions about it:
- Does it set the default colors for all text apps?
- Can theme colors still be changed with the usual tools?
- Can it be just as easily removed from gtkrc.mine?

Thanks, and Happy New Year!

Mike

Posted: Fri 10 Jan 2014, 18:38
by BJF
Morning All,

My 2c worth slightly off-topic: My Eeepc is 4 years old now and hasn't missed a beat. Loved Puppeee and currently running Saluki. A very happy Eeep user.

Cheers.

Posted: Sun 12 Jan 2014, 21:46
by musher0
Mike7 wrote:Hi, musher0.

Deleting the nicoedit.rc file solved the problem.

I'm interested in your code, though, for future experimentation.

Code: Select all

style "default"
{
     GtkTextView::cursor_color ="#32022B"
     base[NORMAL] = "ivory2"
     base[ACTIVE]   = "#4d4b43" 
     base[SELECTED] = "#a09a84" 
     text[NORMAL]   = "#37161C"
     text[ACTIVE]   ="#e5e2d5"
     text[SELECTED] = "#264F26"
}
class "GtkTextView" style "default"
# Fin de l'import du code de technosaurus
Coupla questions about it:
- Does it set the default colors for all text apps?
- Can theme colors still be changed with the usual tools?
- Can it be just as easily removed from gtkrc.mine?

Thanks, and Happy New Year!

Mike
Hello, Mike.

Thanks for the interest. Answers to your questions:
Q1: No
Q2: Yes
Q3: Yes

It would be best to track down technosaurus' message in the forum, or PM and ask
him, since he discovered it. I know it's not in
http://murga-linux.com/puppy/viewtopic. ... 64&t=46629
(a nicoedit thread), I just checked.

BFN.

musher0

Posted: Sun 02 Feb 2014, 05:38
by Mike7
Hi, musher0.

Thanks for your reply and the answers to my questions. Sorry for the delay, but I've been out of things since the holidays <grin>.

Cheers!

Mike7

Posted: Sun 02 Feb 2014, 05:43
by Mike7
Hi, BJF.
Loved Puppeee and currently running Saluki.
Is Saluki superior to Puppeee 4.4 (updated apps, bug fixes, etc.)? Would you recommend switching to Saluki?

Thanks.

Mike