Thursday, May 31, 2012

What are some Linux commands?

Linux Terminal Command Reference
System Info

date – Show the current date and time
cal – Show this month's calendar
uptime – Show current uptime
w – Display who is online
whoami – Who you are logged in as
finger user – Display information about user
uname -a – Show kernel information
cat /proc/cpuinfo – CPU information
cat /proc/meminfo – Memory information
df – Show disk usage
du – Show directory space usage
free – Show memory and swap usage
Keyboard Shortcuts

Enter – Run the command
Up Arrow – Show the previous command
Ctrl + R – Allows you to type a part of the command you're looking for and finds it

Ctrl + Z – Stops the current command, resume with fg in the foreground or bg in the background
Ctrl + C – Halts the current command, cancel the current operation and/or start with a fresh new line
Ctrl + L – Clear the screen

command | less – Allows the scrolling of the bash command window using Shift + Up Arrow and Shift + Down Arrow
!! – Repeats the last command
command  !$ – Repeats the last argument of the previous command
Esc + . (a period) – Insert the last argument of the previous command on the fly, which enables you to edit it before executing the command

Ctrl + A – Return to the start of the command you're typing
Ctrl + E – Go to the end of the command you're typing
Ctrl + U – Cut everything before the cursor to a special clipboard, erases the whole line
Ctrl + K – Cut everything after the cursor to a special clipboard
Ctrl + Y – Paste from the special clipboard that Ctrl + U and Ctrl + K save their data to
Ctrl + T – Swap the two characters before the cursor (you can actually use this to transport a character from the left to the right, try it!)
Ctrl + W – Delete the word / argument left of the cursor in the current line

Ctrl + D – Log out of current session, similar to exit
Learn the Commands

apropos subject – List manual pages for subject
man -k keyword – Display man pages containing keyword
man command – Show the manual for command
man -t man | ps2pdf - > man.pdf  – Make a pdf of a manual page
which command – Show full path name of command
time command – See how long a command takes

whereis app – Show possible locations of app
which app – Show which app will be run by default; it shows the full path
Searching

grep pattern files – Search for pattern in files
grep -r pattern dir – Search recursively for pattern in dir
command | grep pattern – Search for pattern in the output of command
locate file – Find all instances of file
find / -name filename – Starting with the root directory, look for the file called filename
find / -name ”*filename*” – Starting with the root directory, look for the file containing the string filename
locate filename – Find a file called filename using the locate command; this assumes you have already used the command updatedb (see next)
updatedb – Create or update the database of files on all file systems attached to the Linux root directory
which filename – Show the subdirectory containing the executable file  called filename
grep TextStringToFind /dir – Starting with the directory called dir, look for and list all files containing TextStringToFind
File Permissions

chmod octal file – Change the permissions of file to octal, which can be found separately for user, group, and world by adding: 4 – read (r), 2 – write (w), 1 – execute (x)
Examples:
chmod 777 – read, write, execute for all
chmod 755 – rwx for owner, rx for group and world
For more options, see man chmod.
File Commands

ls – Directory listing
ls -l – List files in current directory using long format
ls -laC – List all files in current directory in long format and display in columns
ls -F – List files in current directory and indicate the file type
ls -al – Formatted listing with hidden files

cd dir – Change directory to dir
cd – Change to home
mkdir dir – Create a directory dir
pwd – Show current directory

rm name – Remove a file or directory called name
rm -r dir – Delete directory dir
rm -f file – Force remove file
rm -rf dir – Force remove an entire directory dir and all it’s included files and subdirectories (use with extreme caution)

cp file1 file2 – Copy file1 to file2
cp -r dir1 dir2 – Copy dir1 to dir2; create dir2 if it doesn't exist
cp file /home/dirname – Copy the file called filename to the /home/dirname directory

mv file /home/dirname – Move the file called filename to the /home/dirname directory
mv file1 file2 – Rename or move file1 to file2; if file2 is an existing directory, moves file1 into directory file2

