14
SNMP Disk Monitoringview story

http://serverfault.com – So I put the following lines in my snmpd.conf: disk / disk /usr disk /localhd I restarted snmpd and tried to do an snmp walk on the following OID: 1.3.6.1.4.1.2021.9.1. What I pasted bellow is just a subset of all the results but as you can see for some reason the data gathered is all 0's. Does anyone have any idea why this would be happening? Thanks. (HowTos)

14
Does Linux kernel 3.x use the CFS process scheduler?view story

http://unix.stackexchange.com – Does the latest version of the Linux kernel (3.x) still use the Completely Fair Scheduler (CFS) for process scheduling which was introduced in 2.6.x ? If it doesn't, which one does it use, and how does it work? Please provide a source. (HowTos)

14
Windows 7 laptop with two active network connections will not perform DNS AAAA lookup under certain conditionsview story

http://serverfault.com – My laptop has two network interfaces. The Ethernet interface connects directly to my provider's edge router. It obtains an IPv6 address via SLAAC. I manually set an IPv6 DNS server. (HowTos)

14
Approach on Header recordview story

http://www.unix.com – All, I currently have a requirement to fetch a Date value from a table. And then insert a Header record into a file along with that date value. ex: echo "HDR"" "`date +%Y%j` `date +%Y%m%d` In the above example I used julian date and standard date using Current Date. But the requirement here is to use a Date value fetched from a database table. Kindly help me please. (HowTos)

14
how to create iso from a currently running ubuntu serverview story

http://askubuntu.com – we have a ubuntu 10.04 LTS server running in one of the servers. Is it possible to create an iso file with its exact configuration? is there any software like remastersys for ubuntu server? or will remastersys work for LVM partitions? thanks (HowTos)

14
Shell script to parse ip:port from a text fileview story

http://serverfault.com – I get daily a text file with ip:port, one per line, example: 11.22.33.44:80 22.33.44.55:8080 33.44.55.66:7777 I would like to parse the first ip and port in two different variables, then write them into another file, wait exceution of a program that use these variables, loop this cycle to pass all the ip:port to the file and execute program. How can I do that? thank you (HowTos)

14
Automation of "Kill script by name"view story

http://www.unix.com – The following "NAME" is the keyword to use to kill all processes containing it. While the command is very useful, it is user-unfriendly to type it in terminal. I've tried alias and make it a shell script but as NAME is inside awk so the problem becomes complicated. Could anybody advise? Code: ps -ef | awk '/NAME/{print $2}' | xargs kill (HowTos)

14
Which tasks to learn and which books to read to become more skilled at Unix/Linux internals?view story

http://unix.stackexchange.com – I recently interviewed at a major company and did well on programming questions ("What is the time complexity of quicksort? What is the opposite in C of malloc? What is the opposite in C++ of new? What is the first argument in a Python function?") but I couldn't answer many of the networking / operating system questions so I wonder how to fill this gap. (HowTos)

14
Problem in multi booting Ubuntu 12.04 with existing Windows XP, 7 and 8 in 500GB HDD with 5 Partitionsview story

http://askubuntu.com – Here's my case. I have 500GB HDD with 5 Partitions with XP, Windows7 and Windows8 RP in the first three. As per one of the instruction I've seen in this forum, I did shrink my 4th Partition to create a 30GB unallocated free space to install Ubuntu 12.04. (HowTos)

14
gnome-keyring-daemon/pam: unlock "login" keyringview story

https://bbs.archlinux.org – I think there is enough information to warrant a bug report.edit::FS#30631 orbisvicis https://bbs.archlinux.org/profile.php?id=27968 2012-07-11T05:46:45Z (HowTos)

14
Does Juju really need two nodes?view story

http://askubuntu.com – Hi I am trying to deploy openstack with Juju and MAAS. But the Juju bootstap is still with the Status Connecting to Environment: marcel@ubuntu20:~$ juju -v status 2012-07-11 07:18:00,831 DEBUG Initializing juju status runtime 2012-07-11 07:18:00,842 INFO **Connecting to environment**... 2012-07-11 07:18:00,961 DEBUG Connecting to environment using node5... 2012-07-11 07:18:00,962 DEBUG Spawning S (HowTos)

14
Adding x-scheme-handler without a popup in firefoxview story

http://askubuntu.com – I have written a simple application which registers an "x-scheme-handler" in the .desktop file. Something like this:- [Desktop Entry] Name=Foo Exec=/usr/bin/foo %u Type=Application NoDisplay=true Categories=System; MimeType=x-scheme-handler/foo; This allows a user to click a foo:// link in the browser to launch my app. (HowTos)