| Author |
Message |
sheepy

Joined: 06 May 2011 Posts: 230 Location: GA
|
Posted: Sun 26 Aug 2012, 12:43 Post subject:
SlimPup 3.7 |
|
Download: http://sourceforge.net/projects/slimpuplinux/files/SlimPup/SlimPup_3.7.iso/download
Project Homepage: http://www.slimpup.com
Screenshot: http://i.imgur.com/GWufp.jpg
New Software
Conky Themer
LMMS 0.4.10
ZynAddSubFX
amSynth
SpaceFM
Xorg graphic drivers out-of-the-box
nmap with nmapsi4
hexedit
Updates
Chromium updated to 18.0.1025.151
GIMP updated to 2.6.11
FFConvert updated to 1.3
Skype updated to 4.0.0.7
New GTK themes
Flash plugin updated
GTalk plugin updated
Clementine removed and replaced with Audacious again
PupSnap default settings adjusted
New default GTK, Openbox, and Rox themes
Bug Fixes
Black screen bug with Rox themer fixed
Executable permissions fixed
"Open With" icons in Rox fixed
Please report any bugs or questions here. Thank you
|
|
Back to top
|
|
 |
musher0

Joined: 04 Jan 2009 Posts: 2195 Location: Gatineau (Qc), Canada
|
Posted: Thu 30 Aug 2012, 23:40 Post subject:
|
|
Hello, sheepy.
Problem with any GTK or openbox theme that's not black or dark: character set colour remains white or white-ish, in other words unreadable. Poor user...
Otherwise looks good, great concept, but... funny how a little detail like that can spoil months of work, eh?
Please provide a way to change the font colour, and your implementation will be really great.
Also, there seems to be no easy way to mount drives on your distro. Access to pmount is not intuitive, as from a menu.
Best regards.
_________________
"...l'industrie de l'informatique n'aura besoin que de très peu de temps pour ramener l'humanité aux dessins rupestres." (M. Goebbel, Order of the Command Line; [ma trad.])
|
|
Back to top
|
|
 |
sheepy

Joined: 06 May 2011 Posts: 230 Location: GA
|
Posted: Sat 08 Sep 2012, 05:08 Post subject:
|
|
| musher0 wrote: | Hello, sheepy.
Problem with any GTK or openbox theme that's not black or dark: character set colour remains white or white-ish, in other words unreadable. Poor user...
Otherwise looks good, great concept, but... funny how a little detail like that can spoil months of work, eh?
Please provide a way to change the font colour, and your implementation will be really great.
Also, there seems to be no easy way to mount drives on your distro. Access to pmount is not intuitive, as from a menu.
Best regards. |
Hello,
Thanks for notifying me, I will fix that in the next version. To change the font color in Rox, right-click any blank space, choose "options," then "colours."
You are right there there is not a fast enough method of mounting drives! The quickest way is by opening PupControl, where it is located at the bottom. I have been contemplating adding pmount to the main menu for a while now. Hmm, I may very well do so in the next version, thank you!
|
|
Back to top
|
|
 |
greengeek
Joined: 20 Jul 2010 Posts: 1184 Location: New Zealand
|
Posted: Sat 27 Oct 2012, 05:06 Post subject:
|
|
Sheepy - I'm considering loading the gtk-youtube downloader mentioned here:
http://www.murga-linux.com/puppy/viewtopic.php?t=76835
Which one of those versions would be suitable for 3.7 (what repo is it based on please?)
Also, is this idea possibly redundant? Is there already something similar already installed in 3.7 that you use to find/download YT stuff?
cheers
EDIT I decided the lupu one was the correct one and have loaded it - but I can't find it in a menu anywhere. Any suggestions?
Last edited by greengeek on Sat 27 Oct 2012, 05:39; edited 1 time in total
|
|
Back to top
|
|
 |