ln -s file link – Create symbolic link link to file
touch file – Create or update file
cat > file – Places standard input into file
cat file – Display the file called file

more file – Display the file called file one page at a time, proceed to next page using the spacebar
head file – Output the first 10 lines of file
head -20 file – Display the first 20 lines of the file called file
tail file – Output the last 10 lines of file
tail -20 file – Display the last 20 lines of the file called file
tail -f file – Output the contents of file as it grows, starting with the last 10 lines
Compression

tar cf file.tar files – Create a tar named file.tar containing files
tar xf file.tar – Extract the files from file.tar

tar czf file.tar.gz files – Create a tar with Gzip compression
tar xzf file.tar.gz – Extract a tar using Gzip

tar cjf file.tar.bz2 – Create a tar with Bzip2 compression
tar xjf file.tar.bz2 – Extract a tar using Bzip2

gzip file – Compresses file and renames it to file.gz
gzip -d file.gz – Decompresses file.gz back to file
Printing

/etc/rc.d/init.d/lpd start – Start the print daemon
/etc/rc.d/init.d/lpd stop – Stop the print daemon
/etc/rc.d/init.d/lpd status – Display status of the print daemon
lpq – Display jobs in print queue
lprm – Remove jobs from queue
lpr – Print a file
lpc – Printer control tool
man subject | lpr – Print the manual page called subject as plain text
man -t subject | lpr – Print the manual page called subject as Postscript output
printtool – Start X printer setup interface
Network

ifconfig – List IP addresses for all devices on the local machine
ping host – Ping host and output results
whois domain – Get whois information for domain
dig domain – Get DNS information for domain
dig -x host – Reverse lookup host
wget file – Download file
wget -c file – Continue a stopped download
SSH

ssh user@host – Connect to host as user
ssh -p port user@host – Connect to host on port port as user
ssh-copy-id user@host – Add your key to host for user to enable a keyed or passwordless login
User Administration

adduser accountname – Create a new user call accountname
passwd accountname – Give accountname a new password
su – Log in as superuser from current login
exit – Stop being superuser and revert to normal user
Process Management

ps – Display your currently active processes
top – Display all running processes
kill pid – Kill process id pid
killall proc – Kill all processes named proc (use with extreme caution)
bg – Lists stopped or background jobs; resume a stopped job in the background
fg – Brings the most recent job to foreground
fg n – Brings job n to the foreground
Installation from source

./configure
make
make install
dpkg -i pkg.deb – install a DEB package (Debian / Ubuntu / Linux Mint)
rpm -Uvh pkg.rpm – install a RPM package (Red Hat / Fedora)
Stopping & Starting

shutdown -h now – Shutdown the system now and do not reboot
halt – Stop all processes - same as above
shutdown -r 5 – Shutdown the system in 5 minutes and reboot
shutdown -r now – Shutdown the system now and reboot
reboot – Stop all processes and then reboot - same as above
startx – Start the X system
history - Display recent commands used

list of important commands for my /var/www

locate php.ini
vim /etc/php5/apache2/php.ini
sudo vi /etc/php5/apache2/php.ini
vim /etc/php5/cli/php.ini
sudo vi /etc/php5/cli/php.ini
sudo /etc/init.d/apache2 restart
sudo chmod -R 775 mysite

W: Failed to fetch http://archive.ubuntu.com/ubuntu/pool/universe/c/compiz-plugins-extra/compiz-plugins-extra_0.9.5.94-0ubuntu1_i386.deb


W: Failed to fetch http://archive.ubuntu.com/ubuntu/pool/universe/c/compiz-plugins-extra/compiz-plugins-extra_0.9.5.94-0ubuntu1_i386.deb
  Could not connect to 10.102.61.46:8080 (10.102.61.46), connection timed out


W: Failed to fetch http://archive.ubuntu.com/ubuntu/pool/universe/c/compiz-plugins-extra/compiz-fusion-plugins-extra_0.9.5.94-0ubuntu1_all.deb
  Unable to connect to 10.102.61.46:8080:

