新手,用busybox制作文件系统,/sbin/init不可执行,求高手指点。。。。 asoc: W55FA93ADC HiFi <-> w55fa93adc_cpu_dai mapping ok ALSA device list: #0: W55FA93_SPU (W55FA93_DAC) #1: mach-W55FA93_ADC (codecADC) TCP cubi...
by yongbowang - Linux新手园地 - 2014-09-15 21:33:56 阅读(774) 回复(3)
http://hi.baidu.com/smilewwh/blog/item/ee79a3269b97f6178b82a159.html 本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u/1421/showart_251983.html
我省去了制作启动盘的过程,这个网上可以大把大把的抓! 更多... 我通过在硬盘上安装linux得到linux的分区: /dev/hda1 /boot /dev/hda2 / /dev/hda3 swap 好了,现在开始用busybox来制作了。。。 实际操作过程相当简单: 下载好busybox的源文件,大家最好到busybox的官方网站上面去下,这样还可以看到很多文档 :) 我下载的是busybox-1.00-rc3版本,也是它的最新版 tar zxvf busybox-1.00-rc3.tar.gz cd busybox-1.00-...
http://www.busybox.net/ busybox: The Swiss Army Knife of Embedded Linux busybox combines tiny versions of many common UNIX utilities into a single small executable. It provides replacements for most of the utilities you usually find in GNU fileutils, shellutils, etc. The utilities in busybox generally have fewer options than their full-featured GNU cousins; however, the options that are included p...
在 http://www.kernel.org/pub/software/scm/git/ 中下载了git1.6.1,make时不通过,出现/usr/include/openssl/kssl.h:72:18: krb5.h: No such file or directory 等一些文件找不到的错误,解决办法如下: 做几个软链接即可: ln -s /usr/kerberos/include/com_err.h /usr/include/ ln -s /usr/kerberos/include/profile.h /usr/include/ ln -s /usr/kerberos/include/krb5.h /usr/include/ 之后make通过,make install之后在我设...
1.creat account $ pw groupadd mysql $ pw useradd mysql -c "MySQL Server" -d /dev/null -g mysql -s /sbin/nologin 2.Compiling MySQL $ ./configure --prefix=/usr/local/mysql --with-mysqld-user=mysql --with-unix-socket-path=/tmp/mysql.sock --with-mysqld-ldflags=-all-static //在同一行 $ make $ make install $ strip /usr/local/mysql/libexec/mysqld //进入mysql目录后执行 $ scripts/mysql_install...
First of all thank you for great HOW-TO. I hope that I'm posting this in the right place. Everything up to the point of installing DCC worked flawlessly (it seemed too easy ) I came to a point where things don't match your tutorial. Let me explain: - I have done everything and arrived at this step: Test our installation with: cdcc info We should get 'requests ok' from the servers. - What I...
[color="#000000"]Web[color="#000000"]me09.cublog.cn installing Debian (Updated: 2005-05-24) Instructions for installing a very clean Debian GNU/Linux system that boots from RAID 1, and has RAID 1 or RAID 5 root and data filesystems. The examples assume two identical harddrives, sda and sdb, on which after a small boot partition, 1 GB is used for swap, 25 GB is used for the root filesystem and ...