<?xml version='1.0' encoding='UTF-8'?><rss xmlns:atom="http://www.w3.org/2005/Atom" xmlns:openSearch="http://a9.com/-/spec/opensearchrss/1.0/" xmlns:blogger="http://schemas.google.com/blogger/2008" xmlns:georss="http://www.georss.org/georss" xmlns:gd="http://schemas.google.com/g/2005" xmlns:thr="http://purl.org/syndication/thread/1.0" version="2.0"><channel><atom:id>tag:blogger.com,1999:blog-505435583211941340</atom:id><lastBuildDate>Fri, 25 Oct 2024 00:31:19 +0000</lastBuildDate><category>ALIEN</category><category>Avant Window Manager</category><category>CCSM</category><category>Connexant Winmodem</category><category>Google Desktop</category><category>Tiger</category><category>WINE</category><category>XFE</category><category>broken grub</category><category>cal</category><category>calendar</category><category>command</category><category>compiz setting manager</category><category>deb to rpm converter</category><category>download accelerator</category><category>explorer</category><category>filezilla</category><category>finding</category><category>ftp client</category><category>gadget</category><category>gnome-ppp</category><category>google gadget</category><category>hdparam</category><category>list files</category><category>msi wind</category><category>pdf</category><category>root access</category><category>search</category><category>sysinfo</category><category>system information</category><category>system vulnerability</category><category>ubuntu 8.04.1</category><category>wxDownload Fast</category><title>Just for ubuntu</title><description>Try to write what i know and try to solve a problem on ubuntu from beginner</description><link>http://ubuntunow-linux.blogspot.com/</link><managingEditor>noreply@blogger.com (Bearisusanto)</managingEditor><generator>Blogger</generator><openSearch:totalResults>24</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><item><guid isPermaLink="false">tag:blogger.com,1999:blog-505435583211941340.post-884659038512421461</guid><pubDate>Mon, 06 Oct 2008 08:28:00 +0000</pubDate><atom:updated>2008-10-06T01:31:52.850-07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">finding</category><category domain="http://www.blogger.com/atom/ns#">search</category><title>Finding Files</title><description>You now know what each major directory holds, but it still doesn’t really help you find things. I mean, you could go looking through directories, but there are quicker ways. There are four main file search commands.&lt;br /&gt;&lt;br /&gt;which&lt;br /&gt;The first is the which(1) command. which is usually used to locate a program quickly. It just searches your PATH and returns the first instance it finds and the directory path to it. Take this example:&lt;br /&gt;&lt;br /&gt;% which bash&lt;br /&gt;/bin/bash&lt;br /&gt;&lt;br /&gt;From that you see that bash is in the /bin directory. This is a very limited command for searching, since it only searches your PATH.&lt;br /&gt;&lt;br /&gt;whereis&lt;br /&gt;The whereis(1) command works similar to which, but can also search for man pages and source files. A whereis search for bash should return this:&lt;br /&gt;&lt;br /&gt;% whereis bash&lt;br /&gt;bash: /bin/bash /usr/bin/bash /usr/man/man1/bash.1.gz&lt;br /&gt;&lt;br /&gt;This command not only told us where the actual program is located, but also where the online documentation is stored. Still, this command is limited. What if you wanted to search for a specific configuration file? You can’t use which or whereis for that.&lt;br /&gt;&lt;br /&gt;find&lt;br /&gt;The find(1) command allows the user to search the filesystem with a rich collection of search predicates. Users may specify a search with filename wildcards, ranges of modification or creation times, or other advanced properties. For example, to search for the default xinitrc¤ FORMTEXT&lt;br /&gt; file on the system, the following command could be used.&lt;br /&gt;&lt;br /&gt;% find / -name xinitrc&lt;br /&gt;/var/X11R6/lib/xinit/xinitrc&lt;br /&gt;&lt;br /&gt;find will take a while to run, since it has to traverse the entire root directory tree. And if this command is run as a normal user, there will be permission denied errormessages for directories that only root can see. But find found our file, so that’s good. If only it could be a bit faster...&lt;br /&gt;&lt;br /&gt;slocate&lt;br /&gt;The slocate(1) command searches the entire filesystem, just like the find command can do, but it searches a database instead of the actual filesystem. The database is set to automatically update every morning, so you have a somewhat fresh listing of files on your system. You can manually run updatedb(1) to update the slocate database (before running updatedb by hand, you must first su to the root user). Here’s an example of slocate in action:&lt;br /&gt;&lt;br /&gt;% slocate xinitrc # we don’t have to go to the root&lt;br /&gt;/var/X11R6/lib/xinit/xinitrc&lt;br /&gt;/var/X11R6/lib/xinit/xinitrc.fvwm2&lt;br /&gt;/var/X11R6/lib/xinit/xinitrc.openwin&lt;br /&gt;/var/X11R6/lib/xinit/xinitrc.twm&lt;br /&gt;&lt;br /&gt;We got more than what we were looking for, and quickly too.With these commands, you should be able to find whatever you’re looking for on your Linux system.</description><link>http://ubuntunow-linux.blogspot.com/2008/10/finding-files.html</link><author>noreply@blogger.com (Bearisusanto)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-505435583211941340.post-5633322643043886507</guid><pubDate>Wed, 10 Sep 2008 15:48:00 +0000</pubDate><atom:updated>2008-09-10T08:49:58.735-07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">pdf</category><title>Adobe Acrobat Reader</title><description>&lt;p&gt;Pdf is the most popular document now. Its simply, light and compatible with many system.&lt;/p&gt;&lt;p&gt;Ubuntu has default pdf reader when we installed it, but adobe acrobat is the most popular reader.&lt;/p&gt;&lt;p&gt;Now, its shows how to install it in ubuntu.&lt;/p&gt;&lt;p&gt;1. Open terminal&lt;/p&gt;&lt;p&gt;2. &lt;code&gt;sudo wget http://www.medibuntu.org/sources.list.d/hardy.list -O /etc/apt/sources.list.d/medibuntu.list&lt;/code&gt;&lt;/p&gt;&lt;p&gt;3. &lt;code&gt;sudo apt-get update &amp;amp;&amp;amp; sudo apt-get install medibuntu-keyring &amp;amp;&amp;amp; sudo apt-get update&lt;/code&gt;&lt;/p&gt;&lt;p&gt;4. &lt;code&gt;sudo apt-get install &lt;a title=&quot;adobe acrobat reader&quot; href=&quot;apt://acroread&quot;&gt;acroread&lt;/a&gt;&lt;/code&gt;&lt;/p&gt;</description><link>http://ubuntunow-linux.blogspot.com/2008/09/adobe-acrobat-reader.html</link><author>noreply@blogger.com (Bearisusanto)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-505435583211941340.post-7171099215431901013</guid><pubDate>Wed, 10 Sep 2008 11:29:00 +0000</pubDate><atom:updated>2008-09-10T04:32:53.779-07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">list files</category><title>LISTING FILES</title><description>• &quot;ls&quot; command&lt;br /&gt; - Linux command used to list the files in a given directory&lt;br /&gt; - Most common method for displaying files&lt;br /&gt; - Displays all the files in the current directory in columnar format&lt;br /&gt;&lt;br /&gt;• &quot;ll&quot; command&lt;br /&gt; - Alias for the ls -l command&lt;br /&gt; - Gives a long file listing&lt;br /&gt;&lt;br /&gt;• File command&lt;br /&gt; -Linux command that displays the file type of a specified filename&lt;br /&gt;&lt;br /&gt;• Text file&lt;br /&gt; - File that stores information in a readable text format&lt;br /&gt;• Some filenames inside each user’s home directory represent important configuration&lt;br /&gt; files or program directories&lt;br /&gt;• Hidden files&lt;br /&gt;  – Files that are not normally displayed to the user via&lt;br /&gt;    common filesystem commands&lt;br /&gt;&lt;br /&gt;List option :&lt;br /&gt;-a or --all = list all filenames&lt;br /&gt;-A or --almost-all = List most filenames (excludes the . and .. special files)&lt;br /&gt;-C = lists filenames in column format&lt;br /&gt;--color=n = list filenames without sorting&lt;br /&gt;-f = lists all filenames without sorting&lt;br /&gt;-F or --classify = lists filenames classified by file type&lt;br /&gt;--full-time = lists filenames in long format and displays the full modification time&lt;br /&gt;-l = lists filenames in long format&lt;br /&gt;-lh or -l --human-readable = lists filenames in long format with human-readable (easy-to-read)&lt;br /&gt;-lG or -l --no-group or -o = lists filenames in long format but omits the group information&lt;br /&gt;-r or --reverse = list filenames reverse sorted&lt;br /&gt;-R or --recursive = lists filenames in the specified directory and all subdirectories&lt;br /&gt;-s = lists filenames and their associated size in kilobytes (K)&lt;br /&gt;-S = lists filenames sorted by file size&lt;br /&gt;-t = lists filenames sorted by modification time&lt;br /&gt;-U = lists filenames without sorting&lt;br /&gt;-x = lists filenames in rows rather than in columns</description><link>http://ubuntunow-linux.blogspot.com/2008/09/listing-files.html</link><author>noreply@blogger.com (Bearisusanto)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-505435583211941340.post-1343082488361292899</guid><pubDate>Thu, 28 Aug 2008 05:30:00 +0000</pubDate><atom:updated>2008-08-27T22:38:30.447-07:00</atom:updated><title>VMware Virtual Machine on Ubuntu 8.04</title><description>Running other OS on ubuntu is a great moment. We could use virtualbox ose, xen or use vmware. I think vmware is more interesting because it doesnt need special linux-header like xen or virtualbox. You could get vmware server freely from its website and you could request serial number freely too.&lt;br /&gt;&lt;br /&gt;Step for installing and using vmware :&lt;br /&gt;    1.    Download the file Vmware-server-1.0.6-91891.tar.gz which size is 102MB from vmware website.&lt;br /&gt;    2.    Request free serial number from vmware too.&lt;br /&gt;    3.    Open the folder which contain the vmware and extract it or open terminal and extract it by type sudo tar -xvf Vmware-server-1.0.6-91891.tar.gz&lt;br /&gt;    4.    cd vmware-server-distrib (folder which contain file extract)&lt;br /&gt;    5.    ./vmware-install.pl&lt;br /&gt;    6.    Follow all installer command until finish&lt;br /&gt;    7.    Run vmware from root&lt;br /&gt;           root@hardy:/# vmware&lt;br /&gt;    &lt;br /&gt;           Note :&lt;br /&gt;           When you see this message :&lt;br /&gt;          /usr/lib/vmware/bin/vmware /usr/lib/vmware/lib/libgcc_s.so.1/libgcc_s.so.1:version  &#39;GCC_3.4&#39; not found (required by /usr/lib/libcairo.so.2)&lt;br /&gt;             .........&lt;br /&gt;             .........&lt;br /&gt;             Remove the folder libgcc_s.so.1 on /usr/lib/vmware/lib&lt;br /&gt;     &lt;br /&gt;     8.    From the first windows choose Localhost&lt;br /&gt;     9.    Goto &#39;Help&#39; and choose &#39;Enter Serial Number&#39;&lt;br /&gt;   10.    Without serial number, you can not running virtualization&lt;br /&gt;   11.     Click “Create a new virtual machine”&lt;br /&gt;   12.    Select “Typical” on Virtual Machine Configuration&lt;br /&gt;   13.    Choose guest operating system&lt;br /&gt;   14.    Define the virtual machine name and location&lt;br /&gt;   15.    Choose network connection&lt;br /&gt;   16.    Specify disk size&lt;br /&gt;   17.    Finish&lt;br /&gt;   18.    Now you could install the new operating system</description><link>http://ubuntunow-linux.blogspot.com/2008/08/vmware-virtual-machine-on-ubuntu-804.html</link><author>noreply@blogger.com (Bearisusanto)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-505435583211941340.post-5284706663900687706</guid><pubDate>Mon, 18 Aug 2008 13:26:00 +0000</pubDate><atom:updated>2008-08-18T06:27:19.298-07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Connexant Winmodem</category><title>Setting Connexant Winmodem on Ubuntu 8.04</title><description>&lt;p&gt;Step for installing winmodem on ubuntu hardy heron&lt;br /&gt;1. sudo apt-get update&lt;br /&gt;2. sudo apt-get install libc6-dev_2.5-0ubuntu14_i386.deb&lt;br /&gt;3. sudo apt-get install build-essential linux&lt;br /&gt;4. Download alsa driver :&lt;br /&gt;wget &lt;a href=&quot;http://www.linuxant.com/alsa-driver/alsa-driver-linuxant_1.0.16.1-1_all.deb&quot; target=&quot;_blank&quot;&gt;http://www.linuxant.com/alsa-driver/alsa-driver-linuxant_1.0.16.1-1_all.deb&lt;/a&gt;&lt;br /&gt;Install:&lt;br /&gt;sudo dpkg -i alsa-driver-linuxant_1.0.16.1-1_all.deb&lt;br /&gt;5. Download conexant hsf modem&lt;br /&gt;wget &lt;a href=&quot;http://www.linuxant.com/drivers/hsf/full/archive/hsfmodem-7.68.00.09full/hsfmodem_7.68.00.09full_i386.deb.zip&quot; target=&quot;_blank&quot;&gt;http://www.linuxant.com/drivers/hsf/full/archive/hsfmodem-7.68.00.09full/hsfmodem_7.68.00.09full_i386.deb.zip&lt;/a&gt;&lt;br /&gt;Unzip:&lt;br /&gt;sudo unzip hsfmodem_7.68.00.09full_i386.deb.zip&lt;br /&gt;Install :&lt;br /&gt;sudo dpkg -i hsfmodem_7.68.00.09full_i386.deb&lt;br /&gt;6. Download hsfpatch (http://arisusanto.com/images/fbfiles/files/hsfuniversalpatch_1.gz)&lt;br /&gt;Copy hsfpatch to /usr/lib/hsfmodem/&lt;br /&gt;Goto /usr/lib/hsfmodem/ and execute hsptch with comand : ./hsfpatch&lt;br /&gt;Use email and license key which generate by hsfpatch&lt;br /&gt;Example :&lt;br /&gt;email : &lt;a href=&quot;mailto://tux@kernel.org&quot;&gt;tux@kernel.org&lt;/a&gt;&lt;br /&gt;License key : BADCAFE4742B&lt;br /&gt;7. sudo hsfconfig -license&lt;br /&gt;Enter the email and key license which get from hsfpatch&lt;br /&gt;The result:&lt;br /&gt;Config for modem unit 0: /dev/ttySHSF0&lt;br /&gt;Device instance: 0-HDA-14f15045:103c30b2-0&lt;br /&gt;HW revision    : SSD=34 LSD=0×22&lt;br /&gt;HW profile name: hsfhda&lt;br /&gt;Registration ID: E15A-8140-4FDE&lt;br /&gt;License owner  : &lt;a href=&quot;mailto://tux@kernel.org&quot;&gt;tux@kernel.org&lt;/a&gt;&lt;br /&gt;License key    : BA-DC-AF-E4-74-2B&lt;br /&gt;License status : free (14.4 kbps)&lt;br /&gt;Current region : INDONESIA (T.35 code: 0054)&lt;/p&gt; &lt;p&gt;8. If the license status is still free, do this step&lt;br /&gt;- sudo hsfconfig&lt;br /&gt;- Enter, if request : use the current, email, and license key&lt;br /&gt;Result :&lt;br /&gt;Config for modem unit 0: /dev/ttySHSF0&lt;br /&gt;Device instance: 0-HDA-14f15045:103c30b2-0&lt;br /&gt;HW revision    : SSD=34 LSD=0×22&lt;br /&gt;HW profile name: hsfhda&lt;br /&gt;Registration ID: E15A-8140-4FDE&lt;br /&gt;License owner  : &lt;a href=&quot;mailto://tux@kernel.org&quot;&gt;tux@kernel.org&lt;/a&gt;&lt;br /&gt;License key    : BA-DC-AF-E4-74-2B&lt;br /&gt;License status : OK&lt;br /&gt;Current region : INDONESIA (T.35 code: 0054)&lt;br /&gt;9. Edit the init in /etc/wvdial.conf&lt;br /&gt;init=AT&amp;amp;FW3+MS=V90,1,28800,33600,28800,56000&lt;br /&gt;10. Connect to the internet is succesfully&lt;/p&gt;</description><link>http://ubuntunow-linux.blogspot.com/2008/08/setting-connexant-winmodem-on-ubuntu.html</link><author>noreply@blogger.com (Bearisusanto)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-505435583211941340.post-488933651583241045</guid><pubDate>Mon, 18 Aug 2008 13:25:00 +0000</pubDate><atom:updated>2008-08-18T06:25:50.620-07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">broken grub</category><title>Howto reconfigure broken grub</title><description>&lt;div class=&quot;snap_preview&quot;&gt;&lt;p&gt;When our grub is broken because of install new windows or our MBR is broken, so we can’t boot on linux.&lt;/p&gt; &lt;p&gt;To normalize grub we can do 2 ways, by using Live CD or we can enter into linux terminal.&lt;/p&gt; &lt;p&gt;For the first time we have to boot by live cd and next we have to do:&lt;span id=&quot;more-7&quot;&gt;&lt;/span&gt;&lt;br /&gt;1. Open terminal&lt;br /&gt;2. sudo grub&lt;br /&gt;3. grub&gt; find /boot/grub/stage1&lt;br /&gt;(hd0,0)&lt;br /&gt;4. grub&gt; root (hd0,0)&lt;br /&gt;5. grub&gt; setup (hd0)&lt;br /&gt;6. quit&lt;br /&gt;7. Reboot&lt;/p&gt; &lt;/div&gt;</description><link>http://ubuntunow-linux.blogspot.com/2008/08/howto-reconfigure-broken-grub.html</link><author>noreply@blogger.com (Bearisusanto)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-505435583211941340.post-2912159327946382917</guid><pubDate>Mon, 18 Aug 2008 13:23:00 +0000</pubDate><atom:updated>2008-08-18T06:24:26.587-07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">gnome-ppp</category><title>Instal gnome-ppp</title><description>&lt;div class=&quot;snap_preview&quot;&gt;&lt;p&gt;1. #apt-get install gnome-ppp&lt;/p&gt; &lt;p&gt;2. Open gnome ppp in Applications -&gt; Internet -&gt; Gnome PPP&lt;/p&gt; &lt;p&gt;3. Type username and password&lt;span id=&quot;more-8&quot;&gt;&lt;/span&gt;&lt;/p&gt; &lt;p&gt;4. Type phone number&lt;/p&gt; &lt;p&gt;5. Open Setup&lt;/p&gt; &lt;p&gt;6. Detect modem device&lt;/p&gt; &lt;p&gt;7. Open init string&lt;/p&gt; &lt;p&gt;8. Change init 2 with “AT&amp;amp;FW3+MS=V90,1,28800,33600,28800,56000″&lt;/p&gt; &lt;p&gt;9. Close setup configuration&lt;/p&gt; &lt;p&gt;10. Connect to the world&lt;/p&gt; &lt;/div&gt;</description><link>http://ubuntunow-linux.blogspot.com/2008/08/instal-gnome-ppp.html</link><author>noreply@blogger.com (Bearisusanto)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-505435583211941340.post-7523883451612299848</guid><pubDate>Mon, 18 Aug 2008 13:21:00 +0000</pubDate><atom:updated>2008-08-18T06:22:24.836-07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">WINE</category><title>WINE (Wine is Not Emulator)</title><description>&lt;div class=&quot;snap_preview&quot;&gt;&lt;p&gt;Wine is used for emulate windows environment in Linux, so we can running windows base program from linux. It will create folder which act like drive c.&lt;/p&gt; &lt;p&gt;&lt;strong&gt;Install WINE &lt;/strong&gt;&lt;span id=&quot;more-9&quot;&gt;&lt;/span&gt;&lt;/p&gt; &lt;p&gt;If we have binary package or  repository cd :&lt;/p&gt; &lt;p&gt;1. Open terminal&lt;/p&gt; &lt;p&gt;Applications -&gt; Accessories -&gt; Terminal&lt;/p&gt; &lt;p&gt;2. Open the directory which contain this binary&lt;/p&gt; &lt;p&gt;cd xxx(directory)&lt;/p&gt; &lt;p&gt;3. dpkg -i wine&lt;/p&gt; &lt;p&gt;Maybe it need binfmt-support install first&lt;/p&gt; &lt;p&gt;Install directly from main server&lt;/p&gt; &lt;p&gt;1. Make sure you connected to the internet&lt;/p&gt; &lt;p&gt;2.  Open terminal&lt;/p&gt; &lt;p&gt;Applications -&gt; Accessories -&gt; Terminal&lt;/p&gt; &lt;p&gt;3. apt-get install wine&lt;/p&gt; &lt;p&gt;&lt;strong&gt;Use WIne&lt;/strong&gt;&lt;/p&gt; &lt;p&gt;Lets say we want to install windows program, ex winrar.exe&lt;/p&gt; &lt;p&gt;From terminal type sudo wine or wine&lt;/p&gt; &lt;p&gt;For running the program just type wine winrar or from Applications menu&lt;/p&gt; &lt;/div&gt;</description><link>http://ubuntunow-linux.blogspot.com/2008/08/wine-wine-is-not-emulator.html</link><author>noreply@blogger.com (Bearisusanto)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-505435583211941340.post-9037034997465605181</guid><pubDate>Mon, 18 Aug 2008 13:20:00 +0000</pubDate><atom:updated>2008-08-18T06:21:33.081-07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Google Desktop</category><title>Google Desktop</title><description>&lt;div class=&quot;snap_preview&quot;&gt;&lt;p&gt;&lt;span&gt;Google Desktop is a desktop search application that gives you easy access to information on your computer and from the web. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;span&gt;Desktop makes searching your own email, files, music, photos, and              more as easy as searching the web with Google. &lt;/span&gt;&lt;span id=&quot;more-11&quot;&gt;&lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;span&gt;To install it you can get by downloaded it from ubuntu official main server using “apt-get install google-desktop-linux” or download from http://desktop.google.com/en/linux/download.html.&lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;span&gt;It will start automatically and appear at upper right corner and there is preferences menu to setup the configuration.&lt;/span&gt;&lt;/p&gt; &lt;/div&gt;</description><link>http://ubuntunow-linux.blogspot.com/2008/08/google-desktop.html</link><author>noreply@blogger.com (Bearisusanto)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-505435583211941340.post-5772632613971713911</guid><pubDate>Mon, 18 Aug 2008 13:19:00 +0000</pubDate><atom:updated>2008-08-18T06:19:52.609-07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">CCSM</category><category domain="http://www.blogger.com/atom/ns#">compiz setting manager</category><title>CCSM</title><description>&lt;div class=&quot;snap_preview&quot;&gt;&lt;p&gt;CCSM is a abbreviation from compiz config setting manager. It is a tool for configure compiz. It could downloaded from main server by using apt-get = ’sudo apt-get install compizconfig-settings-manager’&lt;/p&gt; &lt;p&gt;Now let’s start the settings manager:&lt;span id=&quot;more-14&quot;&gt;&lt;/span&gt;&lt;/p&gt; &lt;p&gt;1. System → Preferences → Advanced Desktop Effects Settings&lt;/p&gt; &lt;p&gt;2. Setting the cube&lt;br /&gt;Enable the following plugins :&lt;br /&gt;* Desktop Cube&lt;br /&gt;* Rotate Cube - that is necessary to spin the cube&lt;br /&gt;* Viewport Switcher (optional) - to change desktops with the mousewheel&lt;br /&gt;* Cube Caps (optional) - use an images on top and bottom of the cube&lt;/p&gt; &lt;p&gt;3. Increase the number of the virtual desktops to 4&lt;br /&gt;General Options → Desktop Size → Horizontal Virtual Size&lt;br /&gt;For Vertical and number of desktop left at 1&lt;br /&gt;Now we can rotate our desktop by pres [ctrl]+[alt]+[left arrow]/[right arrow]&lt;/p&gt; &lt;p&gt;4. Wobbly windows effects&lt;br /&gt;* Enable Wobbly Windows&lt;br /&gt;* At General → Map Effect and Focus effect choose Shiver&lt;br /&gt;* Enable ‘Snap Inverted’ to prevent windows from adhering to screen edges&lt;/p&gt; &lt;p&gt;5. Scale effects&lt;br /&gt;Use for look all windows which open in one display by moving the cursor on the corner of display/screen&lt;br /&gt;Window Management -&gt; Scale -&gt; Bindings -&gt; Initiate Window Picker&lt;/p&gt; &lt;/div&gt;</description><link>http://ubuntunow-linux.blogspot.com/2008/08/ccsm.html</link><author>noreply@blogger.com (Bearisusanto)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-505435583211941340.post-728958751180125106</guid><pubDate>Mon, 18 Aug 2008 13:16:00 +0000</pubDate><atom:updated>2008-08-18T06:17:07.126-07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Avant Window Manager</category><title>Avant Window Manager</title><description>&lt;p&gt;Avant Window Navgator (Awn) is a dock-like bar which sits at the bottom of the screen (in all its composited-goodness) tracking open windows. Takes MAC look in ubuntu.&lt;/p&gt; &lt;p&gt;Awn uses libwnck to keep a track of open windows, and behaves exactly like a normal window-list :&lt;span id=&quot;more-17&quot;&gt;&lt;/span&gt;&lt;/p&gt; &lt;ul&gt;&lt;li&gt;Clicking an icon switches to that window, clicking again will minimise the window&lt;/li&gt;&lt;li&gt;Right-clicking will bring up a menu exactly like that of what you see on the window-list, allowing you to max, min, close, resize etc the window.&lt;/li&gt;&lt;li&gt;Dragging something on top of an icon will activate that window.&lt;/li&gt;&lt;li&gt;Visually (and quite attractively) responds to ‘needs attention’ &amp;amp; ‘urgent’ events&lt;/li&gt;&lt;li&gt;Can show windows from the entire viewport, or just the visible viewport.&lt;/li&gt;&lt;/ul&gt; &lt;p&gt;Installing and configure avant windows manager:&lt;/p&gt; &lt;p&gt;1. sudo apt-get install  avant-window-navigator&lt;/p&gt; &lt;p&gt;2. Applications -&gt; Accessories -&gt; Avant Window Manager&lt;/p&gt; &lt;p&gt;3. Will show dock on the bottom of display&lt;/p&gt; &lt;p&gt;4. Right click and choose Preferences&lt;/p&gt; &lt;p&gt;5.  You can change icon look on the General, Bar Appearance, Glass Engine and Pattern Engine&lt;/p&gt; &lt;p&gt;6. Add new program launcher on the Launcher&lt;/p&gt;</description><link>http://ubuntunow-linux.blogspot.com/2008/08/avant-window-manager.html</link><author>noreply@blogger.com (Bearisusanto)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-505435583211941340.post-5121023349091045185</guid><pubDate>Mon, 18 Aug 2008 13:14:00 +0000</pubDate><atom:updated>2008-08-18T06:15:32.663-07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">root access</category><title>Modify Root Access</title><description>&lt;div class=&quot;snap_preview&quot;&gt;&lt;p&gt;When we install ubuntu from LiveCD, root account looks like dissable. We cant login with root account, just could login with user only.&lt;/p&gt; &lt;p&gt;When we want install program or application from terminal we have used sudo. Its not a problem if we just used ubuntu for home application but when we want develop, its tired to type sudo again sudo again.&lt;span id=&quot;more-20&quot;&gt;&lt;/span&gt;&lt;/p&gt; &lt;p&gt;In this section I just want to share to make root active.&lt;/p&gt; &lt;p&gt;1. Open Accessories -&gt; Terminal&lt;/p&gt; &lt;p&gt;2. sudo passwd&lt;/p&gt; &lt;p&gt;3. Type new password for root&lt;/p&gt; &lt;p&gt;4. If we want to be root we just type”su” -&gt; enter the root password&lt;/p&gt; &lt;p&gt;5. Now we are being root, no need type sudo went we want doing something which just only root granted to do&lt;/p&gt; &lt;p&gt;Ex :  bearisusanto@akmakoe:~$ su&lt;br /&gt;Password:&lt;br /&gt;root@akmakoe:/home/bearisusanto#&lt;/p&gt; &lt;p&gt;Activated root at user login&lt;/p&gt; &lt;p&gt;1.  System -&gt; Administration -&gt; Login Window&lt;/p&gt; &lt;p&gt;2.  At security tab, enable “Allow Local Administrator Login”&lt;/p&gt; &lt;/div&gt;    &lt;p class=&quot;meta&quot;&gt;&lt;br /&gt;&lt;/p&gt;</description><link>http://ubuntunow-linux.blogspot.com/2008/08/modify-root-access.html</link><author>noreply@blogger.com (Bearisusanto)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-505435583211941340.post-1264798103834586762</guid><pubDate>Mon, 18 Aug 2008 13:12:00 +0000</pubDate><atom:updated>2008-08-18T06:12:46.760-07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">ALIEN</category><category domain="http://www.blogger.com/atom/ns#">deb to rpm converter</category><title>ALIEN</title><description>&lt;div class=&quot;snap_preview&quot;&gt;&lt;p&gt;Alien is a program that converts between Red Hat rpm, Debian deb, Stampede slp, Slackware tgz, and Solaris pkg file formats.&lt;span id=&quot;more-23&quot;&gt;&lt;/span&gt;&lt;/p&gt; &lt;p&gt;1. Get alien package&lt;br /&gt;sudo apt-get install alien&lt;br /&gt;2. Convert the package.rpm into package.deb&lt;br /&gt;alien –to-deb package.rpm&lt;br /&gt;3. Convert the package.deb into package.deb&lt;br /&gt;alien –to-rpm package.deb&lt;/p&gt; &lt;/div&gt;</description><link>http://ubuntunow-linux.blogspot.com/2008/08/alien.html</link><author>noreply@blogger.com (Bearisusanto)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-505435583211941340.post-2057797107885332691</guid><pubDate>Mon, 18 Aug 2008 13:11:00 +0000</pubDate><atom:updated>2008-08-18T06:11:59.294-07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">filezilla</category><category domain="http://www.blogger.com/atom/ns#">ftp client</category><title>FileZilla</title><description>&lt;div class=&quot;snap_preview&quot;&gt;&lt;p&gt;FileZilla Client is a fast and reliable cross-platform FTP, FTPS and SFTP client with lots of useful features and an intuitive interface.&lt;/p&gt; &lt;p&gt;Install FileZilla :&lt;/p&gt; &lt;p&gt;sudo apt-get install filezilla&lt;span id=&quot;more-27&quot;&gt;&lt;/span&gt;&lt;/p&gt; &lt;p&gt;Connecting filezilla to ftp server:&lt;/p&gt; &lt;p&gt;1. Applications -&gt; Internet -&gt; FileZilla FTP Client&lt;/p&gt; &lt;p&gt;2.  Fill&lt;/p&gt; &lt;p&gt;Host : ftp…..com&lt;/p&gt; &lt;p&gt;Username = xxxx&lt;/p&gt; &lt;p&gt;Password = xxxx&lt;/p&gt; &lt;p&gt;Port = 21&lt;/p&gt; &lt;p&gt;Quickconnect&lt;/p&gt; &lt;/div&gt;</description><link>http://ubuntunow-linux.blogspot.com/2008/08/filezilla.html</link><author>noreply@blogger.com (Bearisusanto)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-505435583211941340.post-5269658065786315342</guid><pubDate>Mon, 18 Aug 2008 13:09:00 +0000</pubDate><atom:updated>2008-08-18T06:10:39.298-07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">command</category><title>Creating, Moving, Renaming and Deleting Files and Directories</title><description>&lt;div class=&quot;snap_preview&quot;&gt;&lt;p&gt;1. Creating new directories using “mkdir”&lt;br /&gt;Pronounce the mkdir command as “make dir”&lt;/p&gt; &lt;p&gt;root@hardy:/home/bearisusanto/Documents# mkdir NEWDIR&lt;br /&gt;root@hardy:/home/bearisusanto/Documents# ls&lt;br /&gt;NEWDIR&lt;span id=&quot;more-30&quot;&gt;&lt;/span&gt;&lt;/p&gt; &lt;p&gt;If you try to create a directory with name has already been used, it will shows&lt;br /&gt;root@hardy:/home/bearisusanto/Documents# mkdir NEWDIR&lt;br /&gt;mkdir: cannot create directory `NEWDIR’: File exists&lt;/p&gt; &lt;p&gt;2. Copying files to new locations using “cp” and “mv”&lt;br /&gt;Pronounce cp as “sea pea”, similarly, pronounce mv as “em vee”, but when you speak of moving a file, say “move”&lt;/p&gt; &lt;p&gt;Copy files “&lt;br /&gt;root@hardy:/home/bearisusanto/Documents/NEWDIR# cp login login.copy&lt;br /&gt;root@hardy:/home/bearisusanto/Documents/NEWDIR# ls -ld login login.copy&lt;br /&gt;-rw-r–r– 1 root root 20 2008-07-29 11:43 login&lt;br /&gt;-rw-r–r– 1 root root 20 2008-07-29 11:43 login.copy&lt;/p&gt; &lt;p&gt;Copy Folder&lt;br /&gt;root@hardy:/home/bearisusanto/Documents# cp NEWDIR NEWDIR01&lt;br /&gt;cp: omitting directory `NEWDIR’&lt;/p&gt; &lt;p&gt;Note : Generally, UNIX won’t permit to use the cp command to copy directories&lt;/p&gt; &lt;p&gt;Not as “cp” where leaves the original file intact, making sort of electronic equivalent of a photocopy of a paper, “mv” physically relocates them from the old directory to the new&lt;/p&gt; &lt;p&gt;root@hardy:/home/bearisusanto/Documents# mv login /home/bearisusanto/Documents/TEST&lt;br /&gt;root@hardy:/home/bearisusanto/Documents# mv TEST01 /home/bearisusanto/Documents/TEST&lt;br /&gt;root@hardy:/home/bearisusanto/Documents# cd TEST/&lt;br /&gt;root@hardy:/home/bearisusanto/Documents/TEST# ls&lt;br /&gt;login  TEST01&lt;/p&gt; &lt;p&gt;3. Renaming files with mv&lt;br /&gt;“mv” command, whic, in essence, moves the old name to the new name. It’s a bit confusing, but it works&lt;/p&gt; &lt;p&gt;root@hardy:/home/bearisusanto/Documents/TEST# ls&lt;br /&gt;login  TEST01&lt;br /&gt;root@hardy:/home/bearisusanto/Documents/TEST# mv login test&lt;br /&gt;root@hardy:/home/bearisusanto/Documents/TEST# ls&lt;br /&gt;test  TEST01&lt;br /&gt;root@hardy:/home/bearisusanto/Documents/TEST#&lt;/p&gt; &lt;p&gt;4. Removing directories with rmdir&lt;/p&gt; &lt;p&gt;root@hardy:/home/bearisusanto/Documents/TEST# rmdir TEST01&lt;br /&gt;root@hardy:/home/bearisusanto/Documents/TEST# ls&lt;br /&gt;test&lt;/p&gt; &lt;p&gt;5. Removing Files Using rm&lt;/p&gt; &lt;p&gt;root@hardy:/home/bearisusanto/Documents/TEST# rm test&lt;br /&gt;root@hardy:/home/bearisusanto/Documents/TEST# ls&lt;br /&gt;root@hardy:/home/bearisusanto/Documents/TEST#&lt;/p&gt; &lt;/div&gt;</description><link>http://ubuntunow-linux.blogspot.com/2008/08/creating-moving-renaming-and-deleting.html</link><author>noreply@blogger.com (Bearisusanto)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-505435583211941340.post-8554848463973089197</guid><pubDate>Mon, 18 Aug 2008 13:06:00 +0000</pubDate><atom:updated>2008-08-18T06:08:41.791-07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">cal</category><category domain="http://www.blogger.com/atom/ns#">calendar</category><title>Looking At Calendar</title><description>&lt;p&gt;Another usefull utility in LINUX is the “cal” command, which shows a simple calendar for the month of year specified&lt;span id=&quot;more-33&quot;&gt;&lt;/span&gt;&lt;/p&gt; &lt;p&gt;1. To confirm that 5 october 1993 is Tuesday, enter cal 10 93&lt;br /&gt;root@hardy:/home/bearisusanto# cal 10 93&lt;br /&gt;October 93&lt;br /&gt;Su Mo Tu We Th Fr Sa&lt;br /&gt;1   2   3   4  5&lt;br /&gt;6   7   8   9 10 11 12&lt;br /&gt;13 14 15 16 17 18 19&lt;br /&gt;20 21 22 23 24 25 26&lt;br /&gt;27 28 29 30 31&lt;/p&gt; &lt;p&gt;2. If you look closely, you’ll find that there’s a bit of a problem here. October 5 is shown as a Saturday rather than a Tuesday as expected.&lt;br /&gt;The reason is that “cal” can list any year from A.D.0. In fact, what you have on your screen is how the month of October would have looked in A.D.93,1900.&lt;/p&gt; &lt;p&gt;Note :&lt;br /&gt;This is a bit misleading because Western society uses the Julian calendar, adopted in 1752. Before that, the program should really list Gregorian format monthly calendars, but it can’t, so don’t use this as a historical reference for ascertaining what day of the week the Emperor Hadrian was born&lt;/p&gt; &lt;p&gt;3. To find out the information that you want, you’ll need to specify to the “cal” program both the month and full year:&lt;br /&gt;root@hardy:/home/bearisusanto# cal 10 1993&lt;br /&gt;October 1993&lt;br /&gt;Su Mo Tu We Th Fr Sa&lt;br /&gt;1  2&lt;br /&gt;3   4   5   6   7   8  9&lt;br /&gt;10 11 12 13 14 15 16&lt;br /&gt;17 18 19 20 21 22 23&lt;br /&gt;24 25 26 27 28 29 30&lt;br /&gt;31&lt;/p&gt; &lt;p&gt;This is correct. The 5th of October in 1993 is indeed a Tuesday. On some systems, “cal” has no intelligent default action, so entering “cal” doesn’t simply list the monthly calendar for the current month. Later you’ll learn how to write a simple shell script to do just that. For now, turn to your system and enter “cal” to see what happens.&lt;/p&gt; &lt;p&gt;4. To show full calendar on a year&lt;/p&gt; &lt;p&gt;root@hardy:/home/bearisusanto# cal 2008&lt;br /&gt;2008&lt;/p&gt; &lt;p&gt;January               February               March&lt;br /&gt;Su Mo Tu We Th Fr Sa  Su Mo Tu We Th Fr Sa  Su Mo Tu We Th Fr Sa&lt;br /&gt;1  2  3  4  5                  1  2                     1&lt;br /&gt;6  7  8  9 10 11 12   3  4  5  6  7  8  9   2  3  4  5  6  7  8&lt;br /&gt;13 14 15 16 17 18 19  10 11 12 13 14 15 16   9 10 11 12 13 14 15&lt;br /&gt;20 21 22 23 24 25 26  17 18 19 20 21 22 23  16 17 18 19 20 21 22&lt;br /&gt;27 28 29 30 31        24 25 26 27 28 29     23 24 25 26 27 28 29&lt;br /&gt;30 31&lt;br /&gt;April                  May                   June&lt;br /&gt;Su Mo Tu We Th Fr Sa  Su Mo Tu We Th Fr Sa  Su Mo Tu We Th Fr Sa&lt;br /&gt;1  2  3  4  5               1  2  3   1  2  3  4  5  6  7&lt;br /&gt;6  7  8  9 10 11 12   4  5  6  7  8  9 10   8  9 10 11 12 13 14&lt;br /&gt;13 14 15 16 17 18 19  11 12 13 14 15 16 17  15 16 17 18 19 20 21&lt;br /&gt;20 21 22 23 24 25 26  18 19 20 21 22 23 24  22 23 24 25 26 27 28&lt;br /&gt;27 28 29 30           25 26 27 28 29 30 31  29 30&lt;/p&gt; July                 August              September&lt;br /&gt;Su Mo Tu We Th Fr Sa  Su Mo Tu We Th Fr Sa  Su Mo Tu We Th Fr Sa&lt;br /&gt;1  2  3  4  5                  1  2      1  2  3  4  5  6&lt;br /&gt;6  7  8  9 10 11 12   3  4  5  6  7  8  9   7  8  9 10 11 12 13&lt;br /&gt;13 14 15 16 17 18 19  10 11 12 13 14 15 16  14 15 16 17 18 19 20&lt;br /&gt;20 21 22 23 24 25 26  17 18 19 20 21 22 23  21 22 23 24 25 26 27&lt;br /&gt;27 28 29 30 31        24 25 26 27 28 29 30  28 29 30&lt;br /&gt;31&lt;br /&gt;October               November              December&lt;br /&gt;Su Mo Tu We Th Fr Sa  Su Mo Tu We Th Fr Sa  Su Mo Tu We Th Fr Sa&lt;br /&gt;1  2  3  4                     1      1  2  3  4  5  6&lt;br /&gt;5  6  7  8  9 10 11   2  3  4  5  6  7  8   7  8  9 10 11 12 13&lt;br /&gt;12 13 14 15 16 17 18   9 10 11 12 13 14 15  14 15 16 17 18 19 20&lt;br /&gt;19 20 21 22 23 24 25  16 17 18 19 20 21 22  21 22 23 24 25 26 27&lt;br /&gt;26 27 28 29 30 31     23 24 25 26 27 28 29  28 29 30 31</description><link>http://ubuntunow-linux.blogspot.com/2008/08/looking-at-calendar.html</link><author>noreply@blogger.com (Bearisusanto)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-505435583211941340.post-5170137048416199763</guid><pubDate>Mon, 18 Aug 2008 13:05:00 +0000</pubDate><atom:updated>2008-08-18T06:06:37.465-07:00</atom:updated><title>Add New OS in GRUB</title><description>&lt;div class=&quot;snap_preview&quot;&gt;&lt;p&gt;We assume, we have a machine which alreday installed windows or macintosh. If we have windows and install linux, in OS menu list when we booting, windows already there. But for macintosh, mac not shows in menu list. So to shows mac in menu list we have add it to the menu.lst.&lt;span id=&quot;more-37&quot;&gt;&lt;/span&gt;&lt;/p&gt; &lt;p&gt;As we know, for primary partition we can make only 4 partition, from hd0 - hd3, and for secondary we can make more than 4.&lt;/p&gt; &lt;p&gt;Assume, our mac is in partition 1 (primary) and linux in partition 2 (primary).&lt;/p&gt; &lt;p&gt;Edit menu list from terminal:&lt;br /&gt;root@hardy:/home/bearisusanto# nano /boot/grub/menu.lst&lt;/p&gt; &lt;p&gt;…………configuration already exist&lt;br /&gt;title           Ubuntu 8.04, kernel 2.6.24-16-generic&lt;br /&gt;root            (hd0,1)&lt;br /&gt;kernel          /boot/vmlinuz-2.6.24-16-generic root=UUID=cadd2657-226c-45cc-90$&lt;br /&gt;initrd          /boot/initrd.img-2.6.24-16-generic&lt;br /&gt;quiet&lt;/p&gt; &lt;p&gt;### END DEBIAN AUTOMAGIC KERNELS LIST&lt;br /&gt;…………add in this section for mac OS&lt;/p&gt; &lt;p&gt;title           MAC Leopard&lt;br /&gt;root            (hd0,0)&lt;br /&gt;makeactive&lt;br /&gt;chainloader     +1&lt;/p&gt; &lt;p&gt;Gotcha, when we reboot, the menu will be appear, when we press “esc” button.&lt;/p&gt; &lt;/div&gt;</description><link>http://ubuntunow-linux.blogspot.com/2008/08/add-new-os-in-grub.html</link><author>noreply@blogger.com (Bearisusanto)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-505435583211941340.post-992838696750657923</guid><pubDate>Mon, 18 Aug 2008 13:04:00 +0000</pubDate><atom:updated>2008-08-18T06:05:35.107-07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">system vulnerability</category><category domain="http://www.blogger.com/atom/ns#">Tiger</category><title>TIGER - Report System Security Vulnerability</title><description>&lt;div class=&quot;snap_preview&quot;&gt;&lt;p&gt;TIGER, or the ‘tiger’ scripts, is a set of Bourne shell scripts, C programs and data files which are used to perform a security audit of UNIX systems. TIGER has one primary goal: report ways ‘root’ can be compromised.&lt;br /&gt;Debian’s TIGER incorporates new checks primarily oriented towards Debian distribution including: md5sums checks of installed files, location of files not belonging to packages, check of security advisories and analysis of local listening processes. &lt;span id=&quot;more-40&quot;&gt;&lt;/span&gt;&lt;br /&gt;Install application :&lt;br /&gt;sudo apt-get install tiger&lt;/p&gt; &lt;p&gt;Running tiger from commands :&lt;br /&gt;tiger&lt;/p&gt; &lt;p&gt;Result :&lt;/p&gt; &lt;p&gt;root@hardy:/home/bearisusanto# tiger&lt;br /&gt;Tiger UN*X security checking system&lt;br /&gt;Developed by Texas A&amp;amp;M University, 1994&lt;br /&gt;Updated by the Advanced Research Corporation, 1999-2002&lt;br /&gt;Further updated by Javier Fernandez-Sanguino, 2001-2007&lt;br /&gt;Covered by the GNU General Public License (GPL)&lt;/p&gt; &lt;p&gt;Configuring…&lt;/p&gt; &lt;p&gt;Will try to check using config for ‘i686′ running Linux 2.6.24-16-generic…&lt;br /&gt;–CONFIG– [con005c] Using configuration files for Linux 2.6.24-16-generic. Using&lt;br /&gt;configuration files for generic Linux 2.&lt;br /&gt;Tiger security scripts *** 3.2.2, 2007.08.28.00.00 ***&lt;br /&gt;16:13&gt; Beginning security report for hardy.&lt;br /&gt;16:13&gt; Starting file systems scans in background…&lt;br /&gt;16:13&gt; Checking password files…&lt;br /&gt;16:13&gt; Checking group files…&lt;br /&gt;16:13&gt; Checking user accounts…&lt;br /&gt;16:13&gt; Checking .rhosts files…&lt;br /&gt;16:13&gt; Checking .netrc files…&lt;br /&gt;16:13&gt; Checking ttytab, securetty, and login configuration files…&lt;br /&gt;16:13&gt; Checking PATH settings…&lt;br /&gt;16:13&gt; Checking anonymous ftp setup…&lt;br /&gt;16:13&gt; Checking mail aliases…&lt;br /&gt;16:13&gt; Checking cron entries…&lt;br /&gt;16:13&gt; Checking ’services’ configuration…&lt;br /&gt;16:13&gt; Checking NFS export entries…&lt;br /&gt;16:13&gt; Checking permissions and ownership of system files…&lt;br /&gt;–CONFIG– [con010c] Filesystem ’securityfs’ used by ’securityfs’ is not recognised as a local filesystem&lt;br /&gt;–CONFIG– [con010c] Filesystem ‘fuse.gvfs-fuse-daemon’ used by ‘gvfs-fuse-daemon’ is not recognised as a local filesystem&lt;br /&gt;–CONFIG– [con010c] Filesystem ‘fuse.gvfs-fuse-daemon’ used by ‘gvfs-fuse-daemon’ is not recognised as a local filesystem&lt;br /&gt;16:13&gt; Checking for indications of break-in…&lt;br /&gt;–CONFIG– [con010c] Filesystem ’securityfs’ used by ’securityfs’ is not recognised as a local filesystem&lt;br /&gt;–CONFIG– [con010c] Filesystem ‘fuse.gvfs-fuse-daemon’ used by ‘gvfs-fuse-daemon’ is not recognised as a local filesystem&lt;br /&gt;–CONFIG– [con010c] Filesystem ‘fuse.gvfs-fuse-daemon’ used by ‘gvfs-fuse-daemon’ is not recognised as a local filesystem&lt;br /&gt;16:13&gt; Performing rootkit checks…&lt;br /&gt;16:13&gt; Performing system specific checks…&lt;br /&gt;16:22&gt; Performing root directory checks…&lt;br /&gt;16:22&gt; Checking for secure backup devices…&lt;br /&gt;16:22&gt; Checking for the presence of log files…&lt;br /&gt;16:22&gt; Checking for the setting of user’s umask…&lt;br /&gt;16:22&gt; Checking for listening processes…&lt;br /&gt;16:22&gt; Checking SSHD’s configuration…&lt;br /&gt;16:22&gt; Checking the printers control file…&lt;br /&gt;16:22&gt; Checking ftpusers configuration…&lt;br /&gt;16:22&gt; Checking NTP configuration…&lt;br /&gt;16:22&gt; Waiting for filesystems scans to complete…&lt;br /&gt;16:22&gt; Filesystems scans completed…&lt;br /&gt;16:22&gt; Performing check of embedded pathnames…&lt;br /&gt;16:22&gt; Security report completed for hardy.&lt;br /&gt;Security report is in `/var/log/tiger/security.report.hardy.080730-16:13′.&lt;/p&gt; &lt;p&gt;The log contents :&lt;br /&gt;Security scripts *** 3.2.2, 2007.08.28.00.00 ***&lt;br /&gt;Wed Jul 30 16:13:16 WIT 2008&lt;br /&gt;16:13&gt; Beginning security report for hardy (i686 Linux 2.6.24-16-generic).&lt;/p&gt; &lt;p&gt;# Performing check of passwd files…&lt;br /&gt;# Checking entries from /etc/passwd.&lt;br /&gt;–WARN– [pass014w] Login (backup) is disabled, but has a valid shell.&lt;br /&gt;–WARN– [pass014w] Login (bin) is disabled, but has a valid shell.&lt;br /&gt;–WARN– [pass014w] Login (daemon) is disabled, but has a valid shell.&lt;br /&gt;–WARN– [pass014w] Login (games) is disabled, but has a valid shell.&lt;br /&gt;–WARN– [pass014w] Login (gnats) is disabled, but has a valid shell.&lt;br /&gt;–WARN– [pass014w] Login (irc) is disabled, but has a valid shell.&lt;br /&gt;–WARN– [pass014w] Login (libuuid) is disabled, but has a valid shell.&lt;br /&gt;–WARN– [pass014w] Login (list) is disabled, but has a valid shell.&lt;br /&gt;–WARN– [pass014w] Login (lp) is disabled, but has a valid shell.&lt;br /&gt;–WARN– [pass014w] Login (mail) is disabled, but has a valid shell.&lt;br /&gt;–WARN– [pass014w] Login (man) is disabled, but has a valid shell.&lt;br /&gt;–WARN– [pass014w] Login (news) is disabled, but has a valid shell.&lt;br /&gt;–WARN– [pass014w] Login (nobody) is disabled, but has a valid shell.&lt;br /&gt;–WARN– [pass014w] Login (proxy) is disabled, but has a valid shell.&lt;br /&gt;–WARN– [pass015w] Login ID sync does not have a valid shell (/bin/sync).&lt;br /&gt;–WARN– [pass014w] Login (sys) is disabled, but has a valid shell.&lt;br /&gt;–WARN– [pass014w] Login (uucp) is disabled, but has a valid shell.&lt;br /&gt;–WARN– [pass014w] Login (www-data) is disabled, but has a valid shell.&lt;br /&gt;–WARN– [pass012w] Home directory /nonexistent exists multiple times (2) in&lt;br /&gt;/etc/passwd.&lt;br /&gt;–WARN– [pass006w] Integrity of password files questionable (/usr/sbin/pwck&lt;br /&gt;-r).&lt;/p&gt; &lt;p&gt;# Performing check of group files…&lt;/p&gt; &lt;p&gt;# Performing check of user accounts…&lt;br /&gt;# Checking accounts from /etc/passwd.&lt;br /&gt;–WARN– [acc021w] Login ID avahi-autoipd appears to be a dormant account.&lt;br /&gt;–WARN– [acc006w] Login ID gdm’s home directory (/var/lib/gdm) has group&lt;br /&gt;`gdm’ write access.&lt;br /&gt;–WARN– [acc021w] Login ID libuuid appears to be a dormant account.&lt;br /&gt;–WARN– [acc022w] Login ID nobody home directory (/nonexistent) is not&lt;br /&gt;accessible.&lt;/p&gt; &lt;p&gt;# Performing check of /etc/hosts.equiv and .rhosts files…&lt;br /&gt;….&lt;br /&gt;….&lt;br /&gt;etc&lt;/p&gt; &lt;/div&gt;</description><link>http://ubuntunow-linux.blogspot.com/2008/08/tiger-report-system-security.html</link><author>noreply@blogger.com (Bearisusanto)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-505435583211941340.post-6065458523838252443</guid><pubDate>Mon, 18 Aug 2008 13:03:00 +0000</pubDate><atom:updated>2008-08-18T06:04:07.916-07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">gadget</category><category domain="http://www.blogger.com/atom/ns#">google gadget</category><title>Google Gadgets</title><description>&lt;div class=&quot;snap_preview&quot;&gt;&lt;p&gt;Google gadgets is a platform for showing many desktop gadget type in linux. This aplication compatible with many gadget which write for google desktop for windows.&lt;/p&gt; &lt;p&gt;This application could be downloaded at http://code.google.com/p/google-gadgets-for-linux&lt;/p&gt; &lt;p&gt;File dependencies could be install from ubuntu main server:&lt;br /&gt;sudo apt-get install libdbus-1-dev libmozjs-dev libxul0d libnspr4-dev libmozjs0d&lt;/p&gt; &lt;/div&gt;</description><link>http://ubuntunow-linux.blogspot.com/2008/08/google-gadgets.html</link><author>noreply@blogger.com (Bearisusanto)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-505435583211941340.post-7072337908309304759</guid><pubDate>Mon, 18 Aug 2008 13:01:00 +0000</pubDate><atom:updated>2008-08-18T06:02:52.239-07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">explorer</category><category domain="http://www.blogger.com/atom/ns#">XFE</category><title>XFE - Windows Explorer Like</title><description>&lt;div class=&quot;snap_preview&quot;&gt;&lt;p&gt;Using nautilus for managing or exploring files in hardisk, its commonly use when we use gnome.&lt;/p&gt; &lt;p&gt;Usual use windows explorer when using windows? Linux could too like windows, use xfe for bringing windows explorer in linux environment.&lt;span id=&quot;more-57&quot;&gt;&lt;/span&gt;For using this software, you could downloaded it from http://roland65.free.fr. but this file depend on library FOX, so you have to download libfox.&lt;/p&gt; &lt;p&gt;After download installed it from terminal :&lt;br /&gt;sudo dpkg -i xfe&lt;br /&gt;sudo dpkg -i libfox&lt;/p&gt; &lt;p&gt;Gotcha, now you could manage and browsing file like you browse in windows using windows explorer&lt;/p&gt; &lt;/div&gt;</description><link>http://ubuntunow-linux.blogspot.com/2008/08/xfe-windows-explorer-like.html</link><author>noreply@blogger.com (Bearisusanto)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-505435583211941340.post-5714227542844816694</guid><pubDate>Mon, 18 Aug 2008 12:59:00 +0000</pubDate><atom:updated>2008-08-18T06:00:54.788-07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">sysinfo</category><category domain="http://www.blogger.com/atom/ns#">system information</category><title>System Information Use Sysinfo</title><description>&lt;div class=&quot;snap_preview&quot;&gt;&lt;p&gt;Sysinfo is a GTK2 based program which can display the following computer/system information:&lt;/p&gt; &lt;p&gt;- General information: Kernel version, Distribution release,Hostname/domainname, some important    software versions.&lt;br /&gt;- CPU information: Name/vendor, Frequency, L2 Cache, model/family/stepping.&lt;br /&gt;- Memory information: Total, Free, Cached, Active/inactive, Swap.&lt;br /&gt;- IDE information: Disks CD/DVD-roms, Model, Capacity, Cache.&lt;br /&gt;- Filesystem information: Filesystem disk space usage(mounted partitions).&lt;br /&gt;- Hardware information: Motherboard chipset, IDE interface, VGA contoller,&lt;br /&gt;Multimedia controllers(sound cards), Ethernet cards.&lt;br /&gt;- &lt;span style=&quot;position: static; text-decoration: underline;&quot;&gt;&lt;span style=&quot;font-weight: 400; font-size: 10.95px; position: static; color: rgb(204, 153, 51);&quot;&gt;&lt;span class=&quot;kLink&quot; style=&quot;border-bottom: 1px solid rgb(204, 153, 51); font-weight: 400; font-size: 10.95px; position: static; background-color: transparent; font-family: Verdana,Tahoma,Arial,sans-serif; color: rgb(204, 153, 51);&quot;&gt;USB&lt;/span&gt;&lt;/span&gt;&lt;/span&gt; information: USB controllers.&lt;br /&gt;- NVIDIA information: Graphic card model, AGP rate, Fast writes/SBA, Driver&lt;br /&gt;version. (accelerated linux &lt;span style=&quot;position: static; text-decoration: underline;&quot;&gt;&lt;span style=&quot;font-weight: 400; font-size: 10.95px; position: static; color: rgb(204, 153, 51);&quot;&gt;&lt;span class=&quot;kLink&quot; style=&quot;border-bottom: 1px solid rgb(204, 153, 51); font-weight: 400; font-size: 10.95px; position: static; background-color: transparent; font-family: Verdana,Tahoma,Arial,sans-serif; color: rgb(204, 153, 51);&quot;&gt;driver &lt;/span&gt;&lt;span class=&quot;kLink&quot; style=&quot;border-bottom: 1px solid rgb(204, 153, 51); font-weight: 400; font-size: 10.95px; position: static; background-color: transparent; font-family: Verdana,Tahoma,Arial,sans-serif; color: rgb(204, 153, 51);&quot;&gt;needed&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;)&lt;br /&gt;- Other information: Sound card details, Input devices, Screen resolution.&lt;span id=&quot;more-59&quot;&gt;&lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;strong&gt;Install sysinfo in Ubuntu&lt;/strong&gt;&lt;/p&gt; &lt;p&gt;Install sysinfo using the following command&lt;/p&gt; &lt;p&gt;sudo aptitude install sysinfo&lt;/p&gt; &lt;p&gt;This will complete the installation.&lt;/p&gt; &lt;p&gt;&lt;strong&gt;Using Sysinfo&lt;/strong&gt;&lt;/p&gt; &lt;p&gt;If yo want to open go to Applications—&gt;&lt;span style=&quot;position: static; text-decoration: underline;&quot;&gt;&lt;span style=&quot;font-weight: 400; font-size: 10.95px; position: static; color: rgb(204, 153, 51);&quot;&gt;&lt;span class=&quot;kLink&quot; style=&quot;font-weight: 400; font-size: 10.95px; position: static; font-family: Verdana,Tahoma,Arial,sans-serif; color: rgb(204, 153, 51);&quot;&gt;System&lt;/span&gt;&lt;/span&gt;&lt;/span&gt; Tools—&gt;Sysinfo&lt;/p&gt; &lt;p&gt;Thanks for ubuntu geek&lt;/p&gt; &lt;/div&gt;</description><link>http://ubuntunow-linux.blogspot.com/2008/08/system-information-use-sysinfo.html</link><author>noreply@blogger.com (Bearisusanto)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-505435583211941340.post-855573031998396530</guid><pubDate>Mon, 18 Aug 2008 12:57:00 +0000</pubDate><atom:updated>2008-08-18T05:59:02.809-07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">download accelerator</category><category domain="http://www.blogger.com/atom/ns#">wxDownload Fast</category><title>wxDownload Fast</title><description>&lt;div class=&quot;snap_preview&quot;&gt;&lt;p&gt;Download is important things when we surve the web. Download small file is easy, but if we want download big file which need oe, two hours or more than one day. Its difficult to do if we use slow internet connection whic always have broken connection.&lt;/p&gt; &lt;p&gt;But its more easy now with wxDownload Fast, wxDownload Fast (also known as wxDFast) is an open source download manager. It is multi-platform and builds on Windows(2k,XP), Linux and Mac OS X(binary still not available). Besides that, it is a multi-threaded download manager. This means that it can split a file into several pieces and download the pieces simultaneously.&lt;/p&gt; &lt;p&gt;Created in C++ using the &lt;a href=&quot;http://www.wxwidgets.org/&quot;&gt;wxWidgets(wxWindows)&lt;/a&gt; library.&lt;span id=&quot;more-63&quot;&gt;&lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;strong&gt;Features&lt;/strong&gt;&lt;/p&gt; &lt;ul&gt;&lt;li&gt;Faster downloads (with Segmented/Multi-threaded/Accelerated transfers)&lt;/li&gt;&lt;li&gt;Download resuming (Pause and restart where you stopped)&lt;/li&gt;&lt;li&gt;Download scheduling&lt;/li&gt;&lt;li&gt;Organizes files you have already downloaded&lt;/li&gt;&lt;li&gt;View server messages (HTTP, FTP, file://). No HTTPS support.&lt;/li&gt;&lt;li&gt;Available in multiple languages and easily translated. Now available in Portuguese [Brazil], Spanish, English, German, Russian, Hungarian, Armenian, Indonesian and Dutch&lt;/li&gt;&lt;li&gt;Connection to HTTP/FTP servers which require a password&lt;/li&gt;&lt;li&gt;Calculates the MD5/SHA1 checksum of downloaded files so they can be easily verified&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;http://www.metalinker.org/&quot;&gt;Metalink&lt;/a&gt; support&lt;/li&gt;&lt;li&gt;Firefox integration through &lt;a href=&quot;http://flashgot.net/&quot;&gt;FlashGot&lt;/a&gt;&lt;/li&gt;&lt;li&gt;Can be used as a &lt;a href=&quot;http://dfast.sourceforge.net/faq.html#faq06&quot;&gt;portable&lt;/a&gt; download manager (Windows only)&lt;/li&gt;&lt;li&gt;Can be used over proxy servers(HTTP proxy support)&lt;/li&gt;&lt;/ul&gt; &lt;p&gt;All this Ubuntu packages are available in &lt;a href=&quot;http://www.getdeb.net/app.php?name=wxdownload%20fast&quot;&gt;http://www.getdeb.net/&lt;/a&gt;&lt;/p&gt; &lt;/div&gt;</description><link>http://ubuntunow-linux.blogspot.com/2008/08/wxdownload-fast.html</link><author>noreply@blogger.com (Bearisusanto)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-505435583211941340.post-5132841261936839058</guid><pubDate>Mon, 18 Aug 2008 12:54:00 +0000</pubDate><atom:updated>2008-08-18T05:56:53.394-07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">msi wind</category><category domain="http://www.blogger.com/atom/ns#">ubuntu 8.04.1</category><title>Install Ubuntu 8.04 On MSI Wind Notebook</title><description>&lt;p&gt;I have MSI Wind notebook, I try to install ubuntu on it, but alway hang at installation. After googling, i find the answer from http://wiki.msiwind.net/index.php/Ubuntu_8.04_Hardy_Heron&lt;/p&gt; &lt;p&gt;Thanks a lot for your tutorial&lt;/p&gt; &lt;p&gt;Installation Procedure:&lt;span id=&quot;more-68&quot;&gt;&lt;/span&gt;&lt;/p&gt; &lt;h3&gt;&lt;span class=&quot;mw-headline&quot;&gt;Option 1: Install with Wubi Ubuntu Installer&lt;/span&gt;&lt;/h3&gt; &lt;p&gt;The easiest installation option for Windows versions of the Wind/Advent 4211 is to use the &lt;span class=&quot;external text&quot;&gt;Wubi Ubuntu installer&lt;/span&gt; directly from Windows. This will allow you to try out Ubuntu without partitioning your hard drive. &lt;a class=&quot;external text&quot; title=&quot;http://www.howtoforge.com/wubi_ubuntu_on_windows&quot; rel=&quot;nofollow&quot; href=&quot;http://www.howtoforge.com/wubi_ubuntu_on_windows&quot;&gt;HowtoForge.com&lt;/a&gt; has written a detailed tutorial for using Wubi.&lt;/p&gt; &lt;p&gt;To then upgrade your Wubi install to a standard Ubuntu system, use the &lt;a class=&quot;external text&quot; title=&quot;http://lubi.sourceforge.net/lvpm.html&quot; rel=&quot;nofollow&quot; href=&quot;http://lubi.sourceforge.net/lvpm.html&quot;&gt;Loopmounted Virtual Partition Manager (LVPM)&lt;/a&gt;. LVPM allows you to transfer all the data, settings, and applications from your original Wubi install to a dedicated partition. LVPM can be found in Ubuntu under: Applications =&gt; System Tools&lt;/p&gt; &lt;p&gt;If, after using LVPM, you get a can’t mount partition error, then you will need to edit grub. The LPVM installation has worked, grub just needs to be set to use the correct partiion.&lt;/p&gt; &lt;p&gt;Firstly, to fix grub temporarily so you can get into Ubuntu: Reboot the machine, wait till the menu comes up giving you the list of boot options, make sure the top item is selected, (Ubuntu 8.04.1, kernel 2.6.24-19-generic) then hit e to edit the item.&lt;/p&gt; &lt;p&gt;This will give you an edit screen and stop the boot countdown.&lt;/p&gt; &lt;p&gt;There should be three lines on the screen.   Scroll down to the line that says:&lt;/p&gt; &lt;p&gt;root ()/ubuntu/disks&lt;/p&gt; &lt;p&gt;and change it to:&lt;/p&gt; &lt;p&gt;root (hd0,&lt;strong&gt;X&lt;/strong&gt;)&lt;/p&gt; &lt;p&gt;&lt;strong&gt;X&lt;/strong&gt; should be the partition number you transferred Ubuntu to using LVPM minus 1.&lt;/p&gt; &lt;p&gt;e.g.  In my case I transferred Ubuntu to sda5, so my line read root (hd0,4)&lt;/p&gt; &lt;p&gt;Once this line is edited, hit Enter to accept the editing, then b to boot.&lt;/p&gt; &lt;p&gt;Ubuntu should now boot up. You can make the changes permanent to fix your boot forever, by making the same changes in /boot/grub/menu.lst&lt;/p&gt; &lt;p&gt;&lt;a name=&quot;_Install_With_Ubuntu_8.04.1_Desktop_CD_.28GUI.29&quot;&gt;&lt;/a&gt;&lt;/p&gt; &lt;h3&gt;&lt;span class=&quot;mw-headline&quot;&gt;Option 2: Install With Ubuntu 8.04.1 Desktop CD (GUI)&lt;/span&gt;&lt;/h3&gt; &lt;p&gt;A second installation option is to use an Ubuntu installation CD (or USB Pen Drive).&lt;/p&gt; &lt;p&gt;&lt;strong&gt;Note:&lt;/strong&gt; With the release of Ubuntu Hardy Heron 8.04.1, it appears that earlier problems installing with the Ubuntu GUI installer have been resolved. If, however, you would prefer to install Ubuntu using a text interface installer, use the “Install with Alternate Desktop CD” instructions in the next section below.&lt;/p&gt; &lt;ol&gt;&lt;li&gt;Download Hardy Heron 8.04.1 (PC (Intelx86) desktop CD) from here: &lt;a class=&quot;external free&quot; title=&quot;http://releases.ubuntu.com/8.04.1/&quot; rel=&quot;nofollow&quot; href=&quot;http://releases.ubuntu.com/8.04.1/&quot;&gt;http://releases.ubuntu.com/8.04.1/&lt;/a&gt; (Tested and confirmed to work by Malarcy in &lt;a class=&quot;external text&quot; title=&quot;http://forums.msiwind.net/default-msiwind/ubuntu-guide-for-wind-t768.html&quot; rel=&quot;nofollow&quot; href=&quot;http://forums.msiwind.net/default-msiwind/ubuntu-guide-for-wind-t768.html&quot;&gt;this forum thread&lt;/a&gt;).&lt;/li&gt;&lt;li&gt; Burn the “ubuntu-8.04.1-desktop-i386.iso” image to a CD.&lt;/li&gt;&lt;li&gt;&lt;strong&gt;Optional:&lt;/strong&gt; You can install Ubuntu on the Wind/Advent 4211 using a USB Pen Drive. To create a bootable live USB Pen Drive, use &lt;a class=&quot;external text&quot; title=&quot;http://unetbootin.sourceforge.net/&quot; rel=&quot;nofollow&quot; href=&quot;http://unetbootin.sourceforge.net/&quot;&gt;UNetbootin - The Universal Netbbot Installer&lt;/a&gt; OR follow the instructions for creating a Persistent Ubuntu 8.04 USB Pen Drive at &lt;a class=&quot;external text&quot; title=&quot;http://www.pendrivelinux.com/2008/05/08/usb-ubuntu-804-persistent-install-via-the-live-cd&quot; rel=&quot;nofollow&quot; href=&quot;http://www.pendrivelinux.com/2008/05/08/usb-ubuntu-804-persistent-install-via-the-live-cd&quot;&gt;PenDriveLinux.com&lt;/a&gt;.&lt;/li&gt;&lt;li&gt; Boot system with F11 pressed and the install media (External USB CD-ROM or USB Pen Drive) connected. When prompted, select the drive containing your Ubuntu 8.04.1 .iso image.&lt;/li&gt;&lt;li&gt; Click on the “Install” icon on the Live Desktop.&lt;/li&gt;&lt;li&gt;&lt;strong&gt;Optional - Manually Partition Hard Drive:&lt;/strong&gt; While allowing the Ubuntu Installer to automatically partition your hard drive during installation is acceptable, it can be beneficial to manually edit your partition table. Before getting started, it is recommended that you first review each of the 9 steps below. For additional information about partitioning your hard drive, you may also want to reference &lt;a class=&quot;external text&quot; title=&quot;http://www.psychocats.net/ubuntu/partitioning&quot; rel=&quot;nofollow&quot; href=&quot;http://www.psychocats.net/ubuntu/partitioning&quot;&gt;this guide&lt;/a&gt;. &lt;ol&gt;&lt;li&gt;During installation, choose “Manually edit partition table.”&lt;/li&gt;&lt;li&gt;Select the partition you want to resize and press Enter.&lt;/li&gt;&lt;li&gt;Select “Size” and press Enter.&lt;/li&gt;&lt;li&gt;Select “Yes” and press Enter.&lt;/li&gt;&lt;li&gt;Type a new size in Gigabytes for your partition. On the Wind/Advent 4211, it’s recommended you free up AT LEAST 15 GB of free space for your Ubuntu install (see number 8 below for more info/suggestions on partition sizing). Press Enter when happy with your changes. It may take some time to apply the changes.&lt;/li&gt;&lt;li&gt;Create a “swap” partition. It should be 1-2 times the amount of RAM you have (1000-2000MB). Swap helps with memory management and multi-tasking–you can read more about swap partitions (also called “Paging”) &lt;a class=&quot;external text&quot; title=&quot;http://en.wikipedia.org/wiki/Swap_partition#Swapping_in_the_Linux_and_BSD_operating_systems&quot; rel=&quot;nofollow&quot; href=&quot;http://en.wikipedia.org/wiki/Swap_partition#Swapping_in_the_Linux_and_BSD_operating_systems&quot;&gt;here&lt;/a&gt;.&lt;/li&gt;&lt;li&gt;Create a root “/” partition (Ext3) for your Ubuntu installation (5-10GB). This will be where the Ubuntu OS and applications live.&lt;/li&gt;&lt;li&gt;Create a “/home” partition (Ext3) for your user files (this should be at least 5-10GB though you could opt to make it bigger–keep reading for more info). Creating a “/home” partition will allow you to reinstall Ubuntu and/or do a clean install (instead of an upgrade) when a new version of Ubuntu comes along. One option when sizing this partition is to make “/home” serve as a shared partition between Ubuntu and Windows. To later read and write to this Ext3 partition from Windows, simply install &lt;a class=&quot;external text&quot; title=&quot;http://www.fs-driver.org/&quot; rel=&quot;nofollow&quot; href=&quot;http://www.fs-driver.org/&quot;&gt;Ext2 Installable File System for Windows&lt;/a&gt;.&lt;/li&gt;&lt;li&gt;Select “Finish partitioning and write changes to disk”.&lt;/li&gt;&lt;/ol&gt; &lt;/li&gt;&lt;/ol&gt; &lt;p&gt;&lt;strong&gt;Note:&lt;/strong&gt; If you opted to install Ubuntu with a USB Pen Drive, afterwards you will need to edit /etc/fstab and make sure that /media/cdrom0 points to the CD drive and not to the USB stick.&lt;/p&gt; &lt;p&gt;Open /etc/fstab for editing:&lt;/p&gt; &lt;pre&gt;sudo gedit /etc/fstab&lt;/pre&gt; &lt;p&gt;Find a line like this (usually the last line): /dev/sdXX /media/cdrom0 udf,iso9660 user,noauto,exec,utf8 0 0&lt;/p&gt; &lt;p&gt;and comment it out by placing a # at the beginning (or simply delete it).&lt;/p&gt;</description><link>http://ubuntunow-linux.blogspot.com/2008/08/install-ubuntu-804-on-msi-wind-notebook.html</link><author>noreply@blogger.com (Bearisusanto)</author><thr:total>1</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-505435583211941340.post-3608753109907738628</guid><pubDate>Mon, 18 Aug 2008 12:47:00 +0000</pubDate><atom:updated>2008-08-18T05:53:31.823-07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">hdparam</category><title>Optimized hardisk with hdparam</title><description>&lt;p&gt;From : http://ubuntuforums.org/archive/index.php/t-16360.html&lt;/p&gt; &lt;p&gt;let’s say that you open up a Root Terminal and issue the hdparm command:&lt;/p&gt; &lt;p&gt;hdparm -h&lt;/p&gt; &lt;p&gt;You should see a list of commands that you can issue.&lt;/p&gt; &lt;p&gt;The first two commands that you want to look at are&lt;/p&gt; &lt;p&gt;hdparm -i /dev/hda&lt;br /&gt;hdparm -I /dev/hda&lt;br /&gt;hdparm -i /dev/hda1&lt;br /&gt;hdparm -I /dev/hda1&lt;/p&gt; &lt;p&gt;&lt;span id=&quot;more-71&quot;&gt;&lt;/span&gt;&lt;br /&gt;Now let’s day that your dma is set to off and you wish to set it to on. Then you’d hdparm -d1 /dev/hda&lt;br /&gt;But if you wish to make it so that that setting is set during bootup, you know that we will have to gedit /etc/hdparm.conf.&lt;/p&gt; &lt;p&gt;So, open up a Root Terminal, cd over to /etc and sudo gedit hdparm.conf&lt;br /&gt;Go to the end of the file and highlight &amp;amp; copy&lt;/p&gt; &lt;p&gt;#/dev/hda {&lt;br /&gt;# mult_sect_io = 16&lt;br /&gt;# write_cache = off&lt;br /&gt;# dma = on&lt;br /&gt;#}&lt;/p&gt; &lt;p&gt;Now right click / paste it at the very end of the file (after starting a new line after hitting carriage return).&lt;/p&gt; &lt;p&gt;Now remove the # from the front of all those new lines you’ve copied from the end of YOUR file.&lt;/p&gt; &lt;p&gt;This is where you’ll be making all your changes.&lt;/p&gt; &lt;p&gt;You would first make sure that your setting a command in the Root Terminal will work.&lt;/p&gt; &lt;p&gt;So let’s say that when I did a hdparm /dev/hda command I got back&lt;/p&gt; &lt;p&gt;/dev/hda:&lt;br /&gt;multcount    =  0 (off)&lt;br /&gt;IO_support   =  0 (default 16-bit)&lt;br /&gt;unmaskirq    =  0 (off)&lt;br /&gt;using_dma    =  0 (off)&lt;br /&gt;keepsettings =  0 (off)&lt;br /&gt;readonly     =  0 (off)&lt;br /&gt;readahead    = 256 (on)&lt;br /&gt;geometry     = 58168/16/63, sectors = 58633344, start = 0&lt;/p&gt; &lt;p&gt;So I give this command hdparm -d1 -m1 /dev/hda&lt;br /&gt;Now when I hdparm /dev/hda I get&lt;/p&gt; &lt;p&gt;/dev/hda:&lt;br /&gt;setting multcount to 1&lt;br /&gt;multcount    =  1 (on)&lt;br /&gt;setting dma to 1&lt;br /&gt;dma = 1 (on)&lt;/p&gt; &lt;p&gt;So I would now modify my hdparm.conf to read&lt;/p&gt; &lt;p&gt;/dev/hda {&lt;br /&gt;mult_sect_io = 32&lt;br /&gt;dma = on&lt;br /&gt;}&lt;/p&gt; &lt;p&gt;save it and reboot.&lt;/p&gt; &lt;p&gt;Please note that these are commands in a mock up. In no way do I endorse your putting in mult_sect_io = 32 if your HD cannot support it. The same would go for all the other commands.&lt;/p&gt; &lt;p&gt;Since all you want to do is set DMA, you’d&lt;/p&gt; &lt;p&gt;/dev/hda {&lt;br /&gt;dma = on&lt;br /&gt;}&lt;/p&gt; &lt;p&gt;&lt;save,&gt;&lt;/p&gt; &lt;p&gt;But before rebooting I would hdparm /dev/hda. This is what it looks like now (after issuing an hdparm -c1 -d1 -m1 /dev/hda command:&lt;/p&gt; &lt;p&gt;/dev/hda:&lt;br /&gt;multcount    =  1 (on)&lt;br /&gt;IO_support   =  1 (32-bit)&lt;br /&gt;unmaskirq    =  0 (off)&lt;br /&gt;using_dma    =  1 (on)&lt;br /&gt;keepsettings =  0 (off)&lt;br /&gt;readonly     =  0 (off)&lt;br /&gt;readahead    = 256 (on)&lt;br /&gt;geometry     = 58168/16/63, sectors = 58633344, start = 0&lt;/p&gt; &lt;p&gt;You should see some new messages regarding hdparm when it is booting up.&lt;/p&gt; &lt;p&gt;Just be careful when playing around with the ATA settings. The numbers don’t quite go the way you’d expect.&lt;/p&gt; &lt;p&gt;Now, you’ll want to test all your settings before ever touching /etc/hdparm.conf.&lt;br /&gt;The commands to do that are:&lt;/p&gt; &lt;p&gt;hdparm -t /dev/hda&lt;br /&gt;hdparm -T /dev/hda&lt;/p&gt; &lt;p&gt;But just testing /dev/hda is really testing just the channel and not the drive itself.&lt;/p&gt; &lt;p&gt;So you should really be saying&lt;/p&gt; &lt;p&gt;hdparm -t /dev/hda1&lt;br /&gt;hdparm -T /dev/hda1&lt;/p&gt; &lt;p&gt;for example.&lt;/p&gt; &lt;p&gt;(I think this may work. I’ve never had to use it to set individual drive settings. And I doubt that you could turn on DMA for just one drive on a chain as the DMA setting affects the controller which will in turn affect each individual drive. But it may give you different test results when testing a drive; at least it did me.)&lt;/p&gt; &lt;p&gt;/dev/hda1 {&lt;br /&gt;dma = on&lt;br /&gt;}&lt;/p&gt; &lt;p&gt;So my advice is:&lt;/p&gt; &lt;p&gt;Issue a ’set’ command in a Root Terminal.&lt;br /&gt;Run a -i, -I, -t and -T test.&lt;br /&gt;Only then commit the changes to /etc/hdparm.conf and reboot.&lt;/p&gt; &lt;p&gt;As always, it is best if you make a backup of all your precious data onto a CDR before making radical changes. And always have your Ubuntu Live CD at the ready.&lt;/p&gt; &lt;p&gt;From /etc/hdparm.conf:&lt;br /&gt;Note that if the init script causes boot problems, you can pass ‘nohdparm’ on the kernel command line, and the script will not be run.&lt;/p&gt;</description><link>http://ubuntunow-linux.blogspot.com/2008/08/optimized-hardisk-with-hdparam.html</link><author>noreply@blogger.com (Bearisusanto)</author><thr:total>0</thr:total></item></channel></rss>