If you encounter this error, do not worry! This problem is only caused by network connection issues. Try to connect to other Internet connection.
     

How to install and configure gimp to your laptop using the command line for Linux Mint or Ubuntu.



sudo apt-get install gimp
Go to Menu->Terminal. And type the above code in terminal and hit enter.
Type your linux mint password and press enter.
Type y and hit enter to confirm gimp installation.

After the successful installation , open Menu → Graphics → Gimp Image Editor is ready to go.
After your successful installation of gimp in your computer;
if you type again the same command to the terminal, you will 
get the above prompt.
Another way to install gimp is using the graphical mode.
Go to Software Manager → and in the search bar, look for Gimp
Image Editor or simply gimp. And hit enter. You will be 
prompted to install the gimp, just click install.
 


How to install and configure VLC to your laptop using the command line for Linux Mint or Ubuntu.


Go to Menu->Terminal. And type the above code in terminal and hit enter.
 
sudo apt-get install vlc 
 
 Type your linux mint password and press enter.
Type y and hit enter to confirm VLC installation.

After the successful installation , open Menu ? Sound and Video ? VLC Media Player  is ready to go.

After your successful installation of VLC in your computer; if you type again the same command to the 
terminal, you will get the above prompt.
 Another way to install VLC Media Player is using the graphical mode. Go to Software Manager, and
 in the search bar, look for VLC media player or simply VLC. And hit enter. You will be prompted to 


install the VLC, just click install. 
 
 

Cannot Get Updates for Linux Mint and Ubuntu.

Last time, you were able to install other application softwares for Linux in your Laptop like Gimp, VLC, gThumb, etc...
Unfortunately now, you could hardly install other applications. For example, you want to install LAMP for your laptop however you got some error messages.
like the following:

Err http://security.ubuntu.com/ oneiric-security InRelease

Err http://archive.canonical.com/ oneiric InRelease

Err http://packages.medibuntu.org/ oneiric InRelease

Err http://security.ubuntu.com/ oneiric-security Release.gpg
Unable to connect to 10.blaah.blah.bla
Err http://archive.canonical.com/ oneiric Release.gpg
Unable to connect to 10.blaah.blah.bla
Err http://packages.medibuntu.org/ oneiric Release.gpg
Unable to connect to 10.blaah.blah.bla
Err http://packages.linuxmint.com/ lisa InRelease

Err http://archive.ubuntu.com/ oneiric InRelease

Err http://archive.ubuntu.com/ oneiric-updates InRelease

Err http://packages.linuxmint.com/ lisa Release.gpg
Unable to connect to 10.blaah.blah.bla
Err http://archive.ubuntu.com/ oneiric Release.gpg
Unable to connect to 10.blaah.blah.bla
Err http://archive.ubuntu.com/ oneiric-updates Release.gpg
Unable to connect to 10.blaah.blah.bla
Reading package lists... Done
W: Failed to fetch http://packages.linuxmint.com/dists/lisa/InRelease

W: Failed to fetch http://archive.ubuntu.com/ubuntu/dists/oneiric/InRelease

W: Failed to fetch http://archive.ubuntu.com/ubuntu/dists/oneiric-updates/InRelease

W: Failed to fetch http://security.ubuntu.com/ubuntu/dists/oneiric-security/InRelease

W: Failed to fetch http://archive.canonical.com/ubuntu/dists/oneiric/InRelease

W: Failed to fetch http://packages.medibuntu.org/dists/oneiric/InRelease

W: Failed to fetch http://security.ubuntu.com/ubuntu/dists/oneiric-security/Release.gpg Unable to connect to 10.blaah.blah.bla

W: Failed to fetch http://archive.canonical.com/ubuntu/dists/oneiric/Release.gpg Unable to connect to 10.blaah.blah.bla

