This tutorial will walk you through the steps on how to install a DLL file in to Windows. This tutorial covers all Windows operating systems.
The first post about windows, I didn't mean to but the article is really useful 'cause I met the problem so many times when I use xp!
read more | digg story
2007年6月16日星期六
How to install a DLL file in Windows XP?
2007年6月15日星期五
HOWTO: Installing And Working With eyeOS Under Linux (Ubuntu/Debian)
Great HOWTO explaining how to install the eyeOS 1.0 Web Operating System into a Linux system (It's for Debian, I tested it under Ubuntu). Just 4 steps and you can be working on eyeOS from any computer on the net. eyeOS is a web Operating System with a ports system like apt-get and 19 base applications to work on the browser, Open Source.
read more | digg story
2007年5月31日星期四
Howto install Avant Window Navigator in Feisty!!
If you are running Ubuntu Feisty Fawn 7.04, you can install AWN and Affinity from an Ubuntu repository.
First, edit your apt sources:
- gksudo gedit /etc/apt/sources.list
- ## Avant Window Navigator
- deb http://download.tuxfamily.org/syzygy42/ feisty avant-window-navigator
- deb-src http://download.tuxfamily.org/syzygy42/ feisty avant-window-navigator
Then do this in a terminal:
- wget http://download.tuxfamily.org/syzygy42/8434D43A.gpg -O- | sudo apt-key add -
- sudo apt-get update
- sudo apt-get upgrade
Now to install the stable AWN version do
NOTICE: No stable AWN at this time. It will be added at the next release
Or for AWN SVN do
- sudo apt-get install avant-window-navigator-svn
The Affinity in this repo requires Tracker to work properly.
For the stable Affinity version do
- sudo apt-get install affinity
Or for Affinity SVN do
- sudo apt-get install affinity-svn
2007年5月26日星期六
Installing .sh files in Ubuntu 7.04
Sometimes when you need to install a software on Ubuntu, the installation package only comes in .sh files instead of standard .deb package for Debian. Well the .sh itself has to be executable, however when you got it from internet repository its attribute is set to non-executable. To change this file attribute you need to either Right Click the .sh file from your file explorer, select file property -> file permission and make it is executable.
You can also change it via the command line console in your Ubuntu.
Open a Terminal Window. If you downloaded the file to your Ubuntu desktop you probably need to
cd /home/userid/Desktop
ls to see if the file exists.
chmod 777 /path/some_linux_installation.sh
After you changed the file attribute, you can execute those file directly via terminal window or click it when you use file manager. Your installation file should startup.
