Category: How to... — UbuntuLinuxHelp @ 10:39 am —

IPV6 is an Internet protocol. Currently most applications use IPV4 and this can cause conflicts which slow down your system.
Complete the following to disable it.

 

sudo gedit /etc/modprobe.d/bad_list

and type this in:

alias net-pf-10 off

Then save the file.

Creative Commons License
This work by James House is licensed under a Creative Commons Attribution-Share Alike 3.0 United States License.

1 person has left a comment

#1

Another issue to improve speed it to change the Ubuntu journaling system to data=writeback system.

* Open your Grub boot menu.

sudo nano -w /boot/grub/menu.lst

* Look for the Defoptions and Altoptions and make them look like the entry below.

# defoptions=quiet splash rootflags=data=writeback
# altoptions=(recovery mode) single rootflags=data=writeback

* You need to update your Grub since you have altered it.

sudo update-grub

* Now we are going to edit the Fstab because it will be expecting these options.

sudo nano -w /etc/fstab

* Now you are going to want to add the (data=writeback and noatime=0) flags to your hard drive. It might be a little confusing because of the new naming system. Look for the (,errors=remount-ro) and add it afterwards to make it look like our example.

defaults,errors=remount-ro,data=writeback,noatime 0

* Now you tell your system to use them both.

sudo tune2fs -o journal_data_writeback /dev/yourdrive

Bruce wrote on July 26, 2007 - 10:42 pm
You can leave a response, or trackback from your own site.

Write Your Comment

Comment Guidelines: Basic XHTML is allowed (a href, strong, em, code). All line breaks and paragraphs will be generated automatically.

You should have a name, right? 
Your email address, I promised I won't tell it to anyone. 
If you have a web site or blog, you can type the URL right here. 
This is where you type your comments. 
Remember my information for the next time I visit.