W: Failed to fetch http://packages.medibuntu.org/dists/oneiric/Release.gpg Unable to connect to 10.blaah.blah.bla

W: Failed to fetch http://packages.linuxmint.com/dists/lisa/Release.gpg Unable to connect to 10.blaah.blah.bla

W: Failed to fetch http://archive.ubuntu.com/ubuntu/dists/oneiric/Release.gpg Unable to connect to 10.blaah.blah.bla

W: Failed to fetch http://archive.ubuntu.com/ubuntu/dists/oneiric-updates/Release.gpg Unable to connect to 10.blaah.blah.bla

W: Some index files failed to download. They have been ignored, or old ones used instead.
Try this solution:
  Your problem could be greatly caused by a network issue. I have met this problem more often when my network connection is not stable. Try to do it again on another Internet connection. 
Check your Internet connection by typing the following codes to the termnial:
ping google.com
if the time=50 ms or lower... then there you   have a very good Internet connection.

The repository may no longer be available or could not be contacted because of network problems. If available an older version of the failed index will be used. Otherwise the repository will be ignored. Check your network connection and ensure the repository address in the preferences is correct.


Are you having problem with updating your Linux OS?
You could not download all repository indexes for your laptop/PC after you attempted to download updates.
You got these error messages.

"The repository may no longer be available or could not be contacted because of network problems. If available an older version of the failed index will be used. Otherwise the repository will be ignored. Check your network connection and ensure the repository address in the preferences is correct."

E: Malformed line 11 in source list /etc/apt/sources.list (absolute dist)
E: Unable to lock the list directory

E: Malformed line 11 in source list /etc/apt/sources.list (absolute dist)
E: The list of sources could not be read.
Go to the repository dialog to correct the problem.
E: _cache->open() failed, please report.

ERROR###ERROR###ERROR###ERROR###ERROR###ERROR###ERROR
E:Malformed line 11 in source list /etc/apt/sources.list (absolute dist)

After checking my source list at /etc/apt/sources.list:

deb http://packages.linuxmint.com/ lisa main upstream import
deb http://archive.ubuntu.com/ubuntu/ oneiric main restricted universe multiverse
deb http://archive.ubuntu.com/ubuntu/ oneiric-updates main restricted universe multiverse
deb http://security.ubuntu.com/ubuntu/ oneiric-security main restricted universe multiverse
deb http://archive.canonical.com/ubuntu/ oneiric partner
deb http://packages.medibuntu.org/ oneiric free non-free

#deb http://archive.getdeb.net/ubuntu oneiric-getdeb apps
#deb http://archive.getdeb.net/ubuntu oneiric-getdeb games
deb http://www.linuxmint.com/repository romeo/
deb http://www.linuxmint.com/repository romeo/ apt-get update
If you found the last two lines in your resource.list at /etc/apt/;
remove that, the dev http://www.linuxmint.com/repository romeo/
and htttp://www.linuxmint.com/repository romeo/ apt-get update.
You can easily remove that by editing the file with the root privileges. Go to the directory /etc/apt/ and then
type this code in the terminal sudo gedit resource.list.
Be sure you that your prompt for the terminal is the same directory of the file.
That's it.

How to install Wordpress into Linux Mint 12?

Here are the steps in installing Wordpress to Linux Mint 12.

Step 1:
Before Installing Wordpress we need to ensure that apache is installed in our system.
Go to Menu->Terminal. And type the below code in terminal and hit enter.
sudo apt-get install apache2
Type your linux mint password and press enter.
Type Y and hit enter to confirm apache installation.
After the successful installation , open your favorite browser and type
http://localhost/
in the address bar and press enter. If you will see ‘It works!’ , then your apache works fine.
Step 2:
Next step is to have the web administration tool installed into your system.
Install phpmyadmin in either of these two ways:
We can install PHP by going to the Software Manager ---search for phpmyadmin----click install

 or go to Menu->Terminal. And type the below code in terminal and hit enter.
