Warning: session_start(): open(/tmp/sess_7ejvipcgb6pbra3upqlcusg0h4, O_RDWR) failed: No space left on device (28) in /www/H01/htdocs/lib/base/lib_base.php on line 280
KSetiSaver openDesktop.org
-
 KDE-Apps.org Applications for the KDE-Desktop 
 GTK-Apps.org Applications using the GTK Toolkit 
 GnomeFiles.org Applications for GNOME 
 MeeGo-Central.org Applications for MeeGo 
 CLI-Apps.org Command Line Applications 
 Qt-Apps.org Free Qt Applications 
 Qt-Prop.org Proprietary Qt Applications 
 Maemo-Apps.org Applications for the Maemo Plattform 
 Java-Apps.org Free Java Applications 
 eyeOS-Apps.org Free eyeOS Applications 
 Wine-Apps.org Wine Applications 
 Server-Apps.org Server Applications 
 apps.ownCloud.com ownCloud Applications 
--
-
 KDE-Look.org Artwork for the KDE-Desktop 
 GNOME-Look.org Artwork for the GNOME-Desktop 
 Xfce-Look.org Artwork for the Xfce-Desktop 
 Box-Look.org Artwork for your Windowmanager 
 E17-Stuff.org Artwork for Enlightenment 
 Beryl-Themes.org Artwork for the Beryl Windowmanager 
 Compiz-Themes.org Artwork for the Compiz Windowmanager 
 EDE-Look.org Themes for your EDE Desktop 
--
-
 Debian-Art.org Stuff for Debian 
 Gentoo-Art.org Artwork for Gentoo Linux 
 SUSE-Art.org Artwork for openSUSE 
 Ubuntu-Art.org Artwork for Ubuntu 
 Kubuntu-Art.org Artwork for Kubuntu 
 LinuxMint-Art.org Artwork for Linux Mint 
 Arch-Stuff.org Art And Stuff for Arch Linux 
 Frugalware-Art.org Themes for Frugalware 
 Fedora-Art.org Artwork for Fedora Linux 
 Mandriva-Art.org Artwork for Mandriva Linux 
--
-
 KDE-Files.org Files for KDE Applications 
 OpenTemplate.org Documents for OpenOffice.org
 GIMPStuff.org Files for GIMP
 InkscapeStuff.org Files for Inkscape
 ScribusStuff.org Files for Scribus
 BlenderStuff.org Textures and Objects for Blender
 VLC-Addons.org Themes and Extensions for VLC
--
-
 KDE-Help.org Support for your KDE Desktop 
 GNOME-Help.org Support for your GNOME Desktop 
 Xfce-Help.org Support for your Xfce Desktop 
--
openDesktop.orgopenDesktop.org:   Applications   Artwork   Linux Distributions   Documents    Linux42.org    OpenSkillz.com   
 
Home
Apps
Artwork
News
Groups
Knowledge
Events
Forum
People
Jobs
Register
Login


-
- Content .- Fans  . 

KSetiSaver

   0.3.4  

KDE Screensaver

Score 56%
KSetiSaver
zoom


KSetiSaver
zoom


KSetiSaver
zoom


Link:  Link
Downloads:  20008
Submitted:  Mar 1 2002
Updated:  Jun 2 2003

Description:

Hi!

I developed this KDE screensaver which monitors a running Linux CLI client.

READ the README file very careful, and check the KSetiSaver homepage if you run into problems***


--------------------------------------
If you have questions feel free to mail: sebastian@frozenlight.de
---------------------------------------




Changelog:

A small bugfix release. This time all the fame should go to Sebastian Muszynski (basti@linkt.de) because he has done all fixes.

KSetiSaver
- is now able to handle client & data in different directories correctly (this was quite messed up)
- the error messages are more descriptive in some cases




LicenseGPL
Send to a friend
Subscribe
Other  Content  from jisi
Report inappropriate content



