[gentoo-user] howto increase INODE

2010-05-26 Thread kitti jaisong

Hi All,

I just install sparc machine. i found error failed: No space left on device 
(28) when i check inode by df -i command

livecd ~ # df -i
FilesystemInodes   IUsed   IFree IUse% Mounted on
tmpfs 1294124684  1247284% /
/dev/hda   0   0   0-  /mnt/cdrom
/dev/loop0 14486   14486   0  100% /mnt/livecd
udev  1294121399  1280132% /dev
tmpfs 129412  81  1293311% /mnt/livecd/lib/firmware
tmpfs 129412   1  1294111% /mnt/livecd/usr/portage
/dev/sda1  327682407   303618% /mnt/gentoo
/dev/sda4 131072  131072   0  100% /mnt/gentoo/usr
/dev/sda5 1310723007  1280653% /mnt/gentoo/var
/dev/sda61896832  12 18968201% /mnt/gentoo/home


livecd ~ # df -h
FilesystemSize  Used Avail Use% Mounted on
tmpfs1012M   36M  976M   4% /
/dev/hda   58M   58M 0 100% /mnt/cdrom
/dev/loop0 49M   49M 0 100% /mnt/livecd
udev   10M  384K  9.7M   4% /dev
tmpfs1012M  4.0M 1008M   1% /mnt/livecd/lib/firmware
tmpfs1012M 0 1012M   0% /mnt/livecd/usr/portage
/dev/sda1 504M   55M  424M  12% /mnt/gentoo
/dev/sda4 2.0G  952M  963M  50% /mnt/gentoo/usr
/dev/sda5 2.0G   83M  1.8G   5% /mnt/gentoo/var
/dev/sda6  29G  173M   27G   1% /mnt/gentoo/home

How to increase or solve this problem

Best Regards,

ti

- Original Message - 
From: meino.cra...@gmx.de

To: Gentoo gentoo-user@lists.gentoo.org
Sent: Wednesday, May 26, 2010 10:15 AM
Subject: [gentoo-user] Harddisk trouble ... or not yet?




Hi,

currently I set up a freshly new gentoo system from scratch
on another harddisk.

For that purpose I have two WDC WD10EARS-00Y5B1 (pasted from
hdparm -i) harddisk (1TB, advanced format 4096 kb sectors).
One harddisk is currently holding the gento system, the other
one is intended as a bare plain copy of the other one (a backup
while setting up the system).

With an old KNOPPIX dvd I tried to copy the first hd onto
the other one with

   dd if=/dev/sda of=/dev/sdb bs=8192

which gave me a LOT of I/O errors after a short time.

Still hopeing, that my hardware (motherboard/chipset/bios) and
the hd are ok I am trying to figure out, what the reason was
for that...

My motherboard is an Asus AV8.



From what kernel version the new advanced format
of the hd is fully supported ?

Are there other reasons -- beside defective hardware -- for
the failing dd and how can I fix them ?




Thank you very much in advance for any help!
best regards
mcc




--
Please don't send me any Word- or Powerpoint-Attachments
unless it's absolutely neccessary. - Send simply Text.
See http://www.gnu.org/philosophy/no-word-attachments.html
In a world without fences and walls nobody needs gates and windows.







[gentoo-user] emerge-webrsync

2007-08-14 Thread kitti jaisong

Hi all,
   How to check emerge-webrsync is working download ?

Thanks,

kitti

--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] asterisk zaptel-1.2.9.1 error

2006-10-23 Thread kitti jaisong

I try to genkernel again and update in grub. it's working

thanks,

ti

Boyd Stephen Smith Jr. wrote:
On Sunday 22 October 2006 11:47, Régis Décamps [EMAIL PROTECTED] wrote 
about 'Re: [gentoo-user] asterisk zaptel-1.2.9.1 error':
  

  * Could not find a usable .config in the kernel source directory.
  * Please ensure that /usr/src/linux points to a configured set of
Linux sources.
  