sudo apt-get install phpmyadmin
Type your linux mint password if needed.
Type y and hit enter to confirm PHP installation.


After the successful installation restart Apache using the below code
sudo /etc/init.d/apache2 restart
Test PHP installation
If you installed phpmyadmin using the graphical mode, then you have to go to the File System /usr/share/ then copy phpmyadmin folder to File System /var/www/
then type the this code to the terminal

cd /var
sudo chmod -R 777 www

Type your root password if required. The above code will allow you to Read-Write-Execute from the directory specified.


By then, you should be able to access localhost/phpmyadmin in your web browser.
Now open your favorite browser and type
http://localhost/phpmyadmin
in the address bar and press enter. If you will see the below page , then your php works fine.
sudo /etc/init.d/apache2 restart
 
For sometime you need to restart your apache for some configurations to take effect. Just type the above code.

Step 3:
Installing MySql
Go to Menu->Terminal. And type the below code in terminal and hit enter.
sudo apt-get install mysql-server
Type your linux mint password if needed.
Type y and hit enter to confirm MySql installation.
During the installation you will be prompted for a password. Choose something secure and type the password and hit enter.
Step 4:
Installing Wordpress
Download latest Wordpress packages and extract the file. Copy wordpress to File System /var/www/

and then type the following code
cd /var/www
chmod -R 777 wordpress
in the address bar type localhost/wordpress/ and press enter.
You should be prompted of your database name, username, password... provide the following information to create your configuration file. After which, you will be able to access your dashboard.

Your wordpress is now ready to go. Start building your own website.
Enjoy!

Configure Telnet Remote Access


Configure Telnet Remote Access
LAB Topology 3

Lab requirements:
1. Router Name: Auzanet_Router1, Auzanet_Router2 and Auzanet_Router3
2. Set password to auzanet123, secret to auzanet123, and vty to auzanet123. All the passwords are required to be encrypted.
3. Configure all the routers.

Lab Process:
Configure Router 1
Router>en
Router#configure terminal
Enter configuration commands, one per line. End with CNTL/Z.
Router(config)#hostname Auzanet_Router1 SET ROUTER’S NAME
Auzanet_Router1(config)#enable password auzanet123 SET ROUTER PASSWORD
Auzanet_Router1(config)#enable secret auzanet123 SET ROUTER ENCRYPTION PASSWORD
Auzanet_Router1(config)#line vty 0 4 ENABLE TELNET
Auzanet_Router1(config-line)#password auzanet123 REQUIRE PASSWORD AUTHENTICATION
Auzanet_Router1(config-line)#login
Auzanet_Router1(config-line)#exit
Auzanet_Router1(config)#service password-encryption SET GLOBAL PASSWORD ENCRYPTION
Auzanet_Router1(config)#interface serial 0/0/0 ENABLING THE SERIAL PORT
Auzanet_Router1(config-if)#ip address 10.10.2.1 255.255.255.252 SET IP ADDRESS OF THE SERIAL PORT
Auzanet_Router1 (config-if)#clock rate 64000 CONFIGURE CLOCK RATE IF SERIAL PORT IS DCE
Auzanet_Router1(config-if)#description ***Connected to Auzanet_Router1*** SET PORT DESCRIPTION
Auzanet_Router1 (config-if)#no shutdown ACTIVATE THE INTERFACE

Configure Router 2 and Router 3 the similar way the Router 1 is configured. The IP addresses of the interfaces are different. Set the clock rate of the DCE end on every WAN link.

Commands for Telneting from Auzanet_Router1 to Auzanet_Router2:
Auzanet_Router1#telnet 10.10.2.2
Trying 10.10.2.2 …open
User Access Verification
Password: auzanet123 PASSWORD CONFIGURED ON THE VTY LOGIN
Auzanet_Router2>enable
Auzanet_Router2#


Set Router Port Address/Label and Save Settings