greengeek
Joined: 20 Jul 2010 Posts: 1184 Location: New Zealand
|
Posted: Sat 27 Oct 2012, 05:38 Post subject:
|
|
| musher0 wrote: | | Also, there seems to be no easy way to mount drives on your distro. Access to pmount is not intuitive, as from a menu. |
The mounting difficulty was fustrating for me too, so I placed sunburnt's "mnt_all" script in the /root/startup folder (and renamed it to "Zmnt_all" so it would run after anything else that was already programmed in Startup). Works well, so that now filesave dialogs can immediately find all drives premounted. (and I just rightclick the desktop and select filemanager to find anything else I am looking for). Maybe not as elegant as an icon on the desktop - but hey, I am enjoying the crisp icon-free look.
(and I just found out that I can set up browser bookmarks to the mounted drives as in this example:
That way once I'm in the browser I can just open another tab to do my local hardrive filebrowsing and not even use the normal filemanager)
Here is the script:
| Code: |
#!/bin/sh
######### This script mounts all partitions found.
### Use at your own risk... No warranty!
# For auto. mounting at bootup, put this script in Puppy folder: /root/Startup
# After bootup, if other drives are plugged in, run mnt-all again to mount them.
# This gets a list of all partition info. except swap and optical drives.
List=`probepart |egrep -v '(swap|sr|none)'`
# This "for" loop steps through the list one partiton at a time.
for Line in $List
do
Part=${Line%%\|*} # Get only partition.
Part=${Part##*/}
[ "`df |grep $Part`" ]&& continue # Don`t mount, if done already.
Type=${Line%\|*} # Get file system type.
Type=${Type##*\|}
[ -d /mnt/$Part ]|| mkdir /mnt/$Part # Make the mount dir., if none.
mount -t $Type /dev/$Part /mnt/$Part # Mount the partition.
echo "# Mount Partition: $Part Type: $Type" # Display mount info.
done
|
|
|
Back to top
|
|
 |
greengeek
Joined: 20 Jul 2010 Posts: 1184 Location: New Zealand
|
Posted: Tue 30 Oct 2012, 04:44 Post subject:
|
|
Also - if you want newly plugged in usb sticks to be easily mounted it is possible to alter the /etc/eventmanager file so that "hotplug" events bring up Pmount.
Navigate to /etc/eventmanager and "open as text", then look about halfway down and find "HOTPLUGNOISY" and change it from FALSE to TRUE.
That way when you plug in a usb stick Pmount will pop up and give you the chance to mount it, and then easliy unmount it when you've finished with it.
|
|
Back to top
|
|
 |
sheepy

Joined: 06 May 2011 Posts: 230 Location: GA
|
Posted: Fri 02 Nov 2012, 23:38 Post subject:
|
|
| greengeek wrote: | Sheepy - I'm considering loading the gtk-youtube downloader mentioned here:
http://www.murga-linux.com/puppy/viewtopic.php?t=76835
Which one of those versions would be suitable for 3.7 (what repo is it based on please?)
Also, is this idea possibly redundant? Is there already something similar already installed in 3.7 that you use to find/download YT stuff?
cheers
EDIT I decided the lupu one was the correct one and have loaded it - but I can't find it in a menu anywhere. Any suggestions? |
There is! If you open Firefox, it has the Ant Downloader addon preinstalled. It will allow you to download Youtube videos and many other sites too.
Also, the reason why it is not in the menu is because slimpup does not use the XDG menu that automatically adds things to it (it is very cluttered in my opinion). If you just right click > settings > appearance > openbox menu, you can use this simple GUI to edit and customize the items in the openbox right-click menu.
| greengeek wrote: | Also - if you want newly plugged in usb sticks to be easily mounted it is possible to alter the /etc/eventmanager file so that "hotplug" events bring up Pmount.
Navigate to /etc/eventmanager and "open as text", then look about halfway down and find "HOTPLUGNOISY" and change it from FALSE to TRUE.
That way when you plug in a usb stick Pmount will pop up and give you the chance to mount it, and then easliy unmount it when you've finished with it. |
Good idea! I may add this in the next update
|
|
Back to top
|
|
 |
rincon155

Joined: 11 Mar 2011 Posts: 77 Location: Venezuela
|
Posted: Fri 09 Nov 2012, 10:35 Post subject:
Is there a bug booting up? |
|
I have an inconsistency booting up SlimPup 3.7 from CD-RW. Two out of three times SlimPup did not enter, and my permanent OS in HDD booted instead.
In addition, when I tried to save settings in the CD, the system did not respond, and I had to do a hard reset. I made the ISO using the "SAO" option, to allow latter for the savefile in it.
I verified my hardware booting with Puppy Linux 5.4 "Precise" and it responded fast as expected. In this case the CD-R was burnt with the "Finalize" option.
Please advice. Thank you.
|
|
Back to top
|
|
 |
sheepy

Joined: 06 May 2011 Posts: 230 Location: GA
|
Posted: Thu 15 Nov 2012, 19:15 Post subject:
Re: Is there a bug booting up? |
|
| rincon155 wrote: | I have an inconsistency booting up SlimPup 3.7 from CD-RW. Two out of three times SlimPup did not enter, and my permanent OS in HDD booted instead.
In addition, when I tried to save settings in the CD, the system did not respond, and I had to do a hard reset. I made the ISO using the "SAO" option, to allow latter for the savefile in it.
I verified my hardware booting with Puppy Linux 5.4 "Precise" and it responded fast as expected. In this case the CD-R was burnt with the "Finalize" option.
Please advice. Thank you. |
Hello,
I have never experienced unresponsiveness when trying to save settings to the CD. Hmmm. I know there is a command in puppy to save changes to disc while still in X, but I do not remember the command.
What is the permanent OS you have on HDD? Can you give me your hardware specs? Also, have you tried burning slimpup using the finalize option instead of SAO?
|
|
Back to top
|
|
 |
rincon155

Joined: 11 Mar 2011 Posts: 77 Location: Venezuela
|
Posted: Fri 16 Nov 2012, 09:38 Post subject:
Inconsistency booting and unable to make savefile in CD-RW |
|
sheepy: I tried in a Acer Aspire 3002 WLCi.
Please kindly see in this link the specifications:
http://www.superwarehouse.com/Acer_Aspire_3002WLCi/LX.A5506.005/p/602558
I will try again burning the iso with the finalize option and will post.
|
|
Back to top
|
|
 |
rincon155

Joined: 11 Mar 2011 Posts: 77 Location: Venezuela
|
Posted: Sun 18 Nov 2012, 16:39 Post subject:
Unable to save to DVD or CD |
|
sheepy: I tried all these but could not save session in CD or DVD:
SlimPup 3.7 in CD-R, CD-RW, DVD-R, DVD-RW
SlimPup 2.4 in CD-R, CD-RW, DVD-R, DVD-RW
I also tried with SAO and Finalize options.
I do not recall all error messages but the last one using the DVD-RW was:
"Unable to pread64 (2) primary volume descriptor"
Then I opted for the option to save in a new DVD-R, placed it, I had no error message but nothing was saved in the media.
I tried in Laptop Acer Aspire 3002 WLCi and in a PC selfmade (AMD FX-4100 in MSI 760GM-P21(FX)).
The inconsistency at boot mentioned in my previous post in the Acer Laptop seems to be an erratic behaviour of the CD unit.
Permanent OS's are:
In Acer laptop: Windows XP and Bodhi32 (dual boot)
In PC: Windows 7 and PCLOS KDE (dual boot in separate physical HDD)
|
|
Back to top
|
|
 |
oldyeller

Joined: 15 Nov 2011 Posts: 468 Location: Mishawaka IN
|
Posted: Sun 03 Feb 2013, 14:45 Post subject:
|
|
Hi sheepy,
I really like what you have done with SlimPup. Is this a woof build using EZ-Woof?
also is there a panel like tint2 because I don't see any?
Cheers
|
|
Back to top
|
|
 |
toomanyquestions
Joined: 08 Jan 2013 Posts: 39
|
Posted: Mon 18 Feb 2013, 14:49 Post subject:
panel? |
|
| oldyeller wrote: | | is there a panel like tint2 |
I had the same question...
|
|
Back to top
|
|
 |
Gnuxo
Joined: 09 Feb 2012 Posts: 360
|
Posted: Tue 19 Feb 2013, 22:03 Post subject:
|
|
Will there be a Slimpup based on puppy precise?
|
|
Back to top
|
|
 |
toomanyquestions
Joined: 08 Jan 2013 Posts: 39
|
Posted: Sat 23 Feb 2013, 16:40 Post subject:
"------" based slimpup |
|
| Gnuxo wrote: | | Will there be a Slimpup based on puppy precise? |
Nay! nay! How about a slimpup based on slacko? Slimpup & Precise official won't run on my pentium 4. Yet I believe slacko based pupex will...
|
|
Back to top
|
|
 |
|