Quick Review: Boxee Box
December 27, 2011 – 12:22 am | 3 Comments

Some of the technical issues with Boxee Box could have been fixed if the dev team was paying more attention to addressing the bugs rather than adding “features” of dubious value. In the final analysis, for the price and ease of use, Boxee Box is the best in its class and price range. You just need to be mindful of its limitations and buy it in hope of future improvements to its usability.

Read the full story »
Networking

Unix and Linux network configuration. Multiple network interfaces. Bridged NICs. High-availability network configurations.

Applications

Reviews of latest Unix and Linux software. Helpful tips for application support admins. Automating application support.

Data

Disk partitioning, filesystems, directories, and files. Volume management, logical volumes, HA filesystems. Backups and disaster recovery.

Monitoring

Distributed server monitoring. Server performance and capacity planning. Monitoring applications, network status and user activity.

Commands & Shells

Cool Unix shell commands and options. Command-line tools and application. Things every Unix sysadmin needs to know.

Home » Archive by Category

Articles in Filesystems

NFS “Not Owner” Error
August 30, 2010 – 11:34 pm | One Comment
NFS “Not Owner” Error

The “not owner” error is displayed on the client system (usually Solaris) when attempting to mount an NFS share from a server. This error may appear even though the share is correctly exported and the client system has full access. If you are getting a “permission denied” error, then this article is not for you and you should check here instead.

Forcing Linux to Reboot
January 29, 2010 – 3:21 pm | One Comment
Forcing Linux to Reboot

Until I branched out a few years ago from supporting Unix server to working with Linux clusters, I never really encountered this issue: you type “reboot”, “init 0″, or “shutdown” as root and… nothing happens. Or the system starts going down but then hangs on unmounting a filesystem or unloading a module. I think this happened once to a colleague of mine who was rebooting a Solaris server, but this is a common problem with Linux.

Testing Filesystem Performance with Bonnie++
July 10, 2009 – 4:33 pm | 3 Comments
Testing Filesystem Performance with Bonnie++

Bonnie++ is a benchmark utility designed to test performance of hard drives and filesystems by simulating various types of disk I/O. Bonnie++ may be used to test local disks as well as network-mounted filesystems. It …

Dealing with ReiserFS bad blocks
March 24, 2008 – 6:42 pm | No Comment
Dealing with ReiserFS bad blocks

The following is a procedure for recovering a ReiserFS filesystem with bad blocks. If this is a system FS and cannot be unmounted, the box needs to be booted from the latest version of Knoppix …

Mountpoint permission problem in Solaris
May 4, 2006 – 6:45 pm | No Comment
Mountpoint permission problem in Solaris

The following condition was originally discovered in OpenSolaris 11 (Bug ID: 4697677). This problem occurs when you do mkdir -m 700 on a mountpoint before mounting it. This superceeds whatever permissions you might give …

Creating large AIX JFS filesystems
April 21, 2006 – 12:01 pm | No Comment
Creating large AIX JFS filesystems

A quick note on creating large JFS filesystems on AIX: if the filesystem is 64Gb or might be expanded to over 64Gb any time in the future, make sure the NBPI (Number of Bytes Per …

Monitoring Veritas VM problems on Solaris
April 20, 2006 – 4:41 pm | No Comment
Monitoring Veritas VM problems on Solaris

Several Veritas VM and system logs can be used to monitor and diagnose problems with the Volume Manager. An automated script can be used to grab the last few lines from these logs whenever a …

NFS-mount “Permission denied” error
February 16, 2006 – 11:27 am | 2 Comments
NFS-mount “Permission denied” error

NFS is a relatively uncomplicated functionality of any Unix system. However, from time to time you are bound to run in the “permission denied” error while trying to NFS-mount a filesystem. Everything seems to be …

Moving filesystems with ufsdump
November 19, 2005 – 11:22 pm | No Comment
Moving filesystems with ufsdump

to move /opt on new partition (disk or file system)
1) from system prompt: format –> partition –> label
2) newfs -v /dev/dsk/c0t1d0s1 (target location)
3) mkdir /new_dir
4) mount /dev/dsk/c0t1d0s1 /new_dir
5) cd /new_dir
6) ufsdump 0f – /opt | …

Create and mount ISO image under Solaris
November 19, 2005 – 10:33 pm | One Comment
Create and mount ISO image under Solaris

1. Disable volume management:
/etc/init.d/volmgt stop
2. Insert CD and create ISO:
dd if=/dev/rdsk/c0t6d0s2 of=/destination_path/image_name.iso bs=1024k
3. After ISO is created, make mountpoint …