April 25, 2012 – Day 7 at Auza.NET Summer Training
Auza.NET Summer Training
Linux Hangout: The Free software revolution
Exploring Linux Operating Systems
Set Router Port Address/Label and Save Settings
LAB Topology 2

Lab requirements:
1. On the router ports set IP addresses on each port:
a. Fastethernet 0/0 – 192.168.1.1 255.255.255.0
b. Serial 0/0 – 10.10.10.1 255.255.255.252
2. Set the router prompt message/banner to: Welcome to Auzanet_Router Training Center Lab
3. Set the router serial port prompt message to ***Connected to Auzanet_Router***
4. Save the Settings

Lab Process:
Router>en
Router#config terminal
Enter configuration commands, one per line. End with CNTL/Z.
Router(config)#int fastEthernet 0/0 ENABLING THE FASTETHERNET PORT
Router(config-if)#ip address 192.168.1.1 255.255.255.0 SET IP ADDRESS OF THE FASTETHERNET PORT
Router(config-if)#no shutdown ACTIVATE THE INTERFACE
*Mar 1 00:08:14.393: %LINK-3-UPDOWN: Interface FastEthernet0/0, changed state to up
Router(config)#interface serial 0/0 ENABLING THE SERIAL PORT
Router(config-if)#ip address 10.10.10.1 255.255.255.252 SET IP ADDRESS OF THE SERIAL PORT
Router(config-if)#description ***Connected to Auzanet_Router*** SET PORT DESCRIPTION
Router(config-if)#no shutdown ACTIVATE THE INTERFACE
Router(config-if)#exit
Router(config)#banner motd @ Welcome to Auzanet_Router Training Center Lab @ SET THE LOGIN GREETING
Router#copy running-config startup-config SAVE THE SETTINGS
Destination filename [startup-config]?
Building configuration...
[OK]
Router#wr SAVE THE SETTINGS
Building configuration...
Router#

Change Name and Router/Switch Password



April 24, 2012 – Day 6 at Auza.NET Summer Training
Auza.NET Summer Training
Linuxgen Hangout: The Free software revolution
Networking Lessons

To begin with, try these exercises to learn about how to configure your Router.

Change Name and Router/Switch Password
LAB Topology 1

Lab requirements:
  1. Router Name: Auzanet_Router
  2. Set Password to auzanet123, secret to auzanet123 and vty to auzanet123
  1. All the passwords are to be encrypted

Lab Process:
Router>en
Router#configure terminal
Enter configuration commands, one per line. End with CNTL/Z.
Router(config)#hostname Auzanet_Router SET ROUTER’S NAME
Auzanet_Router(config)#enable password auzanet123 SET ROUTER PASSWORD
Auzanet_Router(config)#enable secret auzanet123 SET ROUTER ENCRYPTION PASSWORD
Auzanet_Router(config)#line vty 0 4 ENABLE TELNET
Auzanet_Router(config-line)#password auzanet123 REQUIRE PASSWORD AUTHENTICATION
Auzanet_Router(config-line)#login
Auzanet_Router(config-line)#exit
Auzanet_Router(config)#service password-encryption SET GLOBAL PASSWORD ENCRYPTION
Auzanet_Router(config)#exit
Auzanet_Router#sh run VIEW THE CONFIGURATION FILE

Gone are the Days of Slavery from Installer CDs.


April 23, 2012 – Day 6 at Auza.NET Summer Training
Auza.NET Summer Training
Linux Hangout: The Free software revolution

We spent the whole morning on studying the installation of Fedora 16, Fedora KDE, and Ubuntu 13. We also tried to Network the games found in the Games Spin of Fedora. Unfortunately, we were not able to successfully install the network of the two computers as we were having problem on the installation of Linux on PC1 (computer with older version of motherboard and supports only IDE connection) the previous day.
We also tried to connect to the network via WiFi connection and providentially, it did work. We were able to connect to the internet and access our files at http://www.000webhost.com (host server of our website).
I learnt that LiveUSB can be a very valuable storage for installer of operating system. Gone are those days of wasting so much CDs and DVDs for installers.
The advancement of the technology has led us to the successful use of USB drive as storage for the Installer of Operating Systems and Operating System itself.

Play with Fedora Today!


April 20, 2012 – Day 5 at Auza.NET Summer Training
Auza.NET Summer Training
Linux Hangout: The Free software revolution

Day fifth of the training and the excitement was still boosting from within. This feeling was stress with the interest as to the installation of the Fedora Games spin. Although, I’m not really a gamer, I was eager to know the inside of the OS.
The Fedora Games spin is a customized OS which was built just for you and me. The spin offers the best games that can be found in Fedora. The games found extend to several genera from just ok-ok games to real-time and turn-based strategy games, mind-boggling games, tricks and mind-puzzle games. Armacycles is one of the best games that can be found in the spin. Taken from the movie Tron Legacy, it is a very tricky game which involves high analytical schemes in order to win. These different games can also be played via network where other players can actively play according to their strategic efforts and willingness to win. Trying this spin will surely give you a reasonable impression that Fedora can run variety of great games.
This spin includes a number of popular games including:


Aside from installing the Spin of Fedora, we also tried to install the KDE Spin. This spin was more advance and its display was very appealing to the end user.
The KDE Spin can easily connect to the internet and almost all office applications are package in the installer.
Conversely, we also met problems in the installation, like how to create different partitions. So, I download the Fedora-15-Installation_Guide-en-US.pdf to have a better understanding in the process.

Installation of Different Spins for Fedora


April 19, 2012 – Day 4 at Auza.NET Summer Training

Auza.NET Summer Training

Linux Hangout: The Free software revolution

The continuation of installation of different spins for Fedora

We spent the whole morning experimenting on the installation and exploring the different Spins of Fedora that we installed in the desktop computer. We tried installing the Design Suite Spin, Plasma Desktop Spin, LXDE Spin, and XFCE Spin. We have tried installing the Spins in the computer with latest version of motherboard or that which supports SATA connection. However, we had difficulty in installing it to computer with earlier version of motherboard or that which supports IDE connections. We theorized that the problem was in the connection (SATA and IDE), because, although we have tried to upgrade the capacity of the RAM to meet the minimum graphical requirement of the latter, the system still didn’t work. 

The Manager of the company gave us an assignment to study at home before engaging to the networking of the computer with Linux Operating System. And these were the following: ClearOS, Zero Shell, PF Sense, Monowall, Proxy: Squid Cache, DNS Cache, and Telephony: Asterisk (Asterisk Now, ASTLinus), VoIP.

Error in boot using USB drive for Fedora?


April 18, 2012 – Day 3 at Auza.NET Summer Training
Auza.NET Summer Training
Linux Hangout: The Free software revolution
Installation of different Spins from Fedora
Error in boot using USB drive for Fedora?
Or can you see something like this:
[16.467025] USB 1-2: device not accepting address 2, error – 110
[32.103021] USB 1-2: device not accepting address 2, error – 110
[42.627052] USSB 1-2: device not accepting address 4, error – 110
[47.2221531] [drm] nonveau 0000:02:00.0: Register 0X00004030 not found in PLL limits table

Solution:
  1. Go to ‘BIOS Setup’ by pressing DEL, F4 or F2 (Depending on the motherboard of your computer)
  2. ‘Advance Bios Features’
  3. Check if there is ‘Installer OS Select – Auto’
  4. Change ‘Auto’ to ‘Others’
  5. Save Changes by pressing F10.
  6. Then reboot your system and use your computer's built-in function to choose the USB boot device -- usually this is a special key you hold down at boot time, such as F12 or F9. Then enjoy!