goto page: prev   1  2  3  4 

-

 404

 
 by Eudial on: Oct 5 2002
 
Score 50%

;-;

it's a 404 error!


Reply to this

-
.

 Error w' Mandrake9.0

 
 by jsheedy on: Oct 8 2002
 
Score 50%

I cant get it to run under Mandrake 9.0. Seti works fine at a command prompt, but kseti complains about not being able to open file.

Here is what is says.
Couldn't open state.sah in directory /files/multimedia/seti
RETURNDED 0

The file is in the dir and has rw perms for my current user.

Not sure. Thanks for any help


Reply to this

-

 I got this error too

 
 by holywen on: Oct 29 2002
 
Score 50%

I downloaded the latest command line
client ,and it comes with a xsetiathome,when I run the setiathome with a -graphics parameter,the xsetiathome works just fine.
but the screensaver just thow out a "cann't locate /opt/setiathome/state.sah ".and that file is exactly at the right place and the permission is rw for everyone(I changed to this after I saw this error ),but,not work at all.


Reply to this

-

 fixed,code is here.

 
 by holywen on: Oct 29 2002
 
Score 50%

you should change setiparse.cpp.
the following is diffrences between the old (setiparse.cpp) and the new (setiparse1.cpp).
root@holy-note:ksetisaver# diff setiparse.cpp setiparse1.cpp
70c70
ifstream in_st;
72,73c72,73
in_st.open(currFile.c_str());
> if (!in_st)
78,79c78,79

> while (in_st)
81c81
getline(in_st,currLine); //C++ I/O sucks...
84c84
in_st.close();
86a87
> ifstream in_ui;
88,89c89,91
std::cout in_ui.open(currFile.c_str());
> if (!in_ui)
95c97
while (in_ui)
97c99
getline(in_ui,currLine); //C++ I/O sucks...
100c102
in_ui.close();
102a105
> ifstream in_wu;
104,105c107,108
in_wu.open(currFile.c_str());
> if (!in_wu)
111c114
while (in_wu)
113c116
getline(in_wu,currLine); //C++ I/O sucks...
116c119
in_wu.close();


Reply to this

-

 fixed,code is here.

 
 by holywen on: Oct 29 2002
 
Score 50%

you should change setiparse.cpp.
the following is diffrences between the old (setiparse.cpp) and the new (setiparse1.cpp).
root@holy-note:ksetisaver# diff setiparse.cpp setiparse1.cpp
70c70
ifstream in_st;
72,73c72,73
in_st.open(currFile.c_str());
> if (!in_st)
78,79c78,79

> while (in_st)
81c81
getline(in_st,currLine); //C++ I/O sucks...
84c84
in_st.close();
86a87
> ifstream in_ui;
88,89c89,91
std::cout in_ui.open(currFile.c_str());
> if (!in_ui)
95c97
while (in_ui)
97c99
getline(in_ui,currLine); //C++ I/O sucks...
100c102
in_ui.close();
102a105
> ifstream in_wu;
104,105c107,108
in_wu.open(currFile.c_str());
> if (!in_wu)
111c114
while (in_wu)
113c116
getline(in_wu,currLine); //C++ I/O sucks...
116c119
in_wu.close();


Reply to this

-

 fixed,code is here.

 
 by geekboy2000 on: Dec 3 2002
 
Score 50%

I modified setiparse, got it to compile fine, but still, I get the error with respect to the .sah file. Setiathome works fine from the console, but KSetiSaver can't seem to find the .sah files. I'm running KDE 3.0.5-1 w/Redhat 8.0


Reply to this

-
.

 ksetisaver 3.2

 
 by BOSSoNe on: Dec 16 2002
 
Score 50%

is out!
you can download the new version with KDE3 bugfixe on Sebastian's site and MDK9.0 rpms on my site.


Reply to this

-

 Can't find data

 
 by geekboy2000 on: Dec 20 2002
 
