返回列表 發帖

【Raspberry Pi】——Installation of Raspbian

本帖最後由 角色 於 2013-10-5 16:30 編輯

Raspbian = Raspberry Pi + Debian

You can follow the link below to build your image file on SD CARD. I use 8GB SD CARD although 4 GB is enough.

http://www.raspberrypi.org/downloads

putty login (provided that you know the ip address of your Raspberry Pi box.

login: pi
password: raspberry
  1. login as: pi
  2. pi@192.168.88.252's password:
  3. Linux raspberrypi 3.6.11+ #474 PREEMPT Thu Jun 13 17:14:42 BST 2013 armv6l

  4. The programs included with the Debian GNU/Linux system are free software;
  5. the exact distribution terms for each program are described in the
  6. individual files in /usr/share/doc/*/copyright.

  7. Debian GNU/Linux comes with ABSOLUTELY NO WARRANTY, to the extent
  8. permitted by applicable law.

  9. NOTICE: the software on this Raspberry Pi has not been fully configured. Please run 'sudo raspi-config'

  10. pi@raspberrypi ~ $
複製代碼

本帖最後由 角色 於 2013-10-5 16:16 編輯

下面是把putty set好,不然后面的外框是乱码。

1062a.gif
  1. sudo raspi-config
複製代碼
1062b.gif

1062c.gif

1062d.gif

1062e.gif
  1. login as: pi
  2. pi@192.168.88.252's password:
  3. Linux raspberrypi 3.6.11+ #474 PREEMPT Thu Jun 13 17:14:42 BST 2013 armv6l

  4. The programs included with the Debian GNU/Linux system are free software;
  5. the exact distribution terms for each program are described in the
  6. individual files in /usr/share/doc/*/copyright.

  7. Debian GNU/Linux comes with ABSOLUTELY NO WARRANTY, to the extent
  8. permitted by applicable law.
  9. Last login: Sat Oct  5 07:46:28 2013 from 192.168.88.254
  10. pi@raspberrypi ~ $ df
  11. Filesystem     1K-blocks    Used Available Use% Mounted on
  12. rootfs           7599584 1544752   5727752  22% /
  13. /dev/root        7599584 1544752   5727752  22% /
  14. devtmpfs          216132       0    216132   0% /dev
  15. tmpfs              44880     212     44668   1% /run
  16. tmpfs               5120       0      5120   0% /run/lock
  17. tmpfs              89740       0     89740   0% /run/shm
  18. /dev/mmcblk0p1     57288   18888     38400  33% /boot
  19. pi@raspberrypi ~ $
複製代碼

TOP

本帖最後由 角色 於 2013-10-5 16:21 編輯

怎样login=root呢?
  1. pi@raspberrypi ~ $ sudo su
  2. root@raspberrypi:/home/pi# passwd
  3. Enter new UNIX password:
  4. Retype new UNIX password:
  5. passwd: password updated successfully
  6. root@raspberrypi:/home/pi#
複製代碼
大家可以参考:
http://www.telecom-cafe.com/foru ... &extra=page%3D1

TOP

Raspbian system upgrade

apt-get update

TOP

返回列表