| d | Signals the end of a file you are entering from the terminal if typed at the beginning of a line or if typed twice elsewhere in a line. | ||
| c | Cancels a command or interrupts a running program. | ||
| z | Suspends a process or job but does not terminate it: use fg to restart suspended process or job. | ||
| common_alias myscreen '~/bin/screen' common_alias ls 'ls --color=auto' common_alias findfile 'find . -follow -type f | grep $*' common_alias findtext 'find . -not -name "*.d" -not -name "*.o" -not -name "*.a" -follow -type f -print0 | xargs --null grep $*' #common_alias findcode "find -follow -type f -name '*.cpp' -o -name '*.h' -o -name '*.java' -o -name '*.const' -print0| xargs --null grep $*" common_alias findcode 'find . -name "*.cpp" -name "*.h" -name "*.java" -name "*.c" -name "*.hpp" -follow -type f -print0 | xargs --null grep $*' common_alias findcdb 'find . -name "*.layout" -name "*.def" -name "*.cdb" -follow -type f -print0 | xargs --null grep $*' common_alias findweb 'find . -name "*.aml" -name "*.xml" -name "*.xsd" -name "*.mdl" -name "*.sml" -follow -type f -print0 | xargs --null grep $*' common_alias findany 'find . -follow -type f -print0 | xargs --null grep $*' export PS1="\h@\u:\w% " export DISPLAY=l-sjn-jezhao:0.0 export LS_COLORS='di=01;33' function cleanup(){ echo "Removing $1 files..." find \. -follow -name "$1" | xargs rm } | u | Clears the command line. |
Yum is usually already installed if you're running Fedora Core. In case you are using Red Hat Enterprise Linux or an older Red Hat Linux distribution. You can find Yum at: http://dag.wieers.com/packages/yum/
The configuration of Yum is inside the rpmforge-release package. You need to install it yourself.
If you've done that, the rest is simple. Upgrade your system by doing:
yum update
You can add new software by typing:yum install
Or update installed software:yum update
Or search for software in the local repository meta-data:yum search
Or simply list all available software:yum list available
From time to time you may want to save some diskspace:yum clean
sudo apt-get install openssh-server
*Remember: You can open a terminal by pressing Alt+F2, typing gnome-terminal and pressing enter
I am currently following the advice at ThinkWIKI to get it working on my X61 tablet with Ubuntu 8.04.1 (everything else works great!).
My problem is that since I have 2.6.24 (which has some issues with the kernel patch) I am trying to use the Zen-Sources kernel.
However the kernels don't seem to be .tar.bz2 but rather .patch.bz2 meaning the
Code:
# tar jxf 2.6.27-rc7-zen3.patch.bz2
just reports back with an error complaining about it not being a tar file.
http://www.dba-oracle.com/bk_sqlplus_list_tables_views.htm
SELECT * FROM all_tables; <- all tables you have access to
SELECT * FROM user_tables; <- all tables owned by currently logged in user
SELECT * FROM dba_tables; <- all tables in database
I am glad to know that we have Database forum here.
Just installed Oracle database server under Ubuntu Linux, It did took some time but finally beast is installed.
Now how do I list tables? Mysql has
SHOW DATABASES;
USE mydb;
SHOW TABLES;
SELECT * FROM mytable;
$ sqlplus scott/tiger
I am just taking print out of Oracle sql pdf but please give me command so that I know it is working.
I love the Drupal CMS. One of my favorite features of Drupal is the ability to do a multisite install. This site and my other blog, i <3 stella, are hosted on the same box, using the same Drupal install. Several sites can share one codebase. Updates are easily rolled out to every site simultaneously. Overall, it's a wonderful idea. But I have some problems with the implementation...
We'll look at one solution to these problems.
I assume here that you are using Linux hosting, that you have shell access, and that you have at least a passing acquaintance with symlinks. If you're looking for a webhost that meets these requirements, check out 1and1 shared hosting. I've been happy with them, and all of their packages above $9.99/mo will do what you need.
Microsoft/IIS guys, you can't do a symlink. You're looking for something called a junction... good luck with that.

