Linux - Software This forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum. |
Notices |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
|
 |
12-22-2008, 06:31 PM
|
#1
|
LQ Newbie
Registered: Jul 2008
Posts: 13
Rep:
|
Using windows screen savers (using .scr screen saver files)
Hey y'all!
I've been a Linux user for years but just recently I decided to take the plunge and use Ubuntu Linux as my primary OS (with Windows on the side for any games that don't run well in CrossOver Games).
Anyway, one thing I was curious about was whether or not I could get some of my Windows screen savers to work on Linux. Specifically I had been using " Blue Screen", a cute little ss made by SysInternals that emulates various versions of Windows BSODs.
The file comes as a .scr file (like all Windows screen savers). I wanted to know if there was any program that converted .scr files into Linux compatable screen savers. If not, that's still OK as I've now been rocking " Electric Sheep"!
BTW, I'm running Ubuntu Linux 8.10 on a HP DV9000 with an 1.7GHz Intel Centrino Duo processor, 2GB ram, and an nVidia GeForce Go 7600 graphics card.
|
|
|
12-22-2008, 07:42 PM
|
#2
|
Member
Registered: Dec 2008
Location: Kerala, India
Distribution: Ubuntu 11.10
Posts: 334
Rep:
|
Try after installing wine
few windows applications can be installed in linux thru an application called wine.
google wine +ubuntu
follow it and try ur luck to install favorite screen saver
|
|
|
12-22-2008, 08:26 PM
|
#3
|
LQ Newbie
Registered: Jul 2008
Posts: 13
Original Poster
Rep:
|
Quote:
Originally Posted by vibinlakshman
few windows applications can be installed in linux thru an application called wine.
google wine +ubuntu
follow it and try ur luck to install favorite screen saver
|
Hmmm... I don't think you quite understand what I'm going for. I have a .scr screen saver file and I want to know if I can convert it to a screen saver file that Linux can use. Yes, while wine can run a lot of Windows applications, I want to use a screen saver.
|
|
|
12-22-2008, 09:05 PM
|
#4
|
Gentoo support team
Registered: May 2008
Location: Lucena, Córdoba (Spain)
Distribution: Gentoo
Posts: 4,083
|
He understood perfectly. A .scr file is just a regular PE32 .exe file with a different extension. So, your best bet is wine. Of course, not all will work, just like not all the rest of windows programs work.
Most of them do need the /s flag to run the screensaver portion, otherwise they will launch the config dialog (though some of them need /c for that). So, if you have a screensaver called aquarium in your system32 directory, you would run it like this:
Code:
wine ~/.wine/drive_c/windows/system32/aquarium.scr /s
I think there's some info on winehq, the wiki, etc...
|
|
|
12-22-2008, 09:36 PM
|
#5
|
LQ Newbie
Registered: Jul 2008
Posts: 13
Original Poster
Rep:
|
Quote:
Originally Posted by i92guboj
He understood perfectly. A .scr file is just a regular PE32 .exe file with a different extension. So, your best bet is wine. Of course, not all will work, just like not all the rest of windows programs work.
Most of them do need the /s flag to run the screensaver portion, otherwise they will launch the config dialog (though some of them need /c for that). So, if you have a screensaver called aquarium in your system32 directory, you would run it like this:
Code:
wine ~/.wine/drive_c/windows/system32/aquarium.scr /s
I think there's some info on winehq, the wiki, etc...
|
Oh... I see. Well, I was hoping for something that would integrate better into the desktop environment (ie something I could choose from the `Preferences / Screen Saver` tab).
I did try doing what you suggested, but the ss I was working with didn't work. Ah, well... it was worth a try.
|
|
|
12-22-2008, 10:58 PM
|
#6
|
Gentoo support team
Registered: May 2008
Location: Lucena, Córdoba (Spain)
Distribution: Gentoo
Posts: 4,083
|
Quote:
Originally Posted by RussellChamp
Oh... I see. Well, I was hoping for something that would integrate better into the desktop environment (ie something I could choose from the `Preferences / Screen Saver` tab).
I did try doing what you suggested, but the ss I was working with didn't work. Ah, well... it was worth a try.
|
I see. Now I understand what you wanted (and it was a natural thing to expect after all  ). However, being it a binary program there's no easy way to just convert it to work to linux unless you have the source code (and even then it will require extra work).
|
|
|
12-23-2008, 09:16 AM
|
#7
|
LQ Guru
Registered: Oct 2005
Location: Northeast Ohio
Distribution: linuxdebian
Posts: 7,249
Rep: 
|
You know there is a BSOD screensaver in Linux already right ? No need to transfer one from Windows.
apt-get install xscreensaver-data-extra
http://packages.ubuntu.com/feisty/i3...extra/filelist
Quote:
/usr/lib/xscreensaver/anemone
/usr/lib/xscreensaver/anemotaxis
/usr/lib/xscreensaver/ant
/usr/lib/xscreensaver/apollonian
/usr/lib/xscreensaver/apple2
/usr/lib/xscreensaver/attraction
/usr/lib/xscreensaver/barcode
/usr/lib/xscreensaver/blaster
/usr/lib/xscreensaver/blitspin
/usr/lib/xscreensaver/bouboule
/usr/lib/xscreensaver/boxfit
/usr/lib/xscreensaver/bsod
/usr/lib/xscreensaver/bubbles
/usr/lib/xscreensaver/bumps
/usr/lib/xscreensaver/ccurve
.
.
.
.
etc..
|
|
|
|
12-23-2008, 02:21 PM
|
#8
|
LQ Newbie
Registered: Jul 2008
Posts: 13
Original Poster
Rep:
|
Well, thanks, guys... Here I thought that something as "simple" as a screensaver would be very module, easy, and portable. I guess I was very mistaken! I did check out the extra screen saver pack. However, that BSOD wasn't quite the same quality that the SysInternals one was. For now, I guess I'll just keep using "Electric Sheep".
Thanks to both of you, once again.
Thread closed. (Unless there's any new info.)
|
|
|
All times are GMT -5. The time now is 10:18 AM.
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|