Tag:
system administration

Creating a Windows Boot Disk with a Linux Machine

by
on
November 17, 2008

The standard way to create a Windows boot disk is to have access to a Windows system. If you have access to a Linux system instead, and know a couple tricks, you can create boot disk as well. The first thing to do is find a website that has the boot disks available for download. [...]

Read More
No Comments
system administration

Find your MAC address with ifconfig

by
on
October 30, 2008

You can find the MAC address of your system at the command line by using the ifconfig command. The ifconfig command will show you information on all your network interfaces. If no arguments are given ifconfig displays the status of the currently active interfaces. You have to run this command as root or use sudo. [...]

Read More
No Comments
system administration

Find your IP address with ifconfig

by
on
October 30, 2008

You can find the IP address of your system at the command line by using the ifconfig command. The ifconfig command will show you information on all your network interfaces. If no arguments are given ifconfig displays the status of the currently active interfaces. You have to run this command as root or use sudo. [...]

Read More
No Comments
system administration

Disable ext3 boot-time check with tune2fs

by
on
October 26, 2008

The ext3 file system forces an fsck once it has been mounted a certain number of times. By default this maximum mount count is usually set between 20-30. On many systems such as laptops which can be rebooted quite often this can quickly become a problem. To turn off this checking you can use the [...]

Read More
1 Comment
system administration

How to correctly use LD_LIBRARY_PATH

by
on
October 22, 2008

The LD_LIBRARY_PATH environment variable contains a colon separated list of paths that the linker uses to resolve library dependencies of ELF executables at run-time. These paths will be given priority over the standard library paths /lib and /usr/lib. The standard paths will still be searched, but only after the list of paths in LD_LIBRARY_PATH has [...]

Read More
6 Comments
system administration

Select threading implementation using LD_ASSUME_KERNEL

by
on
October 13, 2008

For backwards compatibility, many Linux distributions support both the older LinuxThreads implementation as well as the newer Native POSIX Thread Library (NPTL). By setting the LD_ASSUME_KERNEL environment variable you can tell the dynamic linker to assume that it is running on top of a particular kernel version. This will override the dynamic linker’s default choice [...]

Read More
No Comments
system administration
Copyright 2008-2010 WiredRevolution.com. All rights reserved.