Compiz Auto Move a Window to Another Desktop – Viewport
When you boot your machine you want to open a variety of windows or applications on different desktops, but they only seem to open on the main desktop even with use of the place plugin. The place plugin in compiz works for a variety of applications but does not work for VirtualBox graphical windows. Wmctrl is another plugin that allows you to move windows to different locations on the desktop. For example, if your desktop is 1920 x 1080 you can move a window to the second desktop, in the x direction, by placing it to 1921. For example if you launch MythTV automatically on boot, and you want it on the second desktop use the following in a startup session script. Wmctrl is a package in the default Ubuntu repositories give it an apt-get to install. wmctrl -r "mythfrontend.real" -e 0,1921,0,1920,1080 There are a variety of option to wmctrl, use wmctrl --help for more info. This is how I move my Windows XP to another viewport: wmctrl -r "WindowsXP [Running] - Sun VirtualBox" -e 0,3841,0,1920,1080 In this case I move it to viewport 3.
No trackbacks yet.
Ubuntu Flash
April 12, 2010 - 1:42 pm
Tags: animations, bit, flash, gnash, older versions, open source versions, sudo, swfdec, ubuntu, use
Posted in flash, nonfree, plugin, ubuntu | No comments
To install flash in Ubuntu use: sudo apt-get install flashplugin-nonfree This works on Ubuntu 32bit and 64bit. Flash is slightly unreliable on 64bit Ubuntu, but it works nonetheless. You can also install two open source versions of flash that have limited to good support. Gnash supports most older versions of swf animations, and newer versions [...]
Nvidia Driver on Linux – Easy, and Quick
February 7, 2010 - 9:07 am
Tags: desktop, desktop cd, driver, gdm, modules package, nvidia, nvidia driver, open source driver, startup settings, sudo
Posted in driver, gcc, headers, linux, modules, nvidia, xorg | 1 comment
Image via CrunchBase There is a buzz that installing the Linux based Nvidia accelerated graphics driver is complicated. I consider it rather straight forward. First install build-essential, and the headers for your kernel. Those may appear to be some bigs words in the previous sentence, but it is really one line in a terminal window. [...]
Lock Down IP Addresses – SSH and Else
January 26, 2010 - 12:07 pm
Tags: 192, ALL, everything, hosts, ip addresses, machine, sshd, use
Posted in Server, deny, ip, rule, ssh | No comments
If you know the IP addresses that will be connecting to your machine, lock them down. Use the hosts.allow file as follows. sshd : localhost : allow sshd : 192.168.3. : allow sshd : 192.168.1. : allow sshd : ALL : deny Using sshd : ALL : deny and listing various allow rules blocks everything [...]
Your Server – The Boot Process
December 9, 2009 - 9:49 am
Tags: background processes, client, client side applications, desktop, dession, hard drive, host system, mail server, process, Server, server features, session, side, System, Thunderbird
Posted in MythTV, Server, VBoxTool, desktop, gdm | 1 comment
You want to isolate all your server features into background process. You don’t want any server features to be dependent on graphical or client side applications. I previously had my mail server dependent on the client side filtering capabilities of Thunderbird. This was a no no because it required me to maintain a desktop session. [...]
Fsck – Debian – Ubuntu File System Check
December 6, 2009 - 10:06 am
Tags: asus eeepc, block, c option, desktop, drive, fsck, run, sudo, terminal windows, unmount
Posted in block, filesystem, fsck, ssd | No comments
You cannot run fsck from within a desktop session. A desktop session requires run-level 2, and there are way to many applications running to not damage your hard drive irreparably. Therefore open a terminal windows and type: sudo init 1 Then unmount everything: sudo umount -a Then you can run fsck. Run fsck with the [...]
Using vi, or nano – Terminal Text Editors
December 6, 2009 - 9:40 am
Tags: command mode, graphical editors, graphical text editor, grub, mode, nano, Press, text, unix and linux, use, vi, wq
Posted in command, nano, terminal, text, vi | 1 comment
Vi was the original terminal based text editor created for Unix. It is as small and as simple as it gets. The binary resides within the Unix and Linux bins, and can easily be placed on a removable media for ultimate emergency portability. There are three modes to vi: 1. command mode 2. ex mode [...]
Terminal Standard Output – Slowwwww Down
December 5, 2009 - 12:50 pm
Tags: grep, nvidia, nvidia drivers, page, space bar, use, way
Posted in less, output, standard, terminal | No comments
Have you ever hit an ls and it prints way to much? Have you ever hit a ps and its prints way too much? There are several things you can do. You can pipe it to a grep filter. If your search a downloads folder for NVIDIA drivers do: ls | grep NVIDIA You can [...]
Swap Lag – Time to Retreive Data
October 25, 2009 - 3:36 pm
Tags: desktop, desktop interface, gnome desktop, graphical application, nohup command, Server, session, swap, system responsiveness, Thunderbird
Posted in Server, Thunderbird, nice, responsive, sieve, swap | 4 comments
I have a virtual machine, a MythTV server, and an email server running on my computer at home. The compiz desktop environment will lag substantially when I get home from work. I conclude that this is because during the day the desktop interface is not being use therefore it is thrown to the swap. There [...]
Personal Cloud Computing From Your Own Server – EyeOS
October 25, 2009 - 11:20 am
Tags: browser, caption, cloud, desktop, desktop experience, EyeOS, file storage, personal cloud, things in time, web
Posted in EyeOS, Server, cloud, desktop | No comments
EyeOS is a fully functional personal cloud desktop. Install it on your server, with or without mysql database support. The software supports flat file storage, so basically drag and drop the package, set a couple of file and folder permissions, walk through the administrator panel and your good to go with your own personal cloud [...]
How Nice are Your Running Processes – Renice Them
October 25, 2009 - 10:09 am
Tags: cpu, hd tv, host system, mac, machine, process, running processes, System, system processes, value, viewport
Posted in mac, mini, nice, ps, renice, top | No comments
The command to set the importance of a running process is called “nice”. The nice rating of a program determine how quicky and the priority in which running processes are handled by the CPU. If a process has a nice value of 19 it will essentially allow any other process to be handled by the [...]
May 16, 2010 - 10:25 pm
This is great info, thanks! For some reason — at least in my experience — VirtualBox on an Ubuntu 10.04 host completely ignores directives from wmctrl, devilspie, and the compiz window placement tool. A workaround is posted here: http://ubuntuforums.org/showthread.php?p=9311334#post9311334
Cheers!