Score 50%

I just grabbed 3.2, but it still complains on startup that it can't find the data in /usr/bin. The user data, etc is there. I'm running RH 8/KDE 3.0.5-1. Any suggestions? Thanks!


Reply to this

-

 set data location

 
 by BOSSoNe on: Dec 20 2002
 
Score 50%

there is 2 ways to set the data directory.
first you have data and seti client in the same dir, so you have to check the "same data and client dir" option and to set the correct path of the client eg:
/usr/local/seti/
else, don't check the option and set the two corrects paths.


Reply to this

-

 Data and bin path

 
 by geekboy2000 on: Dec 20 2002
 
Score 50%

I do have both the data and bin in the same directory (/usr/bin), and have the box checked indicating that they are in the same directory/path, but I still get that error. I see an earlier tip about deleting the rc file for ksetisaver and starting over. I'll give that a try. Thanks.


Reply to this

-

 still same problem

 
 by geekboy2000 on: Dec 20 2002
 
Score 50%

It (ksetisaver) is indicating that it can't access state.sah. I just confirmed the file is in the /usr/bin directory along with setiathome and ksetisaver, so I'm stumped once again. I did delete the ksetisaverrc file, and configured it again, but still, the same problem.


Reply to this

-

 Found problem

 
 by geekboy2000 on: Dec 20 2002
 
Score 50%

My profound apologies if this is a "RTFM" issue, but it was as simple as me not using the trailing "/" at the end of the paths! Man thanks for a great app, it's working!! :)


Reply to this

-

 mandrake 9 rpm's 3.3

 
 by zsoltb on: Dec 21 2002
 
Score 50%

with KsetiSaver.desktop on the right place ;-)

http://members.chello.at/zsolt.berczes/software/ksetisaver-0.3.3-1mdk.i586.rpm
http://members.chello.at/zsolt.berczes/software/ksetisaver-0.3.3-1mdk.src.rpm


Reply to this

-

 rpms

 
 by BOSSoNe on: Dec 21 2002
 
Score 50%

sorry but there's a little misfunction in your packages.
you have'nt correctly set some params of the rpm like rpm cat.
So you can download officials GPG signed packages on my site:
http://b1project.com


Reply to this

-

 Your rpms?

 
 by jsheedy on: Mar 6 2003
 
Score 50%

I am not sure your rpms are correctly setup either. When I reboot the system the screensave is gone. Does some type of enter need to be in /usr/lib/menu?
J


Reply to this

-

 Cool but hard

 
 by xeon on: Dec 9 2003
 
Score 50%

Finally i got it!
A very good and cool work, i especially like that it shows me lots of thing that seti does and that in the winzozz client there arent.
The funny thing is that it took me 2 days to compile and install it...boring bug, i need to do a 'make distclean' after ./configure, or else make report an error...(compiling from .tar.gz 0.3.4)


Reply to this

-

 checking for X

 
 by botman on: Jan 26 2004
 
Score 50%

hi, I have a problem when runing ./configure. after it says checking for X... it gives me the error: can't find X includes. What's it looking for? many thanks for helping a newbie.


Reply to this

goto page: prev   1  2  3  4 

Add commentBack




-



 
 
 Who we are
Contact
More about us
Frequently Asked Questions
Register
Twitter
Blog
Explore
Apps
Artwork
Jobs
Knowledge
Events
People
Updates on identi.ca
Updates on Twitter
Content RSS   
Events RSS   

Participate
Groups
Forum
Add Content
Public API
About openDesktop.org
Legal Notice
Spreadshirt Shop
CafePress Shop
Advertising
Sponsor us
Report Abuse
 

Copyright 2007-2016 openDesktop.org Team  
All rights reserved. openDesktop.org is not liable for any content or goods on this site.
All contributors are responsible for the lawfulness of their uploads.
openDesktop is a trademark of the openDesktop.org Team