This little knowledge we uncover thru contributed efforts was made possible with the help extended to us by the manager of Auza.Net.
How to create a bootable USB/flash drive for Fedora?
The process for most people is simple. Almost all USB sticks are provided by hardware manufacturers ready to use with this process. If you have any documents on your USB stick, it's not a bad idea to back them up before you start.
Then reboot your system and use your computer's built-in function to choose the USB boot device -- usually this is a special key you hold down at boot time, such as F12 or F9. Then enjoy!
If you have problems in booting thru the use of your USB, go to BIOS setup. Change the boot sequence. Set the boot device priority as your USB. Then also check “Advance BIOS Features”. Change “Select Operating System” from “Auto” to “Other”.
Learn more techniques in installing Fedora at: http://fedoraproject.org/wiki/How_to_create_and_use_Live_USB

Auza.NET Summer Training: Technology Consultant


April 17, 2012 – Day 2 at Auza.NET Summer Training
While attending the second day of the training course, the Technology Consultant of Auza.Net, Jerome Auza, an ardent individual (Boholano) fighting against software piracy, introduce to us the use of Linux as operating system for computers. He told us many facts about the history of how Linux began including: “Who invented Linux?”, “What is GNU?”, “What is GPL (General Public License)?”, “Who was Richard Stallman and Linus Torvalds?”
This site provides more information about Linux: http://www.livinginternet.com/i/iw_unix_gnulinux.htm
After the Technology Consultant gave us the overview of what is Linux, the actual installation of the latter succeeded. Using a flash drive (USB), I, together with the other trainees, experimented on how to boot the removable drive and proceeded to the installation of the operating system.

Auza.NET Summer Training

April 16, 2012 – Day 1 at Auza.NET Summer Training enrollment and orientation.
Auza.NET Summer Training enrollment and orientation
I was compassionate and anxious during our first day in the Summer OJT Program at Auza.NET that I wasn’t able to sleep the whole night (April 15, 2012) overruled by my delight as to what could happen. Early 9:30 in the morning, we arrived at Auza.NET Sales Office. Consequently, the enrollment started.
Maria Theresa Lim, the OJT Program Coordinator, gave to us the orientation as to what was the Summer OJT Program at Auza.NET all about and how did it differ from other trainings. She also gave to us insights as to what we can learn from the whole training series. These were the following: advanced-typing skills, introduction to Linux Operating System, intricacies of networking with the Basic and Advance Networking Training and more tricks on website development with Wordpress training and advance programming with PHP Training.
After giving to us the orientation, we had our typing test. The test was administered in order to advance our typing skills.
“The skill is required when you are coding for a program.” said Ms. Lim.
“After you have sought over the wide world of IT, you will learn that typing skills is one of the most important assets that you must have within yourself as a young IT professional.” she added.
Moreover, as the day succeeded, we were taught of basic knowledge on what was Wordpress all about. We visited websites like www.wordpress.org and downloaded programs like Wordpress 3.3.1, EasyPHP, and some free Wordpress Themes. They also taught us on how to install the latter applications and gave us some basic information on how to operate the latter.

Auza.Net: Foundation for Excellence



Foundation for Excellence

Auza.Net has expanded operations by extending help to educational institutions in providing additional trainings to summer and non-summer OJTs. Guided by its vision of helping students become real IT business professional, Auza.Net selflessly offers all summer OJTs and walk in training participants the support and opportunity to achieve their goals in desired field of Information Technology thru dynamic trainings on Basic and Advance Networking, Website Development and Wordpress, and Advance Programming using PHP.
These are the essential and enduring standards by which Auza.Net believes constitute a sound foundation in becoming a real IT professional:
  1. Knowledge in networking - Basic and Advance
  2. Knowledge on website development with Wordpress
  3. Knowledge in programming - PHP
Start building your IT Career. Enroll now at Auza.Net and advance your skills and knowledge on how to become a real IT business professional.
Auza.Net is also one of the leading business firms in the Philippines that strongly fight against software piracy in the country.
Support ‘Free Software’, choose Linux Operating System now!

Part 7. Commercial Law. Piercing the viel. Solidary liability

Because a corporation’s existence is only by fiction of law, it can only exercise its rights and powers through its directors, officers, or...