Hi,

sorry about the topic title, but I thought I'll post my questions in one 
topic instead of splitting up. In case it would be more efficient, I could 
split them up as well.

1) I want to assign a static address to my newly flashed BBB, but somehow 
it remains a dynamic one (192.168.1.6) instead of the static one 
(192.168.1.175). I have configured in the /etc/network/interfaces as in the 
attachment, tried as well a reboot, but somehow failed. What's wrong with 
the config?

2) Since I don't need the WindowManager which is automatically started I 
want to disable it to be launched automatically. Where do I need to 
configure it?

3) I have a 16GB SD-card and wanted to mount on my system. Unfortunately I 
can only see 1.6GB mounted. I tried to summarize them in the 
FileSystem.txt-file. Any ideas why I don't see the remaining 90%?

thx

leo


-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
"BeagleBoard" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.
# The loopback network interface
auto lo
iface lo inet loopback

# The primary network interface
#auto eth0
#iface eth0 inet dhcp
# Example to keep MAC address between reboots
#hwaddress ether DE:AD:BE:EF:CA:FE

# The secondary network interface
#auto eth1
#iface eth1 inet dhcp

# WiFi Example
#auto wlan0
#iface wlan0 inet dhcp
#    wpa-ssid "essid"
#    wpa-psk  "password"

# Ethernet/RNDIS gadget (g_ether)
# ... or on host side, usbnet and random hwaddr
# Note on some boards, usb0 is automaticly setup with an init script
iface usb0 inet static
    address 192.168.7.2
    netmask 255.255.255.0
    network 192.168.7.0
    gateway 192.168.7.1

iface eth0 inet static
        address 192.168.1.175
        netmask 255.255.255.0
        network 192.168.1.0
        gateway 192.168.1.1
debian@beaglebone:~$ fdisk -l

Disk /dev/mmcblk0: 15.7 GB, 15707668480 bytes
4 heads, 16 sectors/track, 479360 cylinders, total 30679040 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0x00000000

        Device Boot      Start         End      Blocks   Id  System
/dev/mmcblk0p1   *        2048       26623       12288    e  W95 FAT16 (LBA)
/dev/mmcblk0p2           26624     3481599     1727488   83  Linux

**********************************************

debian@beaglebone:~$ cat /etc/fstab
# /etc/fstab: static file system information.
#
# Auto generated by: beaglebone-black-eMMC-flasher.sh
#
UUID=75a8ea4a-7993-4590-a8e7-1e113d7db0f1  /  ext4  noatime,errors=remount-ro  
0  1
UUID=BF1D-59D2  /boot/uboot  auto  defaults  0  0
debugfs         /sys/kernel/debug  debugfs  defaults          0  0
/dev/mmcblk0p2 /home/debian/mnt_2 ext4 defaults 0 2

************************************************
debian@beaglebone:~$ blkid
/dev/mmcblk1p2: LABEL="rootfs" UUID="75a8ea4a-7993-4590-a8e7-1e113d7db0f1" 
TYPE="ext4"
/dev/mmcblk0p1: SEC_TYPE="msdos" LABEL="BOOT" UUID="004A-BEB7" TYPE="vfat"
/dev/mmcblk0p2: UUID="947ab2a7-3e28-40f5-8e41-6923316637ca" TYPE="ext4"
/dev/mmcblk1p1: SEC_TYPE="msdos" LABEL="boot" UUID="BF1D-59D2" TYPE="vfat"
*************************************************

debian@beaglebone:~$ df -h
Filesystem                                              Size  Used Avail Use% 
Mounted on
rootfs                                                  1.7G  1.5G  105M  94% /
udev                                                     10M     0   10M   0% 
/dev
tmpfs                                                   100M  696K   99M   1% 
/run
/dev/disk/by-uuid/75a8ea4a-7993-4590-a8e7-1e113d7db0f1  1.7G  1.5G  105M  94% /
tmpfs                                                   249M     0  249M   0% 
/dev/shm
tmpfs                                                   249M     0  249M   0% 
/sys/fs/cgroup
tmpfs                                                   100M     0  100M   0% 
/run/user
tmpfs                                                   5.0M     0  5.0M   0% 
/run/lock
/dev/mmcblk1p1                                           96M   73M   24M  76% 
/boot/uboot
/dev/mmcblk0p1                                           12M  426K   12M   4% 
/media/BOOT
/dev/mmcblk0p1                                           12M  426K   12M   4% 
/home/debian/mnt_1
/dev/mmcblk0p2                                          1.6G  2.5M  1.6G   1% 
/home/debian/mnt_2

Reply via email to