- Select System -> Administration -> Synaptic Package Manager. You’ll need to enter your password when prompted. Click the Search button, and enter firestarter as a search term. In the list of results, locate the program, and click the check box. Then choose to install the package, and click Apply on the Synaptic toolbar.
- Once the desktop is back up and running, select System -> Administration -> Firestarter. When you run Firestarter for the first time, it will walk you through a wizard.
- Click the Forward button to continue the wizard beyond the introductory page.
- The first step asks which network interface Firestarter should configure.
- Put a check in the “IP address is assigned via DHCP” box, unless you’re using a dialup modem. If you are using a dial-up modem, select “Start the firewall on dial-out” check box. After making your choices, click the Forward button.
- You’re asked if you want to enable Internet connection sharing. This allows you to turn your computer into an Internet router and can be very useful in certain circumstances. You can activate this later on by running the wizard again. Click Forward to continue.
- The wizard will finish. Click the Save button to save your settings to disk. In addition, ensure the Start Firewall Now box is checked. After this, the Firestarter main window opens.
December 30, 2008
How To Install Firestarter
Posted by Gadis at 6:00 PM 0 comments
Labels: Other
December 25, 2008
How to Use the Bluetooth Applet
- Right-click the Bluetooth icon in the navigation area and click Send File.
- In the Choose Files to Send dialog box, navigate to the file you want to send and click Open.
- In the Select Device dialog box, select the target Bluetooth device and click the Connect button.
- The target Bluetooth device might prompt you to accept or deny a file transfer request from Ubuntu. Choose to accept it.
- After the file has been received by the Bluetooth device, click Close
Posted by Gadis at 5:57 PM 0 comments
Labels: Other
December 20, 2008
Sending Files from a Ubuntu PC to Another Device
unarchive the file).
Posted by Gadis at 5:56 PM 0 comments
Labels: Other
December 17, 2008
How To Install Simple Backup
Simple Backup was created courtesy of the Google Summer of Code sponsorship scheme and was designed with the help of Ubuntu developers. To install Simple Backup, open Synaptic Package Manager (System -> Administration), and then search for sbackup. Click its entry in the list of results, mark it for installation, and click Apply. You’ll then find entries for the backup and restoration components of Simple Backup on the System -> Administration menu.
Posted by Gadis at 6:06 PM 0 comments
Labels: Other
December 15, 2008
Install The Driver Using NdisWrapper
- Click System ➤ Administration ➤ Windows Wireless Drivers. Enter your password when prompted.
- Click the Install New Driver button.
- The Install Driver dialog box appears, prompting you to select the .inf file for your wireless device. Click the Location drop-down list to open a file browsing dialog box.
- Navigate to the .inf file you copied to your system, which you have placed in the driver folder on your desktop. Double-click the desktop folder, and then doubleclick the driver folder listed in the right column. Select the .inf file you copied in the driver folder and then click the Open button.
- Back in the Install Driver dialog box, click the Install button.
- At this point, you should see the driver listed at the left column of the Wireless Network Drivers dialog box. It specifies the name of the driver installed and whether the hardware is installed.
- No reboot is necessary and your wireless network card should work immediately. To test if the driver works, click the NetworkManager icon and see if there are wireless networks listed. If it works, click Close to exit the Wireless Network Drivers dialog box.
Posted by Gadis at 5:53 PM 0 comments
Labels: Other
December 13, 2008
How To Install ClamTk
- Select System -> Administration -> Synaptic Package Manager. You’ll need to enter your password when prompted.
- Click the Search button, and enter clamtk as a search term.
- In the list of results, locate the program, and click the check box.
- Choose to Mark for Installation.
- When prompted to mark additional required changes, click the Mark button. This ensures ClamTk, ClamAV, and their dependencies will be installed.
- Click the Apply button on the Synaptic toolbar.
Posted by Gadis at 6:04 PM 0 comments
Labels: Other
December 10, 2008
Making and Burning DVDs with Growisofs
Here is an example of some growisofs commands for a multi-burn session:
$ growisofs -Z /dev/dvd -R -J /home/chris Master and burn to DVD
$ growisofs -Z /dev/dvd -R -J /home/francois Add to burn
$ growisofs -M /dev/dvd=/dev/zero Close burn
If you want to add options when creating the ISO image, you can simply add mkisofs options to the command line. If you want to burn a DVD image using growisofs, you can use the -dvd-compat option. Here’s an example:
$ growisofs -dvd-compat -Z /dev/dvd=image.iso Burn an ISO image to DVD
Posted by Gadis at 8:39 PM 0 comments
Labels: Other
December 9, 2008
Create a Virtual File System
Virtual file systems are useful for such things as creating live CDs or running dedicated virtual operating systems. In the example that follows, you create a blank 500MB disk image file, format it as a file system,
Posted by Gadis at 8:36 PM 0 comments
Labels: Other
December 8, 2008
Control Keys for Editing with Nano
This below control code function key description nano
Ctrl+g : F1 Show help text. (Press Ctrl+x to exit help.)
Ctrl+x : F2 Exit nano (or close the current file buffer).
Ctrl+o : F3 Save the current file.
Ctrl+j : F4 Justify the current text in the current paragraph.
Ctrl+r : F5 Insert a file into the current file
Ctrl+w : F6 Search for text.
Ctrl+y : F7 Go to the previous screen.
Ctrl+v : F8 Go to the next screen.
Ctrl+k : F9 Cut (and store) the current line or marked text.
Ctrl+u : F10 Uncut (paste) the previously cut line into the file.
Ctrl+c : F11 Display the current cursor position.
Ctrl+t : F12 Start spell checking.
Ctrl+- : Go to selected line and column numbers.
Ctrl+\ : Search and replace text.
Ctrl+6 : Mark text, starting at the cursor (Ctrl+6 to unset mark).
Ctrl+f : Go forward one character.
Ctrl+b : Go back one character.
Ctrl+Space : Go forward one word.
Alt+Space : Go backward one word.
Ctrl+p : Go to the previous line.
Ctrl+n : Go to the next line.
Ctrl+a : Go to the beginning of the current line.
Ctrl+e : Go to the end of the current line.
Alt+( : Go to the beginning of the current
Posted by Gadis at 8:14 PM 0 comments
Labels: Other
December 7, 2008
How OpenSSH Works
The first time an OpenSSH client connects with an OpenSSH server, you are asked to verify that it is connected to the correct server. After verification, the client makes a copy of the server’s public host key. On subsequent connections, the client compares the key provided by the server with the original key it stored. Although this test is not foolproof, the next one is quite secure
The client then generates a random key, which it encrypts with both the server’s public host key and the session key. The client sends this encrypted key to the server. The server, in turn, uses its private keys to decrypt the encrypted key. This process creates a key that is known only to the client and the server and is used to encrypt the rest of the session
Posted by Gadis at 8:00 PM 0 comments
Labels: Other