Skip to content

blog.gimpe.com

my notes

Tag: network

Posted on 2010-02-19

Ping Ubuntu hostname from Windows (winbind+samba)

Here’s a procedure I found on taesch.com to ping a Ubuntu machine by the hostname from a Windows PC:

  1. sudo vi /etc/nsswitch.conf
    hosts: files wins dns
  2. sudo aptitude install winbind
  3. sudo aptitude install samba

SOURCE: http://taesch.com/my-digital-life/cant-ping-ubuntu-hostname-from-windows-xp-setup-winbind

Posted on 2009-09-20

Diskless HTPC using DD-WRT (PXE), Ubuntu/XBMC and FreeNAS (TFTP, NFS)

Given that I spent time and money on my FeeNAS node, I want to maximize its usage, so when a friend told me that I can use PXE and NFS to boot a diskless computer from the network, I thought it was the perfect opportunity to try somehing new and activate some more services under FreeNAS!

Continue reading “Diskless HTPC using DD-WRT (PXE), Ubuntu/XBMC and FreeNAS (TFTP, NFS)”

Posted on 2009-08-01

Ubuntu: ethtool permanent 1000baseTX full-duplex

vi /etc/init.d/1000Mbs

[bash]#!/bin/sh

ETHTOOL="/usr/sbin/ethtool"
DEV="eth0"

case "$1" in
start)
echo -n "Setting eth0 speed 1000 full-duplex…";
$ETHTOOL -s $DEV speed 1000 duplex full autoneg on;
echo " done."
;;
stop)
;;
esac

exit 0[/bash]

update-rc.d 1000Mbs defaults

SOURCE: http://www.cyberciti.biz/tips/howto-linux-add-ethtool-duplex-settings-permanent.html

Recent Posts

  • Flashing IBM M1115 (SAS 9223) with LSI SAS 9211-8i firmware to use with ESXi 5 (FreeNAS guest w/RDM)
  • Configure mailgun on Ubuntu (bsd-mailx / postfix)
  • My GitLab CE notes (Ubuntu .deb installation)
  • andyleonard.com – zfs-snapshot.sh
  • Steam: Install a single game on a different hard drive

Recent Comments

  • Harrison Pace on Flashing IBM M1115 (SAS 9223) with LSI SAS 9211-8i firmware to use with ESXi 5 (FreeNAS guest w/RDM)
  • Patrick Kabir on Flashing IBM M1115 (SAS 9223) with LSI SAS 9211-8i firmware to use with ESXi 5 (FreeNAS guest w/RDM)
  • My GitLab CE notes (Ubuntu .deb installation) | blog.gimpe.com on Configure mailgun on Ubuntu (bsd-mailx / postfix)
  • gimpe on andyleonard.com – zfs-snapshot.sh
  • Jodie Cunningham on andyleonard.com – zfs-snapshot.sh
Proudly powered by WordPress