Archive for Linux

Nautilus 3.6 is inane

I haven’t posted here for a while. Usually because my google searches turn up the answers pretty quickly, so I don’t feel the need to add anything additional via this blog.

Nautilus 3.6 on 13.04 is inane! They have gotten rid of drop down menus as far as I can tell.

While trying to figure out how to connect to a file share via the file explorer – a completely reasonable and supposedly simple task – I discovered that it was no longer easily possible on the 13.04 file explorer. I lot of hunting and I finally discovered a post that gave me the magic keyboard combination in order to open a file location dialog: CTRL-L.

Once I had this is was relatively easily to connect to the remote server I wanted. After that right-click add bookmark is your friend.

It’s really stupid when the backend can still do things, but the power of the front end is reduced.

Edit: Sigh… It is worse that I thought. Dropping tree view is a particularly egregious crime.

Comments off

kvm disk performance with different backends

Here  some results from testing I did in August 2009 on  KVM with the three different disk image drivers. First a single disk system running Ubuntu x64 9.04:

Read the rest of this entry »

Comments off

Sun and IBM

I haven’t seen much yet to confirm this deal, but if it does happen next week it mark an interesting change in course.  The thing that would interest me greatly would be zfs on linux – with Sun owned by IBM and their investment in Linux it might lead to a reconcilation between Sun and Linux licenses.  While Solaris has come a long way in the last couple years, but the only reason why I use solaris is zfs.  Linux is still a much more flexible, effective and deployable solution. 

 

Reblog this post [with Zemanta]

Comments off

Install Ubuntu via USB

The device pictured is a 16GB SanDisk CruzerUS...
Image via Wikipedia

I tried several methods last night including Unetbootin, and this is the one that worked best.

Basically copy the ISO on the USB root directory, add vmlinuz and initrd.gz from main/installer-i386/current/images/hd-media/. Then add syslinux.cfg with:

default vmlinuz
append initrd=initrd.gz

If you have boot problems you might also need to run install-mbr /dev/sda from the mbr package.

Reblog this post [with Zemanta]

Comments (1)

Ubuntu and djbdns

I keep smacking into this issue. So a couple notes to myself for future reference.

Before install touch /etc/inittab and afterwards add this to /etc/event.d/svscan:

start on runlevel 3
start on runlevel 4
start on runlevel 5

stop on runlevel 0
stop on runlevel 1
stop on runlevel 6

respawn
exec /usr/bin/svscanboot

Comments off

Lanuchy

Lanuchy is a quicksilver-like key stroke application lanucher for linux and windows. Very cool.

Comments off

Bind – Shared subtrees

Shared subtrees – in depth look at bind mounts.

Comments off

Windows client CIFS behavior can slow Linux NAS performance

Windows* client CIFS behavior can slow Linux* NAS performance:-

We have compared the performance of Windows* and Linux*-based CIFS* (Samba*) servers for digital media applications and found that the ext3*-based Linux server’s throughput was up to 53% lower than the Windows server’s–although both used identical hardware (Figure 1). An XFS*-based Linux server had roughly the same performance as the Windows server. Our investigation shows that the difference lies in the filesystem allocation and handling of sparse files. In particular, the Windows client makes an assumption that the CIFS fileserver uses NTFS*, a filesystem that assumes files will be data-full (not sparse). This contradicts a fundamental assumption of ext3–that files are sparse–and leads to fragmentation of files and degraded performance on ext3. Further, we’ve seen this behavior manifested for a broad range of media applications including iTunes*.

Reblog this post [with Zemanta]

Comments off

Load average and Vmware Server Hang Fix

Couple useful articles from Andy Millar.

  • Concise and clear explaination of linux load averages.
  • Bug fix suggestion for VMware server which can hang on installation. Remove the floppy device. I’ve got another issue where a linux vm on vmware server hangs on startup and I’ll have to try this.

Comments (1)

Source routing for a VPN node in Linux

Occansion in Linux when running a VPN you want to generate traffic from the VPN server node. By default Linux uses the IP of the interface used to route a package. The might often complicated the routing tables required at client networks.

A solution to fix this issue is to use Linux source/policy routing. For example, for node with IP 192.168.10.1 and VPN server IP 172.29.148.1, route to subnet 192.168.9.0/24 out 172.29.148.1 via 172.29.148.2 with src (source) IP 192.168.10.1:


sudo ip route add to 192.168.9.0/24 src 192.168.10.1 via 172.29.148.2

Comments (3)