Sponsored Content
Full Discussion: Xfce installer script
Top Forums Shell Programming and Scripting Xfce installer script Post 302833233 by cesar-rgon on Tuesday 16th of July 2013 02:29:52 PM
Old 07-16-2013
Ubuntu Xfce installer script

Xfce desktop installer script on Ubuntu for home, office or server computers.

This script installs Xfce desktop and a set of programs according to user needs starting from an Ubuntu Server base system. It's valid for netbooks, notebooks, desktop computers and servers.

For more information visit the website: Xfce Installer
Facebook english: https://www.facebook.com/pages/Xfce-...60772053963955
Facebook spanish: https://www.facebook.com/XfceInstaller

I hope you find it useful. Greetings.

Last edited by cesar-rgon; 07-16-2013 at 08:23 PM.. Reason: Add url links
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Installing Xfce?

I'm running Debian and doesn't really like gnome nor KDE and read about this XFce that ought to be a more simple X which is exactly what I'm looking for. So I re-installed the bare minimums of Debian and here I am, with nothing but Links/Lynx vim and apt-get (lovely isn't it?) trying to configure... (1 Reply)
Discussion started by: riwa
1 Replies

2. Shell Programming and Scripting

Installer script -- function not found error

I am writing an installation script on AIX. This involves typical checks of some pre requisites like java, oracle, some version checks, disk space etc. It is a long script. I am facing a strange problem. There are a no of functions used in the script. What I see is that the installer complains of... (1 Reply)
Discussion started by: asutoshch
1 Replies

3. UNIX Desktop Questions & Answers

xfce like cde

At the moment I am using Ubuntu hardy on my desktop. I am going to be adding other Linux's and maybe FreeBSD. I use gnome for special effects, eye candy, and plain old show off stuff. But I want to have a simple DE in my computer installed. I like the way CDE looks and the reviews about its... (7 Replies)
Discussion started by: Texasone
7 Replies

4. Ubuntu

Webcam on xfce?

Hey guys. I'm about as new to Linux as you can get, so bear with me please. I installed Xubuntu on my old laptop to tinker with.. figured it would be a good use of an old machine. One thing I'd like to set up is some security with a webcam. Logitech QuickCam Pro 4000 to be exact. I went about... (22 Replies)
Discussion started by: Chesh
22 Replies

5. UNIX for Dummies Questions & Answers

Installer script needs to determine own location...

My n00b question: I am trying to write a script that I can place on a flash drive and then move from computer to computer and install a file, which is bundled with the script. (ie the script is at /Volumes/FlashDrive/Folder/Script, the file is at /Volumes/FlashDrive/Folder/File) So far I have... (1 Reply)
Discussion started by: madmacs
1 Replies

6. BSD

Xfce not autostarting after logging in

Xfce used to start up automatically on a FreeBSD 7.1 machine, but as of late this is not happening anymore. This means that the user has to enter "startxfce4" right after entering username and password. The .xsession file has the following contents: # cat /usr/home/user01/.xsession ... (8 Replies)
Discussion started by: figaro
8 Replies

7. Red Hat

Where's the XFCE folder?

If a few of you look on FedoraForums, you'll find that a little while ago, I went on a desktop installing spree. I just have a small question about XFCE desktop. In my user directory, I see .kde, .mate, and .trinity. (all three are directories), but I have XFCE 4.8 installed along with the others.... (0 Replies)
Discussion started by: Ihatewindows
0 Replies

8. Shell Programming and Scripting

Yet another simple script installer

Heyas Just recently i tried to apply the GNU Autotools to my project, while it was possible, it took forever to know where to create which files and what to place in each of them. Dare you making a space rather than a tab! Inspired by GNU Autotools, and overhelmed by its functionality and... (0 Replies)
Discussion started by: sea
0 Replies

9. Shell Programming and Scripting

Installer is shell script not working

Hi Guys, I have one installer shell script which normally get from the dev team to install the app and it works fine for years (in IAX) the same installer/script iam trying to run in Linux 7.2 but it stuck somewhere which I cannot debug, can you help me to point out where it stuck . here is the... (9 Replies)
Discussion started by: Riverstone
9 Replies

10. Shell Programming and Scripting

YASSI - Yet Another Simple Script Installer (2020 edition)