You should hava a backup of your linux-kernel configuration in /boot.
use ls -al /usr/src/linux to check that the version of the kernel
source is the same than the kernel image you use. In which case you
can:
ln -s /boot/Config-version /usr/src/linux/.config



Try the script below instead, it might not fix everything, but it's less 
hit-and-miss than manually searching for a configuration backup that you 
may not even have.


#!/bin/bash
if [ -h /usr/src/linux ]; then
  echo 'You have a /usr/src/linux symlink, good.'
  if [ $(readlink /usr/src/linux) == linux-$(uname -r) ]; then
 echo 'It points to your running kernel, also good.'
  else
 echo But, it points to the wrong place.  I'll fix it.
 ln -snf linux-$(uname -r) /usr/src/linux || exit 127
  fi
elif [ -e /usr/src/linux ]; then
  echo 'You have a /usr/src/linux, but it is not a symlink.'
  echo Your system is broken, but I can't automatically fix it.
  exit 1
else
  echo You don't have a /usr/src/linux, let me make one for you.
  ln -snf linux-$(uname -r) /usr/src/linux || exit 127
fi

if [ -r /proc/config.gz ]; then
  echo 'You have a /proc/config.gz, good.'
else
  echo You either don't have a /proc/config.gz or I can't read it.
  echo Sorry, I can't access the configuration of your running kernel.
  exit 1
fi

if [ -r /usr/src/linux/.config ]; then
  echo 'You already have a readable /usr/src/linux/.config, hrm.'
elif [ -e /usr/src/linux/.config ]; then
  echo Your /usr/src/linux/.config exists, but I can't read it.
  echo There's probably a permissions problem somewhere.
  exit 1
else
  echo 'No /usr/src/linux/.config, using running config.'
  zcat /proc/config.gz  /usr/src/linux/.config || exit 127
  exit 0
fi

if zcat /proc/config.gz | diff /usr/src/linux/.config - ; then
  echo 'Your /usr/src/linux/.config and your running configuration agree.'
  echo I can't believe you wasted my CPU cycles. ;)
  exit 0
else
  echo -n 'Your /usr/src/linux/.config and your running configuration '
  echo -n 'are different.  You should build and install, as needed, this '
  echo -n 'new configuration.  After doing so, you should be able to '
  echo -n 'compile out-of-tree modules, but they will not be usable until '
  echo'you boot into the newly configured kernel.'
  exit 1
fi

  

--
gentoo-user@gentoo.org mailing list



[gentoo-user] asterisk zaptel-1.2.9.1 error

2006-10-22 Thread Kitti Jaisong
Title: asterisk zaptel-1.2.9.1 error







Hi all,
 I'm emerge zaptel 1.2.9.1 and get error like this

checking zaptel-1.2.9.1.tar.gz ;-) ... [ ok ]
* Determining the location of the kernel source code
* Found kernel source directory:
* /usr/src/linux
* Could not find a usable .config in the kernel source directory.
* Please ensure that /usr/src/linux points to a configured set of Linux sources.
* If you are using KBUILD_OUTPUT, please set the environment var so that
* it points to the necessary object directory so that it might find .config.

!!! ERROR: net-misc/zaptel-1.2.9.1 failed.
Call stack:
 ebuild.sh, line 1562: Called dyn_setup
 ebuild.sh, line 665: Called pkg_setup
 zaptel-1.2.9.1.ebuild, line 81: Called linux-mod_pkg_setup
 linux-mod.eclass, line 432: Called linux-info_pkg_setup
 linux-info.eclass, line 554: Called die

please help me

ti






[gentoo-user] how to patch the asterisk ebuild

2006-10-21 Thread Kitti Jaisong
Title: how to patch the asterisk ebuild







Hi all,
 somebody know how to patch the software via ebuild. i need to patch the asterisk.1.2.13 in part of chan_sip.c for correct the silencesupp in the huawei softswitch. but i dont know how to correct in the ebuild

Thanks,

kitti





huawei.patch
Description: huawei.patch


[gentoo-user] add usb adsl have problem

2005-05-25 Thread Kitti Jaisong
Title: add usb adsl have problem







I'm use BIPAC-7000 and download driver for standard linux
what's the misstake

kitti

Smita e2 # make
gcc -O2 -fomit-frame-pointer -fno-strict-aliasing -pipe -fno-strength-reduce -DCPU=686 -march=i686 -DMODULE -D__KERNEL__ -DLINUX -I/lib/modules/`uname -r`/build/include -c usbsndcm.c -o usbsndcm.o
In file included from /lib/modules/2.6.11-gentoo-r5/build/include/asm/smp.h:18,
 from /lib/modules/2.6.11-gentoo-r5/build/include/linux/smp.h:19,
 from /lib/modules/2.6.11-gentoo-r5/build/include/linux/topology.h:33,
 from /lib/modules/2.6.11-gentoo-r5/build/include/linux/mmzone.h:371,
 from /lib/modules/2.6.11-gentoo-r5/build/include/linux/gfp.h:4,
 from /lib/modules/2.6.11-gentoo-r5/build/include/linux/slab.h:15,
 from hasbani.h:28,
 from usbsndcm.c:20:
/lib/modules/2.6.11-gentoo-r5/build/include/asm/mpspec.h:6:25: mach_mpspec.h: No such file or directory
In file included from /lib/modules/2.6.11-gentoo-r5/build/include/asm/smp.h:18,
 from /lib/modules/2.6.11-gentoo-r5/build/include/linux/smp.h:19,
 from /lib/modules/2.6.11-gentoo-r5/build/include/linux/topology.h:33,
 from /lib/modules/2.6.11-gentoo-r5/build/include/linux/mmzone.h:371,
 from /lib/modules/2.6.11-gentoo-r5/build/include/linux/gfp.h:4,
 from /lib/modules/2.6.11-gentoo-r5/build/include/linux/slab.h:15,
 from hasbani.h:28,
 from usbsndcm.c:20:
/lib/modules/2.6.11-gentoo-r5/build/include/asm/mpspec.h:8: error: `MAX_MP_BUSSES' undeclared here (not in a function)
/lib/modules/2.6.11-gentoo-r5/build/include/asm/mpspec.h:9: error: `MAX_MP_BUSSES' undeclared here (not in a function)
/lib/modules/2.6.11-gentoo-r5/build/include/asm/mpspec.h:10: error: `MAX_MP_BUSSES' undeclared here (not in a function)/lib/modules/2.6.11-gentoo-r5/build/include/asm/mpspec.h:12: error: `MAX_MP_BUSSES' undeclared here (not in a function)/lib/modules/2.6.11-gentoo-r5/build/include/asm/mpspec.h:20: error: `MAX_MP_BUSSES' undeclared here (not in a function)/lib/modules/2.6.11-gentoo-r5/build/include/asm/mpspec.h:20: error: conflicting types for `mp_bus_id_to_type'
/lib/modules/2.6.11-gentoo-r5/build/include/asm/mpspec.h:8: error: previous declaration of `mp_bus_id_to_type'
/lib/modules/2.6.11-gentoo-r5/build/include/asm/mpspec.h:22: error: `MAX_IRQ_SOURCES' undeclared here (not in a function)
/lib/modules/2.6.11-gentoo-r5/build/include/asm/mpspec.h:24: error: `MAX_MP_BUSSES' undeclared here (not in a function)/lib/modules/2.6.11-gentoo-r5/build/include/asm/mpspec.h:24: error: conflicting types for `mp_bus_id_to_pci_bus'
/lib/modules/2.6.11-gentoo-r5/build/include/asm/mpspec.h:12: error: previous declaration of `mp_bus_id_to_pci_bus'
In file included from /lib/modules/2.6.11-gentoo-r5/build/include/asm/smp.h:20,
 from /lib/modules/2.6.11-gentoo-r5/build/include/linux/smp.h:19,
 from /lib/modules/2.6.11-gentoo-r5/build/include/linux/topology.h:33,
 from /lib/modules/2.6.11-gentoo-r5/build/include/linux/mmzone.h:371,
 from /lib/modules/2.6.11-gentoo-r5/build/include/linux/gfp.h:4,
 from /lib/modules/2.6.11-gentoo-r5/build/include/linux/slab.h:15,
 from hasbani.h:28,
 from usbsndcm.c:20:
/lib/modules/2.6.11-gentoo-r5/build/include/asm/io_apic.h:158: error: `MAX_IRQ_SOURCES' undeclared here (not in a function)
/lib/modules/2.6.11-gentoo-r5/build/include/asm/io_apic.h:158: error: conflicting types for `mp_irqs'
/lib/modules/2.6.11-gentoo-r5/build/include/asm/mpspec.h:22: error: previous declaration of `mp_irqs'
In file included from /lib/modules/2.6.11-gentoo-r5/build/include/linux/smp.h:19,
 from /lib/modules/2.6.11-gentoo-r5/build/include/linux/topology.h:33,
 from /lib/modules/2.6.11-gentoo-r5/build/include/linux/mmzone.h:371,
 from /lib/modules/2.6.11-gentoo-r5/build/include/linux/gfp.h:4,
 from /lib/modules/2.6.11-gentoo-r5/build/include/linux/slab.h:15,
 from hasbani.h:28,
 from usbsndcm.c:20:
