Lists or URLs .edu. and .gov backlinks sites
- site:.edu inurl:wp-login.php +blog
- site:.gov inurl:wp-login.php +blog
- site:.edu inurl:”wp-admin” +login
A Good trick used/shared by: Review Of Web (ROW)! Visit his site link below:
Howto: Terminal tips and tricks
Xubuntu requires the terminal more than Ubuntu…so let’s have fun with it!
1) Move to Trash: Currently, Xubuntu doesn’t have an option to move files to the trash. You can, however, recreate it in the terminal:
First, create a file named /usr/bin/del:
sudo mousepad /usr/bin/del
Copy and paste the following into the file:
#!/bin/bash
mv -vi — “$@” $HOME/.Trash
Save, exit, and make the file executable. Run sudo chmod -v 755 /usr/bin/del.
Now, to move a file to the trash, just run del filename and it will be moved to the .Trash folder. If you’re used to DOS, using del will be easy for you.
2) Aliases: If you want to save some typing time, then aliases are for you. (Example: Rather than constantly typing sudo apt-get install, you can just type apt.)
To make an alias, edit the file ~/.bashrc, by running mousepad ~/.bashrc. The method is as follows:
alias aliasname='command'
aliasname being the name of the alias, and command being the command run when you type the alias. Example:
alias apt='sudo apt-get install'
Here are all of my aliases:
alias free='free -m'
alias kill=’pkill’
alias apt=’sudo apt-get install’
alias remove=’sudo apt-get remove’
alias search=’apt-cache search’
alias edit=’mousepad’
alias suedit=’sudo mousepad’
alias i=’sudo dpkg -i’
alias upgrade=’sudo apt-get upgrade’
alias dist-upgrade=’sudo apt-get dist-upgrade’
alias update=’sudo apt-get update’
alias clean=’sudo apt-get autoclean’
alias build-dep=’sudo apt-get build-dep’
alias df=’df -Hl’
alias home=’cd ~’
alias mktar=’tar -cvf’
alias mkbz2=’tar -cvjf’
alias mkgz=’tar -cvzf’
alias untar=’tar -xvf’
alias unbz2=’tar -xvjf’
alias ungz=’tar -xvzf’
alias ls=’ls –color=auto’
alias mv=’mv -i’
alias cp=’cp -i’
alias rm=’rm -i’
alias del=’rm -r’
alias sources.list=’sudo leafpad /etc/apt/sources.list’
alias menu=’edit .config/xfce4/desktop/menu.xml’
alias xorg.conf=’sudo leafpad /etc/X11/xorg.conf’
Just copy and paste these into your .bashrc file, and log in and out. Using the terminal is now a lot faster! (source taken from web source page I could not locate)
Xubuntu 09.04 released:
Xubuntu is distributed on two types of images described below. in this link:
Also check here: http://xubuntu.org/
A detailed discription about Xubuntu 8.04 LTS, how to create a XP style in Xubuntu 8.04 LTS.
Xfce is just as customisable as KDE or GNOME, so I set myself a goal: make Xubuntu look like Windows Vista. Why? Because I can.
http://xubuntublog.wordpress.com/2008/02/10/design-your-own-desktop-with-xfce-44/
Have you wondred how these little icons appear next to the web addresses, like the one you see above? When you visit the sites or bookmrk them, these icons will make these URLs stand out. These are “Favicons” or “Favorite Icons”.
You would first need to have an icon which you would like to use, bearing the extension .ico format.
You can create icons in 2 sizes – 16x16 and 32x32 – I would think a 16x16 icon is preferable since it is readable in most older browsers.
After you create an icon save it on some web hosting sites. i saved it in my google pages. Next goto your template and find
(**=open and close< >(html tag not suppored by blog, so please replace with mentioned tag)
*tiitle**data:blog.pageTitle/**/title**
and below that paste the below code
*link href='URL of your icon file' rel='shortcut icon' type='image/vnd.microsoft.icon'/*
Remember to type in the “URL of your icon file”.
Save the template. When you refresh your blog site, you should see your nice litle Favicon next to the blog address.
If you have a PNG format image, the link to insert is:-
*link href='URL of your icon file' rel='shortct icon' type='image/png'/*
If it is a GIF format image, the link is:-
*link href='URL of your icon file' rel='shortcut icon' type='image/gif'/*
SCREEN SAVER:
DO YOU NEED A NEW SCREEN SAVER?
Webshots is free and it is the best Screen Savers. Download any of the thousands of
POP UP STOPPER 3.1
ARE YOU TIRED OF POP-UP ADVERTISEMENT?Download the FREE "Pop-Up Stopper!"
- Speed Up Your Browser By Blocking Pop-Up Ads
- Protect Your Computer Against Internet Solicitors.
below link will give you the details (info March 2004)
http://www.panicware.com/product_psfree.html
http://cma.zdnet.com/texis/techinfobase/techinfobase
Manually edit the Xfce menu from Xubuntu.9.10
This page helped me to edit Xfce manually. Also useful help for those who using Xubutu OS.
http://xubuntu.wordpress.com/2006/07/12/manually-edit-the-xfce-menu/
To install Adobe Flash plugin for Mozilla Firefox on Ubuntu, download .deb package from
http://launchpadlibrarian.net/10761023/flashplugin-nonfree_9.0.115.0ubuntu2_i386.deb
and double click this deb file downloaded or (type in the terminal sudo dpkg --install flashplugin-nonfree_9.0.115.0ubuntu2_i386.deb) (this is info is for my personal use)