Heyas As someone said he'd like to see some more projects posts on the forum, so, here's one I hope is ready. Not so much fun-fun, but practical ;) I hope... So, you have that small non-arch project you would like to install, but get the feeling that GNU Autoconf is a bit too 'massive' for... (2 Replies)
Discussion started by: sea
2 Replies
WWW::Facebook::API::Auth(3pm)				User Contributed Perl Documentation			     WWW::Facebook::API::Auth(3pm)

NAME
WWW::Facebook::API::Auth - Facebook Authentication SYNOPSIS
use WWW::Facebook::API; DESCRIPTION
Methods for accessing auth with WWW::Facebook::API SUBROUTINES
/METHODS base Returns the WWW::Facebook::API base object. new Constructor. create_token() auth.createToken of the Facebook API. Will always return the token string, regardles of the "parse" setting in WWW::Facebook::API: $token = $client->auth->create_token; get_session( $token ) auth.getSession of the Facebook API. If you have the desktop attribute set to true and $token isn't passed in, the return value from "$client->auth->create_token" will be used. If the desktop attribute is set to false the $token must be the auth_token returned from Facebook to your web app for that user: if ( $q->param('auth_token') ) { $client->auth->get_session( $q->param('auth_token') ); } "get_session" automatically sets "session_uid", "session_key", and "session_expires" for $client. It returns nothing. login( sleep => $sleep , browser => $browser_cmd ) Only for desktop apps. It first calls "create_token" to get a valid token. It then opens the user's default browser and have them sign in to the Facebook application. If "browser" is passed in, the module will use that string as the command to execute, e.g.: system qq($browser_cmd "$login_url"); After the browser is called, it will pause for $sleep seconds (or 15 seconds if $sleep is not defined), to give the user time to log in. The method returns the session token created by "create_token". expire_session( %params) Implementation of the auth.expireSession function. $result = $client->auth->expire_session(); promote_session( %params) Implementation of the auth.promoteSession function. $result = $client->auth->promote_session(); revoke_authorization( %params) Implementation of the auth.revokeAuthorization function. $result = $client->auth->revoke_authorization(); revoke_extended_permission( %params) Implementation of the auth.revokeExtendedPermission function. $result = $client->auth->revoke_extended_permission( perm => 'email', uid => $uid ); logout() Sends a POST to http://www.facebook.com/logout.php, with the parameter "confirm" set to 1 (Cf. http://developers.facebook.com/documentation.php?v=1.0&doc=auth ) PRIVATE METHODS
_use_http_uri() Makes the WFA object's server URI scheme http. Uses "_flip_scheme". _use_https_uri() Makes the WFA object's server URI scheme https. Uses "_flip_scheme". _flip_scheme( $make_https ) If $make_https is true, the scheme becomes https. If false, the scheme becomes http. The WFA object's "server_uri" attribute is then set to use that scheme. DIAGNOSTICS
Token needed for call to get_session You are running a desktop app and you did not pass a token into get_session. You can create a token by calling create_token() or (better) login(). You are running a web app and the user hasn't logged in to Facebook for your web app. When the user does so, an auth_token will be returned (as a parameter) to your callback url. Use that auth_token for the session. Don't know how to open browser for the system %s The module doesn't know the command to use to open a browser on the given system. If you passed in "browser" to login(), it can use that string as the command to execute to open the login url. Cannot use login method with web app The login() method is not able to be used to sign in when using a web app. See the Facebook TOS A.9.iv. CONFIGURATION AND ENVIRONMENT
WWW::Facebook::API::Auth requires no configuration files or environment variables. DEPENDENCIES
See WWW::Facebook::API INCOMPATIBILITIES
None. BUGS AND LIMITATIONS
No bugs have been reported. Please report any bugs or feature requests to "bug-www-facebook-api@rt.cpan.org", or through the web interface at <http://rt.cpan.org>. AUTHOR
David Romano "<unobe@cpan.org>" LICENSE AND COPYRIGHT
Copyright (c) 2007-2010, David Romano "<unobe@cpan.org>". All rights reserved. This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself. See perlartistic. DISCLAIMER OF WARRANTY
BECAUSE THIS SOFTWARE IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE SOFTWARE, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE SOFTWARE "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE SOFTWARE IS WITH YOU. SHOULD THE SOFTWARE PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR, OR CORRECTION. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE SOFTWARE AS PERMITTED BY THE ABOVE LICENSE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE SOFTWARE (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE SOFTWARE TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. perl v5.10.1 2010-03-13 WWW::Facebook::API::Auth(3pm)
All times are GMT -4. The time now is 01:09 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy