Showing posts with label Ubuntu. Show all posts
Showing posts with label Ubuntu. Show all posts

Friday, June 19, 2015

WildFly 8.2.0 as service on Ubuntu 14.04

WildFly 8.2.0 on Ubuntu 14.04


sudo -s root
cd /opt
groupadd wildfly
adduser --no-create-home --disabled-password --disabled-login wildfly
wget http://download.jboss.org/wildfly/8.2.0.Final/wildfly-8.2.0.Final.tar.gz
tar -xzvf wildfly-8.2.0.Final.tar.gz
ln -s wildfly-8.2.0.Final wildfly
chown -R wildfly.wildfly wildfly
chown -R wildfly.wildfly wildfly-8.2.0.Final
cd /etc/default
ln -s /opt/wildfly/bin/init.d/wildfly.conf wildfly
cd /etc/init.d
ln -s /opt/wildfly/bin/init.d/wildfly-init-debian.sh wildfly
service wildfly start
cd /etc/init.d
update-rc.d wildfly defaults

INSTALLING WILDFLY AS SERVICE on CENTOS, Fedora

PostgreSQL Datasource on WildFly 8.2.0



Sunday, October 13, 2013

Sopcast player on Ubuntu



http://www.webupd8.org/2012/04/tv-maxe-07-released-ubuntu-ppa.html


TV-Maxe is an application that you can use to watch TV stations online, through a P2P technology called SopCast


To install the latest TV-Maxe in Ubuntu 14.04, 12.04, use the commands below:

sudo add-apt-repository ppa:venerix/pkg
sudo apt-get update
sudo apt-get install tv-maxe

Note: if TV-Maxe doesn’t work properly for you, try changing the player backend from GStreamer to Mplayer of VLC (in the TV-Maxe menu select Preferences and on the General Settings tab, select the backend under Player settings):

Monday, October 7, 2013

Gnome Classic in Ubuntu 12.04 (Precise Pangolin)


   To get started, press Ctrl – Alt – T on your keyboard to open Terminal.
When it opens, run the commands below to enable Gnome Classic.

sudo apt-get install gnome-session-fallback 

Restart and on the logon screen, click the option to change your session.
Then choose Gnome Classic to logon.

http://www.liberiangeek.net/2012/03/return-to-gnome-classic-in-ubuntu-12-04-precise-pangolin/

Install Classic Menu Indicator in Ubuntu 12.04 (Precise Pangolin)

http://www.liberiangeek.net/2012/05/install-classic-menu-indicator-in-ubuntu-12-04-precise-pangolin/

Are you finding it hard to browse and find what you’re looking for in Ubuntu?

Want to go back to gnome classic menu instead?
Well, you can have both;
Ubuntu Unity Desktop as well as Ubuntu Classic Menu.
 
sudo apt-add-repository ppa:diesch/testing
sudo apt-get update && sudo apt-get install classicmenu-indicator


Enable Classic GNOME In Ubuntu 13.04

http://www.liberiangeek.net/2013/04/no-unity-here-enable-classic-gnome-in-ubuntu-13-04/

On the logon screen, select the Ubuntu logo ;
Next, choose ‘GNOME Fallback’

Sunday, October 6, 2013

Enable Desktop Cube in Unity - Ubuntu 12.04 LTS

Howto Enable Desktop Cube in Unity - Ubuntu 12.04 LTS ( "Precise Pangolin" ) 


Install Compiz Config Settings Manager
sudo apt-get install compizconfig-settings-manager
sudo apt-get install compizconfig-settings-manager compiz-plugins compiz-plugins-extra

ALT + F2 :
compizconfig

Open Compiz Config Settings Manager and go to Preferences
Select Plugin List Tab

Disable Automatic Plugin Sorting and accept the warning that will appear after trying to disable it.

From the Disable Plugins List, Enable the following plugins: cube, rotate

From the Enable Plugins List, Disable the following plugins: wall

Go back from the Preferences menu to the Main Compiz Menu and select General Options

Go to Desktop Size tab and change the Horizontal and Vertical Virtual Size to 4



http://askubuntu.com/questions/86977/how-to-correctly-enable-desktop-cube-in-unity-3d


Saturday, August 13, 2011

Ubuntu kdm gdm lxdm

I have installed Kubuntu-desktop and Lubuntu-desktop on top of Ubuntu
If I want to switch from gdm to kdm or lxdm :
In a terminal window one of the following commands can be used :

sudo dpkg-reconfigure gdm
sudo dpkg-reconfigure kdm
sudo dpkg-reconfigure lxdm




 

How to Switch Between GDM and KDM on Ubuntu

Sunday, July 24, 2011

LIT extension Ubuntu


Calibre-Install the ebook management in Ubuntu Linux




sudo apt-get install calibre

Microsoft Reader uses the .lit format for it's ebooks ;

Calibre is a free ebook management that works on Linux, OS X and Windows.It is meant to be a complete e-library solution and thus includes library management, format conversion, news feeds to ebook conversion, as well as e-book reader sync features and an integrated e-book viewer.

Calibre can be found at http://calibre.kovidgoyal.net/. 

Thursday, April 21, 2011

GRUB2 DEFAULT

Ubuntu grub.cfg

Editing /etc/default/grub

You can open /etc/default/grub file with the following command,


gksudo gedit /etc/default/grub
or
gksudo kate /etc/default/grub

This is what it should look like,
# If you change this file, run 'update-grub' afterwards to update
# /boot/grub/grub.cfg.



GRUB_DEFAULT=0
The number at the end of this line can be changed to make the highlight bar or selection bar in the GRUB Menu appear automatically on any GRUB Menu entry we like.
0 (zero) tells GRUB we want the first or top GRUB entry automatically selected unless we over ride that selection with our up or down arrow key during boot-up.
Any number greater than 0 (zero) will mean boot entries further down the GRUB Menu will be selected instead.

Alternatively, replace the number here with the word 'saved' to enable the grub-set-default command to work.