/lib/modules/2.6.11-gentoo-r5/build/include/asm/smp.h:73:26: mach_apicdef.h: No such file or directory
In file included from /lib/modules/2.6.11-gentoo-r5/build/include/linux/irq.h:21,
 from /lib/modules/2.6.11-gentoo-r5/build/include/asm/hardirq.h:6,
 from /lib/modules/2.6.11-gentoo-r5/build/include/linux/hardirq.h:6,
 from /lib/modules/2.6.11-gentoo-r5/build/include/linux/interrupt.h:11,
 from /lib/modules/2.6.11-gentoo-r5/build/include/linux/usb.h:15,
 from hasbani.h:29,
 from usbsndcm.c:20:
/lib/modules/2.6.11-gentoo-r5/build/include/asm/irq.h:16:25: irq_vectors.h: No such file or directory
In file included from /lib/modules/2.6.11-gentoo-r5/build/include/asm/hardirq.h:6,
 from /lib/modules/2.6.11-gentoo-r5/build/include/linux/hardirq.h:6,
 from /lib/modules/2.6.11-gentoo-r5/build/include/linux/interrupt.h:11,
 from /lib/modules/2.6.11-gentoo-r5/build/include/linux/usb.h:15,
 from hasbani.h:29,
 from usbsndcm.c:20:
/lib/modules/2.6.11-gentoo-r5/build/include/linux/irq.h:72: error: `NR_IRQS' undeclared here (not in a function)
In file included from /lib/modules/2.6.11-gentoo-r5/build/include/linux/irq.h:74,
 from 

Re: [gentoo-user] usb adsl billion bipac-7000

2005-04-25 Thread kitti jaisong
billion driver can't install when i use make command. i think the driver 
support this kernel.
but have something wrong the procedure install
pls. addvice me

thanks,
ti
Alexander Kirillov wrote:
Check http://www.billion.com/
they seem to have linux drivers for their modems.
Best of luck,
Sasha
 

Hi all,
 Who ever install usb adsl billion bipac-7000. the liveCD can't detect
this hardware. what about driver for it where i can get?
thanks,
ti
   

 

--
gentoo-user@gentoo.org mailing list


[gentoo-user] usb adsl billion bipac-7000

2005-04-24 Thread Kitti Jaisong
Title: usb adsl billion bipac-7000 







Hi all,
 Who ever install usb adsl billion bipac-7000. the liveCD can't detect this hardware. what about driver for it where i can get?

thanks,
ti