Search Articles

Select a Category

Stock Quotes

DIA123.31  chart-1.26
NASDAQ2778.79  chart-34.90
S&P 5001295.22  chart-9.64
^TNX1.702  chart0.00
JNK38.22  chart+0.03
TIP120.51  chart+0.28
000001.SS2344.521  chart-34.365
PPLT143.42  chart+0.32
GLD154.55  chart+1.75
SLV27.79  chart+0.55
GOOG600.40  chart-22.65
VDSI7.10  chart+0.03
PEP68.12  chart-0.65
WAG31.31  chart-0.56
VE11.83  chart+0.05
CPB33.40  chart-0.40
SI83.56  chart+0.54
BCPC29.67  chart+0.79
DECK53.22  chart+0.85
VRA21.82  chart-1.06
AVAV22.07  chart-0.34
WBMD21.29  chart-0.20
SMT1.45  chart-0.50
BAX51.51  chart-0.70
NVDA12.08  chart-0.57
ECA19.63  chart+0.10
PFE22.57  chart+0.01
FCX31.81  chart-0.36
XLF13.771  chart-0.159
RIMM10.99  chart-0.39
DLB44.11  chart-0.14
WDC34.66  chart-2.41
TEVA38.90  chart+0.11
SVU4.65  chart-0.31
LLY40.44  chart-0.09
INTC26.07  chart-0.12
CSCO16.47  chart-0.08
BSX5.96  chart-0.14
LOW28.48  chart+0.11
MRK37.821  chart-0.209
S2.34  chart-0.02
PETS11.55  chart+0.34
2012-05-18 16:00

The Daily Dilbert

How to Install Ubuntu 9.10 on VirtualPC 2007

Introduction:
VirtualPC 2007 is a free program from Microsoft. You can use VirtualPC to run other operating system in your Windows machine. See How to Install and User VirtualPC 2007 for more details. Ubuntu is a version of Linux. It prides itself of a complete package and regular update every six months. See Ubuntu.com for details. [...]

Share

How to Install and Use VirtualPC 2007

Introduction
Virtual PC 2007 is a free program from Microsoft. You can use the program to setup multiple operating environments (guest systems) in your computer (host system). You can run different operating systems such as Linux, Windows 2000, Windows 95 or other as the guest systems. Or you can just run a non-English version of Windows [...]

Share

How to find and change Linux Directory Owner

Find Directory’s Owner:
You can use getfacl to see it. example

$ getfacl /etc/
Result:
# file: etc
#owner: root
#group: root
user:: rwx
group:: r-x
other:: r-x

You can also use setfacl to set ACL permission.

Change Directory owner:
Use chown to change a directory’s owner. Be sure that you has the privilege to change the owner.

Example: chown www-data:www-data /etc/

Change directory /etc/ user to [...]

Share