Re: MESA-INTEL: warning: Ivy Bridge Vulkan support is incomplete

2023-07-30 Thread Rodrigo Cunha
Where is the iHD_drv_video.so project? I search for it on Google, but not
find it.


On Sun, Jul 30, 2023 at 7:39 PM Charles Curley <
charlescur...@charlescurley.com> wrote:

> On Mon, 24 Jul 2023 11:57:15 -0600
> Charles Curley  wrote:
>
> > I have been able to run vivaldi (a chromium derivative) on my Lenovo
> > Yoga 13 under Bullseye, and under Bookworm upgraded from Bullseye.
> > However, I just did a fresh installation of Bullseye, and I see the
> > following:
> >
> > charles@tsalmoth:~$ vivaldi &
> > [1] 31395
> > charles@tsalmoth:~$ MESA-INTEL: warning: Ivy Bridge Vulkan support is
> > incomplete libva error:
> > /usr/lib/x86_64-linux-gnu/dri/iHD_drv_video.so init failed
> >
> > charles@tsalmoth:~$
>
> Progress! I inadvertently launched vivaldi just now, and it now runs. I
> still get the error message, but I also get the browser. Vivaldi was
> updated on July 23, a day before the email above, so I'm not sure that
> updating vivaldi solved (or worked around) the problem. I'm not going
> to worry about it; I have other more pressing issues.
>
> --
> Does anybody read signatures any more?
>
> https://charlescurley.com
> https://charlescurley.com/blog/
>
>

-- 
Atenciosamente,
Rodrigo da Silva Cunha
São Gonçalo, RJ - Brasil


Debian USB Wifi

2023-06-04 Thread Rodrigo Cunha
Hi all,
I want to buy a usb to wifi network. How do I check if the hardware(usb)
has debian support?

-- 
Atenciosamente,
Rodrigo da Silva Cunha
São Gonçalo, RJ - Brasil


Re: Unable to associate to mobile hotspot

2023-03-07 Thread Rodrigo Cunha
>
> At any rate, I've tried adding "intel_iommu=off" to my kernel parameters
> and rebooted, but nothing changed.
>


Steps:
sudo nano /etc/default/grub
Change from this:
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
To this:
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash intel_iommu=off"
Update grup:
sudo update-grub
Reinstall system.
shutdown -r now

Then,
*journal -b *and post here.

If skip task update-grub does not work.


On Tue, Mar 7, 2023 at 7:56 AM Lucio Crusca  wrote:

> Il 04/03/23 05:23, Rodrigo Cunha ha scritto:
> > What is your kernel?
>
> Linux t470 6.1.0-5-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.12-1
> (2023-02-15) x86_64 GNU/Linux
>
>
> > I saw in a forum from Arch that a problem in the kernel is causing this.
>
> I've read through the forum posts you linked, and the ones linked
> therein. I'm afraid it's quite a different problem. My wifi connection
> has no stability issues: it just refuses to associate to this specific
> hotspot, but it works like a charm with others. My logs do not show the
> CTRL-EVENT-BEACON-LOSS message. My network adapter is not Atheros.
>
> At any rate, I've tried adding "intel_iommu=off" to my kernel parameters
> and rebooted, but nothing changed.
>


-- 
Atenciosamente,
Rodrigo da Silva Cunha
São Gonçalo, RJ - Brasil


Re: No /

2023-03-07 Thread Rodrigo Cunha
It does not work if you want to use this host like a secure
server(server.key). So why do you not install a new server with the same
configuration? Commonly is suitable to install two servers, migrate
services, and switch at an appropriate time.

On Tue, Mar 7, 2023 at 8:05 PM David Wright 
wrote:

> On Tue 07 Mar 2023 at 19:36:04 (+0100), to...@tuxteam.de wrote:
> > On Tue, Mar 07, 2023 at 05:33:45PM +0100, Michael Lee wrote:
> > > Is it possible to reinstall the system and still retain the settings,
> > > logins, etc.?
> >
> > That depends on what you understand by "settings, logins, etc".
> >
> > As others have said in this thread: what are you trying to achieve?
> > Why do you want to reinstall the system?
>
> https://lists.debian.org/debian-user/2023/03/msg00064.html
>
> one might assume. BTRfs is w-a-y beyond my ken.
>
> Cheers,
> David.
>
>

-- 
Atenciosamente,
Rodrigo da Silva Cunha
São Gonçalo, RJ - Brasil


Re: what method do you prefer for data transfer between nodes?

2023-03-05 Thread Rodrigo Cunha
Hi Ken,
For short, I use scp and rsync too. Work fine with my scripts. Ftp works
fine on old servers. I saw old servers work with this, but with monitoring
in the FTP port for recovery. Another is to mount an NFS directory at
/etc/fstab. Work fine, too. If you have a critical script at the
scheduler(crontab) may be monitoring this with logs.

On Sun, Mar 5, 2023 at 10:48 AM Ken Young  wrote:

> Thanks for the suggestion. I will give it a try on mailbox.org.
>
>
> Sincerely,
> Ken Young
>
>
> On Sun, Mar 5, 2023 at 9:05 PM  wrote:
>
>> On Sun, Mar 05, 2023 at 07:23:49PM +0800, Ken Young wrote:
>> > What provider do you recommend then?
>>
>> Around here (West Europe), for example, mailbox.org [1]. But they
>> are far from the only one (I'm not a customer, nor associated with
>> them, but I do know a few happy customers).
>>
>> Whenever they don't cost any money you'll have to ask yourself
>> what their business model is.
>>
>> Cheers
>>
>> [1] https://mailbox.org/en/
>> --
>> t
>>
>

-- 
Atenciosamente,
Rodrigo da Silva Cunha
São Gonçalo, RJ - Brasil


Re: besides ping/nslookup, any other tools to resolve a hostname?

2023-03-03 Thread Rodrigo Cunha
>
> I have bitnami/mysql container (debian OS) running on kubernetes.
> This container seems too restricted for system software, these following
> commands are removed:
>
> sudo (so I can't su to root for apt)
> ping
> dig
> nslookup
> net-tools
>
It is a good practice to build small images for pods without commands for
the network. To solve this problem, you can do that:
Create a pod in the same network with net tools.
Or
1 .rebuild a new docker image with another version, with net-tools.
2. then change the current pod with edit in deployment.



On Fri, Mar 3, 2023 at 9:59 PM Ken Young  wrote:

> Hello,
>
> I have bitnami/mysql container (debian OS) running on kubernetes.
> This container seems too restricted for system software, these following
> commands are removed:
>
> sudo (so I can't su to root for apt)
> ping
> dig
> nslookup
> net-tools
>
> Do you know any other way to resolve a hostname by manual  on this
> container?
>
> Thanks
> Ken
>


-- 
Atenciosamente,
Rodrigo da Silva Cunha
São Gonçalo, RJ - Brasil


Re: Unable to associate to mobile hotspot

2023-03-03 Thread Rodrigo Cunha
>
> I'm using Sid/amd64 on my notebook and I have a Android smartphone. My
> notebook has no problems to associate to every WiFI access point I
> tested so far, including mobile phones hotspots, except the hotspot of
> my own smartphone.
>

What is your kernel?
I saw in a forum from Arch that a problem in the kernel is causing this. On
the Debian list, there is a solution. But you would have to update the
default group to intel_iommu=off.
Follow the link.
https://forums.debian.net/viewtopic.php?p=740221

On Thu, Mar 2, 2023 at 2:13 PM Lucio Crusca  wrote:

> I'm using Sid/amd64 on my notebook and I have a Android smartphone. My
> notebook has no problems to associate to every WiFI access point I
> tested so far, including mobile phones hotspots, except the hotspot of
> my own smartphone.
>
> On the other hand, another notebook I have (booted with Systemrescuecd)
> has no problems to associate to my smartphone hotspot, and the same is
> true for other notebooks of a few friends I asked to.
>
> I'm using XFCE, though I suspect that doesn't make any difference,
> because Systemrescuecd also uses XFCE.
>
> When I try to associate my notebook to my smartphone hotspot, the
> password dialog simply pops up again, but I'm sure I enter the correct
> password.
>
> I've already tried changing the password, changing the SSID, removing
> the network from NetworkManager and rebooting everything: no dice.
>
> Can you please help me spot the problem?
>
>
>

-- 
Atenciosamente,
Rodrigo da Silva Cunha
São Gonçalo, RJ - Brasil


Re: SSD Optimization - Crucial CT1000MX500SSD1

2022-10-02 Thread Rodrigo Cunha
Your debian is a test version, check your SSD in a LTS debian. bookworm/sid
is a testing version.

On Sun, Oct 2, 2022 at 5:34 PM David Christensen 
wrote:

> On 10/2/22 06:19, Marcelo Laia wrote:
> >> # cat /etc/debian_version ; uname -a
> >
> > bookworm/sid
> > Linux marcelo 5.19.0-2-amd64 #1 SMP PREEMPT_DYNAMIC Debian 5.19.11-1
> > (2022-09-24) x86_64 GNU/Linux
>
>
> Please install Debian Stable.
>
>
> >
> >> Disable the Wi-Fi via CMOS Setup.
> >
> > This isn't possible in the BIOS.
>
>
> Please reset your CMOS settings:
>
>
>
> https://www.dell.com/support/kbdoc/en-us/000130200/how-to-use-and-troubleshoot-the-inspiron-15-5547#Issue0_7
>
>
> >> # dmesg | grep error
> >
> > Only error related to iwlwifi and r8169 (wifi card)
> >
> >> # date ; dd if=/dev/sda of=/dev/null bs=1M count=10k ; date
> >
> > started at 13:01:03
> > finished at  13:01:27
> >
> >> How long does it take?
> >
> > 24 s
> >
> >> Were there any error messages?
> >
> > No
> >
> >> Does dmesg(1) show any errors?
> >
> > The same previous errors: iwlwifi and r8169 (wifi card)
>
>
> That supports my theory that the problem is Debian Unstable.
>
>
> David
>
>

-- 
Atenciosamente,
Rodrigo da Silva Cunha
São Gonçalo, RJ - Brasil


Re: Setting system/ rtc clock

2022-09-18 Thread Rodrigo Cunha
Set the other timezone, in debian.
https://linuxize.com/post/how-to-set-or-change-timezone-on-debian-10/
Or set the timezone in the hp system, to your localtime.

On Sun, Sep 18, 2022 at 6:05 PM David Wright 
wrote:

> On Sun 18 Sep 2022 at 15:31:49 (-0500), Richard Schires wrote:
> > I've been searching for an answer and keep going in a circle.
> > I hope you can help or direct me to someone who can. I am new to Linux.
> > I am using an HP ML150 G2 to run a tabletop CNC mill. The software is
> > LinuxCNC on Debian. The problem that I am trying to resolve is getting
> the
> > system clock and CMOS clock to match.
> > If I set the time in the CMOS, reboot, the system time is five hours off.
> > I can get the system clock set through the date command;
> > sudo date -s "D M Y H:M:S"
> > Problem is that resets the CMOS time way off.
>
> Yes, it sets it to UTC. If you can persuade yourself that running
> the CMOS clock on UTC is sensible, then just stick with that.
> It makes life a lot simpler (no clock changes in spring and fall).
>
> > I've tried using hwclock -w to write the system time to CMOS but doesn't
> > work.
> > I know I could just keep the system time and ignore the CMOS time but
> > should be able to get the two to match.
> > Would appreciate your help or direction.
>
> Or you might want to explain why the CMOS time needs to be Local time,
> which gets adjusted whenever the clocks change or you travel.
>
> Cheers,
> David.
>
>

-- 
Atenciosamente,
Rodrigo da Silva Cunha
São Gonçalo, RJ - Brasil


Re: Re: Please consider unblocking Chromium and linux packages for Buster

2019-07-01 Thread Rodrigo Olmos
> For security critical packages like web browsers I would always recommend 
> getting a newer version from unstable or from stable-security ASAP.

What would be the best procedure as of today to have v75 instead of
v73 on stretch? I tried pinning v75 from unstable but it suggests huge
changes (91 upgraded, 41 newly installed, 12 to remove) including core
system libraries

Thanks,

Rodrigo


Re: Rodrigo_find__your_perfect____ dentist

2016-05-02 Thread Rodrigo Avila
No more emails please
On May 2, 2016 7:22 AM,  wrote:

>
>
>
>
> *Dear_Rodrigo, Find the perfect dentist in your area click here
> no_more_emails?
> *
> 
> */fd
>
>


Re: Can't startx as normal user

2015-12-01 Thread Rodrigo S. Cañibano
On 1 December 2015 at 16:47, Sven Arvidsson  wrote:
> The NEWS entry should have been picked up by apt-listchanges:

I must have missed it. Thanks!



Re: Can't startx as normal user

2015-11-30 Thread Rodrigo S. Cañibano
On 30 November 2015 at 06:10, Ansgar Burchardt <"Ansgar
Burchardt"@43-1.org> wrote:
> which looks like some DBus policy forbids Xorg to talk to logind. Xorg
> does so in order to get access to devices w/o being setuid root since
> recently.

It could be that, since I don't have systemd, nor systemd-shim
installed (I just checked again).

I had to install xserver-xorg-legacy, just as Harald Dunkel suggested.

Should't apt-get have warned me that there were unmet dependencies?

Wasn't systemd just an init?

Thanks to all of you!



Can't startx as normal user

2015-11-29 Thread Rodrigo S. Cañibano
Hi!

Today I made a dist-upgrade and everything worked fine until I rebooted.

No only root can run startx. If a user tries the following error appears:

"(EE) AddScreen/ScreenInit failed for driver 0"

(I will attach the full log).

Does anyone have any idea what might be the source of this problem?

Thanks and sorry for the bad English!

--
Draco Metallium
[  4203.003] 
X.Org X Server 1.17.3
Release Date: 2015-10-26
[  4203.004] X Protocol Version 11, Revision 0
[  4203.004] Build Operating System: Linux 3.16.0-4-amd64 x86_64 Debian
[  4203.004] Current Operating System: Linux ruri 4.2.0-1-amd64 #1 SMP Debian 4.2.6-1 (2015-11-10) x86_64
[  4203.004] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-4.2.0-1-amd64 root=UUID=88c4cde7-3244-453d-bf2a-d28d836b2527 ro quiet
[  4203.005] Build Date: 27 October 2015  11:41:02PM
[  4203.005] xorg-server 2:1.17.3-2 (http://www.debian.org/support) 
[  4203.005] Current version of pixman: 0.33.4
[  4203.006] 	Before reporting problems, check http://wiki.x.org
	to make sure that you have the latest version.
[  4203.006] Markers: (--) probed, (**) from config file, (==) default setting,
	(++) from command line, (!!) notice, (II) informational,
	(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[  4203.007] (==) Log file: "/home/draco/.local/share/xorg/Xorg.1.log", Time: Mon Nov 30 01:41:43 2015
[  4203.008] (==) Using config file: "/etc/X11/xorg.conf"
[  4203.008] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
[  4203.009] (==) ServerLayout "X.org Configured"
[  4203.009] (**) |-->Screen "Screen0" (0)
[  4203.009] (**) |   |-->Monitor "DVI-1"
[  4203.009] (**) |   |-->Device "Card1"
[  4203.009] (**) |-->Input Device "Mouse0"
[  4203.009] (**) |-->Input Device "Keyboard0"
[  4203.009] (==) Automatically adding devices
[  4203.009] (==) Automatically enabling devices
[  4203.009] (==) Automatically adding GPU devices
[  4203.009] (WW) The directory "/usr/share/fonts/X11/cyrillic" does not exist.
[  4203.009] 	Entry deleted from font path.
[  4203.009] (WW) The directory "/usr/share/fonts/X11/cyrillic" does not exist.
[  4203.009] 	Entry deleted from font path.
[  4203.009] (**) FontPath set to:
	/usr/share/fonts/X11/misc,
	/usr/share/fonts/X11/100dpi/:unscaled,
	/usr/share/fonts/X11/75dpi/:unscaled,
	/usr/share/fonts/X11/Type1,
	/usr/share/fonts/X11/100dpi,
	/usr/share/fonts/X11/75dpi,
	built-ins,
	/usr/share/fonts/X11/misc,
	/usr/share/fonts/X11/100dpi/:unscaled,
	/usr/share/fonts/X11/75dpi/:unscaled,
	/usr/share/fonts/X11/Type1,
	/usr/share/fonts/X11/100dpi,
	/usr/share/fonts/X11/75dpi,
	built-ins
[  4203.009] (**) ModulePath set to "/usr/lib/xorg/modules"
[  4203.009] (WW) Hotplugging is on, devices using drivers 'kbd', 'mouse' or 'vmmouse' will be disabled.
[  4203.009] (WW) Disabling Mouse0
[  4203.009] (WW) Disabling Keyboard0
[  4203.009] (II) Loader magic: 0x562a849f7de0
[  4203.009] (II) Module ABI versions:
[  4203.009] 	X.Org ANSI C Emulation: 0.4
[  4203.009] 	X.Org Video Driver: 19.0
[  4203.009] 	X.Org XInput driver : 21.0
[  4203.009] 	X.Org Server Extension : 9.0
[  4203.010] (EE) systemd-logind: failed to get session: Rejected send message, 1 matched rules; type="method_call", sender=":1.34" (uid=1000 pid=18022 comm="/usr/lib/xorg/Xorg -nolisten tcp :1 vt2 -keeptty -") interface="org.freedesktop.login1.Manager" member="GetSessionByPID" error name="(unset)" requested_reply="0" destination="org.freedesktop.login1" (uid=0 pid=5989 comm="/lib/systemd/systemd-logind ")
[  4203.010] (II) xfree86: Adding drm device (/dev/dri/card0)
[  4203.012] (--) PCI: (0:1:5:0) 1002:9616:1849:9616 rev 0, Mem @ 0xc000/268435456, 0xfe8f/65536, 0xfe70/1048576, I/O @ 0xa000/256
[  4203.012] (--) PCI:*(0:2:0:0) 1002:679a:174b:a003 rev 0, Mem @ 0xd000/268435456, 0xfe9c/262144, I/O @ 0xb000/256, BIOS @ 0x/131072
[  4203.012] (II) "glx" will be loaded. This was enabled by default and also specified in the config file.
[  4203.012] (II) LoadModule: "ddc"
[  4203.012] (II) Module "ddc" already built-in
[  4203.012] (II) LoadModule: "dri"
[  4203.012] (II) Module "dri" already built-in
[  4203.012] (II) LoadModule: "dri2"
[  4203.012] (II) Module "dri2" already built-in
[  4203.012] (II) LoadModule: "extmod"
[  4203.012] (II) Module "extmod" already built-in
[  4203.012] (II) LoadModule: "glx"
[  4203.012] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
[  4203.013] (II) Module glx: vendor="X.Org Foundation"
[  4203.013] 	compiled for 1.17.3, module version = 1.0.0
[  4203.013] 	ABI class: X.Org Server Extension, version 9.0
[  4203.013] (==) AIGLX enabled
[  4203.013] (II) LoadModule: "int10"
[  4203.013] (II) Loading /usr/lib/xorg/modules/libint10.so
[  4203.013] (II) Module int10: vendor="X.Org Foundation"
[  4203.013] 	compiled for 1.17.3, module version = 1.0.0
[  4203.013] 	ABI class: X.Org Video Driver, version 19.0
[  4203.013] (II) LoadModule: "vbe"
[  4203.013] (II) Loading /usr/lib/xorg/modules/libvbe.so
[

Re: Re: Re: jessie installation problem on arm sheevaplug

2015-05-18 Thread Rodrigo Valiña Gutiérrez
>> But now the installer fails in the "Install the base system" step,
>> saying: "No installable kernel was found in the defined APT sources"...
>> when the last time I tested with changed machid and original uImage it
>> worked with the same sources.
>
>What does /var/log/syslog say when this happens?

I managed to complete the installation by continuing without a kernel
and when the
'make the system bootable' step failed, go to a shell and exec
'apt-install linux-image-kirkwood', and then rerun the 'make the
system bootable' step.
It seems to complete well the installation.
Although I changed in /etc/initramfs-tools/initramfs.conf:
MODULES=most -> MODULES=dep,
because by default the installer chooses 'targeted' but when I
installed the kernel
it seems it chosed 'generic' initramfs. (both options booted ok).

The relevant part of /var/log/installer/syslog seems to be this:

May 17 15:18:57 in-target: Generating locales (this might take a while)...^M
May 17 15:18:57 in-target: Generation complete.
May 17 15:18:57 in-target: ^M
May 17 15:19:01 localechooser: Adding locale 'en_US.UTF-8'
May 17 15:19:01 localechooser: Generating added locales...
May 17 15:19:13 base-installer: info: could not determine kernel flavour
May 17 15:19:13 base-installer: info: could not determine kernel flavour
May 17 15:19:13 base-installer: info: could not determine kernel flavour
May 17 15:19:13 base-installer: info: could not determine kernel flavour
May 17 15:19:13 base-installer: info: could not determine kernel flavour
May 17 15:19:13 base-installer: info: could not determine kernel flavour
May 17 15:19:13 base-installer: info: could not determine kernel flavour
May 17 15:19:13 base-installer: info: could not determine kernel flavour
May 17 15:19:13 base-installer: info: Found kernels ''
May 17 17:59:53 base-installer: info: Not installing any kernel
May 17 17:59:53 base-installer: info: Installing queued packages into /target/.
May 17 17:59:55 in-target: Reading package lists...
May 17 17:59:55 in-target:


Re: Re: jessie installation problem on arm sheevaplug

2015-05-17 Thread Rodrigo Valiña Gutiérrez
>Does this boot?
>
>This is how I prepare the image:
>
>wget 
>http://ftp.debian.org/debian/dists/jessie/main/installer-armel/current/images/kirkwood/device-tree/kirkwood-sheevaplug.dtb
>wget 
>http://ftp.debian.org/debian/dists/jessie/main/installer-armel/current/images/kirkwood/netboot/marvell/sheevaplug/uImage
># Remove the u-boot header
>dd if=uImage of=kernel.without bs=1 skip=64
>rm -f uImage
># Append device tree
>cat kirkwood-sheevaplug.dtb >> kernel.without
># Create new uImage
>sudo apt-get install u-boot-tools
>mkimage -A arm -O linux -T kernel -C none -a 0x8000 -e 0x8000 -n 
>"Debian kernel" -d kernel.without uImage

Thanks Martin...
I have tested this way of preparation of the image and it booted well
(no need to set machid).

But now the installer fails in the "Install the base system" step,
saying: "No installable kernel was found in the defined APT sources"...
when the last time I tested with changed machid and original uImage it
worked with the same sources.

May be needed to set mainlineLinux or arcNumber environment variables?
I do not have them set currently.


Re: Re: jessie installation problem on arm sheevaplug

2015-05-16 Thread Rodrigo Valiña Gutiérrez
I am not an expert...

The workaround just worked, but I don't know whether "0692
Marvell RD-88F6281 Reference Board"
is a valid machid for the sheevaplug, instead of the 'original' 0831.

At the beggining it worked, but now I have a problem: the sheevaplug
ethernet subsystem does not work well...
It does not get an IP by DHCP and assigning a static one does not work either...
I suspect that is caused by the workaround but I don't know.

So I do not recommend doing the procedure/workaround of changing machid,
as it may be unsafe and I warn thay may damage the hardware.

I hope Martin's solution will work... Where will you post the kernel image?


Re: jessie installation problem on arm sheevaplug

2015-05-16 Thread Rodrigo Valiña Gutiérrez
I had the same problem installing Debian 8 'Jessie' on a SheevaPlug.

I solved it temporarily by doing the following:

- In u-boot:

setenv machid 0692
saveenv

- Then install normally. The 'make the system bootable' phase will fail
because flash-kernel fails:
 /var/log/installer/syslog:
May 16 13:47:28 in-target: Setting up u-boot-tools (2014.10+dfsg1-5) ...^M
4-kirkwood
May 16 13:47:46 in-target: Unsupported platform.
May 16 13:47:46 flash-kernel-installer: error: flash-kernel failed
May 16 13:47:46 main-menu[170]: WARNING **: Configuring
'flash-kernel-installer' failed with error code 1
May 16 13:47:46 main-menu[170]: WARNING **: Menu item
'flash-kernel-installer' failed.


- Then select 'execute a shell' and write:

cd /target/boot/
/target/usr/bin/mkimage -A arm -O linux -T kernel  -C none -n uImage  -a
0x8000 -e 0x8000 -d vmlinuz uImage
/target/usr/bin/mkimage -A arm -O linux -T ramdisk -C none -n
uInitrd -d initrd.img  uInitrd

- It may be neccesary to change 0x8000 to 0x0080 in both cases, but
in my case it worked the way above.
- Then 'exit' the shell and select 'continue without boot loader'.
- I think that this last phase of mkimage should be repeated on every
kernel upgrade because I think flash-kernel (which calls mkimage) will fail
again.


Re: Another less woe

2013-05-14 Thread Rodrigo S. Cañibano
With less 456,  on jessie/sid, I have no problems. My cpu is an amd c50.

What arch are you using?


2013/5/13 Mike Castle 

> Darn.
>
> It happened to me on three different machines.  Though they're all the
> same arch.
>
> mrc
>
>
> --
> To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org
> with a subject of "unsubscribe". Trouble? Contact
> listmas...@lists.debian.org
> Archive:
> http://lists.debian.org/ca+t9imxysjq7p6woef2sx736q38ubofwaymiodoq_t8rxds...@mail.gmail.com
>
>


Re: Man Hates Less

2013-05-07 Thread Rodrigo S. Cañibano
On Tue, 7 May 2013 19:23:39 -0400 (EDT)
Stephen Powell  wrote:

>
> Was it your intention to upgrade from Wheezy to Jessie?  If not, then
> I'm guessing that you are using "testing" rather than "wheezy" in
> /etc/apt/sources.list.  This is a perfect example of why you should
> always use a release code name, not a status, in /etc/apt/sources.list.
> Wheezy is no longer the testing release.  It is now the stable release.
> Jessie is the new testing release.  I intentionally did an upgrade from
> Wheezy to Jessie, but when I saw that "aptitude full-upgrade" intended
> to delete less, I aborted it and did an "aptitude safe-upgrade" instead.
> You obviously gave it permission to delete less.  You should pay closer
> attention to what you give it permission to do.  Given that you did,
> your options are limited.  Wait for less to be upgraded to a new release
> that is compatible with man-db, if possible.

You are right! I left a "testing" on my source list.

Now I have to pay for my mistakes.

Thanks everyone for your quick answers.

---
Draco Metallium


Man Hates Less

2013-05-07 Thread Rodrigo S. Cañibano
Last night I did a dist-upgrade of my wheezy debian, today I woke up
without "less". I tried to install it via "apt-get install less" but it
removes both man-db and debhelper.

Does anyone know why is that? I am alone here?

Should I panic?

Thank  a lot!

---
Draco Metallium.


Driver Network Dell PowerEdge R720

2013-03-01 Thread rodrigo tavares
Hello,

I made a download debian-6.0.7-amd64-netinst.iso.
I have Dell Power EDGE, when I go to install debian, it not detect a driver 
network.
I put broadcom but fail.

What Is happening ?

Rodrigo Faria    

Debian 7

2013-02-21 Thread rodrigo tavares
Hello,

When Debian 7 is stable ?
I read this version have packages more recent.
I want install mail server. 

Is anybody installing the debian version 7 ?

Atenciosamente,

Rodrigo Faria Tavares

SMTP server does not support authentication

2013-02-06 Thread rodrigo tavares
Hello !

I try sent a email via web, come this errors.
I searched for many sites, but i not found

I have postfix, cyrus and LDAP included.


# When sent mail for firefox

Auhentication failure [SMTP: SMTP server does not support authentication
(code: 250, response: def.com PIPELINING SIZE 20971520 VRFY ETRN ENHANCEDS

#Logs Cyrus.

Feb  6 15:41:07 defensoria cyrus/imap[1324]: fetching user_deny.db entry for 
'user^jim'
Feb  6 15:41:07 defensoria cyrus/imap[1324]: open: user user^jim opened INBOX
Feb  6 15:41:07 defensoria cyrus/imap[1324]: fetching user_deny.db entry for 
'user^jim'
Feb  6 15:41:07 defensoria cyrus/imap[1324]: fetching user_deny.db entry for 
'user^jim'
Feb  6 15:41:07 defensoria cyrus/imap[1324]: USAGE user^jim user: 0.00 sys: 
0.00

Any Idea ?

Rodrigo Tavares


passdb backen

2013-01-22 Thread rodrigo tavares
Hi,

Can I have two passdb backend in my smb.conf ?

Thanks !
Rodrigo Faria

ldap users with users samba.

2013-01-18 Thread rodrigo tavares
Hello !

I trying sync ldap users with users samba.

I´m using a interface, by create ldap users.

So, when ldap user be created, i want account e password samba be created. 



No my smb.conf I put the follow lines:

    ldap admin dn = cn=admin,dc=def,dc=mg,dc=gov,dc=br
    ldap group suffix = ou = groups
    ldap machine suffix = ou = computers
    ldap passwd sync = yes
    encrypt passwords = Yes
    ldap suffix = dc=def,dc=mg,dc=gov,dc=br
    ldap ssl = no
    ldap user suffix = ou = defensory
    smb ports = 445 139

    add user script = /usr/sbin/smbldap-useradd -a -m "%u"
    add group script = /usr/sbin/smbldap-groupadd -p "%g"
    add user to group script = /usr/sbin/smbldap-groupmod -m "%u" "%g"
    delete user from group script = /usr/sbin/smbldap-groupmod -x "%u" "%g"
    set primary group script = /usr/sbin/smbldap-usermod -g "%g" "%u"
    add machine script = /usr/sbin/smbldap-useradd -w "%u"
    passwd program = /usr/sbin/smbldap-passwd -s "%u"
    passdb backend = ldapsam:ldap://10.65.8.95
    passdb backend = tdbsam
    hosts allow = 127.0.0.1, 10.65.8.0/255.255.252.0
    pam password change = yes
    passwd program = /usr/bin/passwd %u

I make a configure in  sladp.conf:

include    /etc/ldap/schema/ppolicy.schema

moduleload  ppolicy.so
overlay ppolicy
access to 
attrs=userPassword,shadowLastChange,sambaPwdMustChange,sambaLMPassword,sambaPwdLastSet,sambaNTPassword
    by dn="cn=admin,dc=def,dc=mg,dc=gov,dc=br" write
    by anonymous auth
    by self write
    by * none

The user ldap is done, but samba user is not created.

See some logs:

Jan 18 16:09:01 defensoria slapd[6210]: conn=2455 fd=50 ACCEPT from 
IP=10.65.8.95:54507 (IP=0.0.0.0:389)

So its bad.


root@replica:/etc/ldap# smbclient -L 10.65.8.95 -U xbox
Enter xbox's password:
session setup failed: NT_STATUS_LOGON_FAILURE

Thanks !

Rodrigo Faria Tavares


Using wheezy or squeeze.

2013-01-08 Thread rodrigo tavares
People,

I have used debian 6.0 squezze, and some packages is old, since the wheezy, 
have a packages new version.
I need to install a mail server with potfix, LDAP, e Cyrus IMAP. I want install 
version Cyrus 2.4, is in squeeze is 2.2. 


Can I to trust in Wheeezy  ?

Rodrigo Faria

Using Debian wheezy

2012-10-29 Thread rodrigo tavares
Hello,

I'm using Debian 6;0 Squezze, in my mail server, so I need to cyrus-2.4, but in 
repository 

come only cyrus-2.2. So I comment my sources.list, and add reposotory  wheezy. 
So I run apt-get update, and i got installed cryus-2.4.


I read the version testing come more new recentes packages.


My doubt,is relatve a security, Can I cant to trust in wheezy ?
My server is using postfix, ldap, cryus-imao, postgres, apache2.

Best regards,

Rodrigo Faria

X in uml?

2009-12-23 Thread Rodrigo Baroni
Hello everybody

  Does anybody know how to run X inside of user mode linux (not Xnest or
similars)?

Rodrigo


Re: samba - smb.conf

2009-03-12 Thread Rodrigo Hashimoto
Hello Roberto,

That's right, I only get a new "smb.conf" after reinstall the
"samba-common" instead of "samba".

Thanks a lot.


On Thu, 2009-03-12 at 23:07 +, Roberto D'Oliveira wrote:

> 2009/3/12 Rodrigo Hashimoto :
> > Hello guys,
> >
> > I have two questions, the first one is how to generate a new "smb.conf" ??
> >
> > And the second question is regarding the aptitude on Debian Lenny. I tried
> > to removed the samba with "dpkg -r samba" and reinstall it with "aptitude
> > install samba" to check if I get a new "smb.conf". However I noticed the
> > command "dpkg -r samba" didn't remove all the samba files. So how can I
> > remove completely a package like samba ?
> >
> > Thanks.
> 
> The package that contains /etc/samba/smb.conf is "samba-common"
> 


Linux OS joining a domain like win ?

2009-03-12 Thread Rodrigo Hashimoto
Hello,

Is possible to a linux OS join a domain like a windows xp OS ?

I have the samba as DC for Windows XP machines, but for Linux OS, is it
possible too?

thanks


samba - smb.conf

2009-03-11 Thread Rodrigo Hashimoto
Hello guys,

I have two questions, the first one is how to generate a new
"smb.conf" ??

And the second question is regarding the aptitude on Debian Lenny. I
tried to removed the samba with "dpkg -r samba" and reinstall it with
"aptitude install samba" to check if I get a new "smb.conf". However I
noticed the command "dpkg -r samba" didn't remove all the samba files.
So how can I remove completely a package like samba ?

Thanks.


OpenLDAP stuff ??

2009-03-10 Thread Rodrigo Hashimoto
Hello,

I wanna study openldap but I didn't find any cool tutorial or site to
study it, does anyone has something or know any site ?

Thanks


Transparent backgroun on yakuake ??

2009-03-10 Thread Rodrigo Hashimoto
Hello,

I'm using Debian Lenny with compiz-fusion and yakuake, but I couldn't
set transparent background, could anyone help me ?

Thanks


Re: motorola a1200 couldn't be mounted on Debian

2009-03-03 Thread Rodrigo Hashimoto
Hi,

I just compiled the kernel 2.6.28.7 and now I can mount the mobile
phone, but now even when I dismount it the mobile phone keeps in USB
MODE, then I'm forced to turn it off to unplug the usb cable.

Any idea ?

On Mon, 2009-03-02 at 12:31 +, Virgo Pärna wrote:

> On Sun, 01 Mar 2009 16:24:57 -0300, Rodrigo Hashimoto  
> wrote:
> >
> > It was recognized as "sdd1" but it looks like there was an error "Medium
> > Error [current]".
> >
> > Any suggestion please ?
> >
> 
> Check http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=501935 and the
> udev configuration change in 
> https://bugzilla.redhat.com/attachment.cgi?id=161117
> If it does help, then you should add your comment too. 
> That issue is basically about broken Nokia, Motorola, Nikon and Pentax
> devices, that report invalid sector count (+1 sectors).
> 
> -- 
> Virgo Pärna 
> virgo.pa...@mail.ee
> 
> 


Re: Debian needs ENTER to continue boot process

2009-03-03 Thread Rodrigo Hashimoto
Just to complement,

I must press the ENTER key for many times, or the POWER KEY only once,
it worked as well but I pressed it only once and the boot continue fine.

Thanks


On Mon, 2009-03-02 at 20:26 -0300, Rodrigo Hashimoto wrote:

> Hey there,
> 
> Something very weird is happening in my OS. I just compiled the kernel
> 2.6.28.7 and to boot my machine I need to press ENTER many times
> during the boot process. I've never seen anything similar to this
> issue.
> 
> It's like to run the command: 
> 
> # cat /var/log/messages|less
> 
> Then you can press ENTER to see the next line, right ? So, that's it
> what is happening during the boot process.
> 
> Does anyone have any idea ??
> 
> Thanks in advance.
> 


Debian needs ENTER to continue boot process

2009-03-02 Thread Rodrigo Hashimoto
Hey there,

Something very weird is happening in my OS. I just compiled the kernel
2.6.28.7 and to boot my machine I need to press ENTER many times during
the boot process. I've never seen anything similar to this issue.

It's like to run the command: 

# cat /var/log/messages|less

Then you can press ENTER to see the next line, right ? So, that's it
what is happening during the boot process.

Does anyone have any idea ??

Thanks in advance.



Re: motorola a1200 couldn't be mounted on Debian

2009-03-01 Thread Rodrigo Hashimoto
Guys,

Just to complement. Take a look at the message found on "messages" log
file.

Mar  1 15:51:26 debian-lap kernel: [10749.619200]  sdd: sdd1
Mar  1 15:51:26 debian-lap kernel: [10749.650527] sd 6:0:0:0: [sdd]
Attached SCSI disk
Mar  1 15:51:26 debian-lap kernel: [10750.041118] sd 6:0:0:0: [sdd]
Result: hostbyte=DID_OK driverbyte=DRIVER_SENSE,SUGGEST_OK
Mar  1 15:51:26 debian-lap kernel: [10750.041128] sd 6:0:0:0: [sdd]
Sense Key : Medium Error [current]
Mar  1 15:51:26 debian-lap kernel: [10750.041138] sd 6:0:0:0: [sdd] Add.
Sense: No additional sense information
Mar  1 15:54:26 debian-lap kernel: [10929.939883] sd 6:0:0:0: [sdd]
Result: hostbyte=DID_OK driverbyte=DRIVER_SENSE,SUGGEST_OK
Mar  1 15:54:26 debian-lap kernel: [10929.939893] sd 6:0:0:0: [sdd]
Sense Key : Medium Error [current]
Mar  1 15:54:26 debian-lap kernel: [10929.939904] sd 6:0:0:0: [sdd] Add.
Sense: No additional sense information


It was recognized as "sdd1" but it looks like there was an error "Medium
Error [current]".

Any suggestion please ?

Thanks in advance.


On Sun, 2009-03-01 at 16:16 -0300, Rodrigo Hashimoto wrote:

> Hi there,
> 
> I'm trying to mount the mobile phone motorola 1200 but I couldn't.
> It's recognize by the system (Debian Lenny) but it can't mount it. I
> get the error "mount: you must specify the filesystem type", but I
> already tried to specify it with the "-t" flag.
> 
> Any suggestion pls ?
> 
> Thanks.


Re: Duvida

2009-03-01 Thread Rodrigo Hashimoto
It looks like the problem happens after the system installation.

Cristiano,

Cole aqui o erro que vc encontrou, assim fica mais fácil ajudá-lo, ok ?



On Sat, 2009-02-28 at 14:23 +0100, Sjors Gielen wrote:

> Cristiano Lima schreef:
> > Quando estou instalando o debian 5.0 e entro na parte em que tenho que 
> > particionar o HD faço todos os procedimentos para instalação dai mando 
> > Finalizar e gravar no HD ele começa a faze-lo e logo depois aparece uma 
> > mensagem que no # 1 falhou. Daí volta tudo de novo e dá o mesmo erro e 
> > já troquei de HD.
> > Obrigado!
> > 
> 
> This is an english list.
> 
> Google Translator says:
> 
>When I'm installing the debian 5.0 and come in so I have to partition
>the HD to do all the installation finish and then send the record HD
>it starts to do it and then see a message in that # 1 failed. It
>returns everything back and get the same error and I swapped the HD.
>Thank you!
> 
> Could you be a little more verbose? What errors do you get?
> 
> Sjors
> 
> 


motorola a1200 couldn't be mounted on Debian

2009-03-01 Thread Rodrigo Hashimoto
Hi there,

I'm trying to mount the mobile phone motorola 1200 but I couldn't. It's
recognize by the system (Debian Lenny) but it can't mount it. I get the
error "mount: you must specify the filesystem type", but I already tried
to specify it with the "-t" flag.

Any suggestion pls ?

Thanks.


Re: Virtual box - guest with transparent background

2009-02-26 Thread Rodrigo Hashimoto
No I haven't, but it's fixed for now. But I still trying to figure out
what happened and I'll post here.

Bypass ??  I just removed some recent packages, probably the one caused
this issue was cairo-dock, I loved this tools, this is simply amazing
but I don't know why it affected my virtual machines graphics.

I'll install it again to figure out where specifically happened the
issue.

Thanks.


On Thu, 2009-02-26 at 20:34 -0500, Daryl Styrk wrote:

> Rodrigo Hashimoto wrote:
> > Hello, 
> > 
> > Anyone ?  Any other idea ?
> > 
> 
> Have you went and installed the guest add-on's? Even for my Linux 
> hosting Linux, the add-on's were needed to display the VM's correctly.
> 
> 


Re: Virtual box - guest with transparent background

2009-02-26 Thread Rodrigo Hashimoto
Hello, 

Anyone ?  Any other idea ?

Thanks.


On Sun, 2009-02-22 at 21:41 -0300, Rodrigo Hashimoto wrote:

> Hi there,
> 
> I have two guest hosts, one Debian and one Windows, and both of them
> have the background transparent, I have no idea what happened.
> 
> It's like the transparent terminal with compiz-fusion.
> 
> If anyone has any idea please post it.
> 
> Thanks a lot.
> 
> Bye.


Virtual box - guest with transparent background

2009-02-22 Thread Rodrigo Hashimoto
Hi there,

I have two guest hosts, one Debian and one Windows, and both of them have
the background transparent, I have no idea what happened.

It's like the transparent terminal with compiz-fusion.

If anyone has any idea please post it.

Thanks a lot.

Bye.


Re: Packardell with usb problems

2009-02-19 Thread Rodrigo Valenzuela
On Thursday 19 February 2009 03:06:44 consultores1 wrote:
> On February 18, 2009 11:58:04 am Rodrigo Valenzuela wrote:
> > On Wednesday 18 February 2009 14:51:31 Javier wrote:
> > > irqfixup
> >
> > thanks for the tip but it it won't work for me :(
> >
> > sadly but it seems i've got no choice but to choose between
> > wireless or usb
> >
> > Rodrigo
>
> Have you tried suspending the BIOS plug and play.


did my best on the BIOS config but it's the first time I see a BIOS 
config with just a few options,needless to say there's no option for 
that. On the other hand, I'll try with pnpbios=off

thx


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Re: Packardell with usb problems

2009-02-18 Thread Rodrigo Valenzuela
On Wednesday 18 February 2009 14:51:31 Javier wrote:
> irqfixup

thanks for the tip but it it won't work for me :(

sadly but it seems i've got no choice but to choose between wireless or 
usb

Rodrigo


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Re: USB Wireless Adapter for Linux?

2009-02-18 Thread Rodrigo Valenzuela
On Wednesday 18 February 2009 11:29:36 Dave Ewart wrote:
> On Wednesday, 18.02.2009 at 08:49 -0500, Thomas H. George wrote:
> > Are there usb wireless adapters known to work well with Linux?
>
Ralink, Atheros, Intel Prowireless 2200 and 3945 and bunch more
> I've used two Edimax adapters without issue: they just work.
>
> Dave.



-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Packardell with usb problems

2009-02-18 Thread Rodrigo Valenzuela
Hi


First of all, I own a notebook PackardBell PackMate 1400 with Debian 
unstable, teste with with kernel 2.6.18 , 2.6.25 y 2.6.28. 

The problem is very simple yet I have found no solution whatsoever

When booting any of the above mentioned kernels with no parameters 
everything works just fine but the USB devices, which simply I can't 
get to work, for example. usb mouse hardly hardly moving and pendrives 
don't get recognized. At this point no messages appear on dmesg showing 
new plugged usb devices.

Some of the possibly reasons ( greom dmesg)

[0.203882] ACPI: PCI Interrupt Link [ALKA] (IRQs 20) *0, disabled.
[0.204063] ACPI: PCI Interrupt Link [ALKB] (IRQs 23) *11
[0.204306] ACPI: PCI Interrupt Link [ALKC] (IRQs 22) *5, disabled.
[0.204408] ACPI Warning (nspredef-0852): \_SB_.PCI0.ALKD._CRS: 
Return type mismatch - found Integer, expected Buffer [20080926]
[0.204420] ACPI Error (uteval-0289): Return object type is incorrect 
[\_SB_.PCI0.ALKD._CRS] (Node f70749f0), AE_TYPE
[0.204434] ACPI Error (uteval-0295): Type returned from _CRS was 
incorrect: Integer, expected Btypes: 4 [20080926]
[0.20] ACPI Exception (pci_link-0291): AE_TYPE, Evaluating _CRS 
[20080926]

and USB ...

[2.081608] ACPI Error (uteval-0289): Return object type is incorrect 
[\_SB_.PCI0.ALKD._CRS] (Node f70749f0), AE_TYPE
[2.086559] ACPI Error (uteval-0295): Type returned from _CRS was 
incorrect: Integer, expected Btypes: 4 [20080926]
[2.091694] ACPI Exception (pci_link-0291): AE_TYPE, Evaluating _CRS 
[20080926]
[2.094354] ACPI: Unable to set IRQ for PCI Interrupt Link [ALKD]. 
Try pci=noacpi or acpi=off
[2.097049] ACPI: Invalid IRQ link routing entry
[2.099786] uhci_hcd :00:10.0: can't derive routing for PCI INT A
[2.102613] uhci_hcd :00:10.0: PCI INT A: no GSI - using IRQ 11
[2.105517] uhci_hcd :00:10.0: UHCI Host Controller
[2.108414] uhci_hcd :00:10.0: new USB bus registered, assigned 
bus number 1
[2.111312] uhci_hcd :00:10.0: irq 11, io base 0x1200

I've tried acpi=off, pci=noacpi and acpi=off, but with no success

With some of this combos I can get the USB devices to work BUT in this 
case the kernel can't assign an IRQ to the wireless card

I've googled but found nothing about this, except some information about 
buggy BIOSes

Anyone with any useful link or resource about this very annoying 
problem?

TIA

Here's is the dmesg output

http://www.tiv.cl/dmesg


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



testdisk tool seems found a bad sector, is it ??

2009-02-02 Thread Rodrigo Hashimoto
Hi there,

Please I'd like to confirm if it's really a bad news.

I ran testdisk tool on my external disk and it seems there's a bad sector,
look:

---
*TestDisk 6.9, Data Recovery Utility, February 2008
Christophe GRENIER 
http://www.cgsecurity.org

Disk /dev/sdb - 500 GB / 465 GiB - CHS 60801 255 63
Current partition structure:
 Partition  StartEndSize in sectors

 1 P FAT32 LBA0   1  1 60800 254 63  976768002 [My Passport]

Bad sector count.**
No partition is bootable










*=Primary bootable  P=Primary  L=Logical  E=Extended  D=Deleted
[Quick Search]  [ Backup ]
Try to locate partition*
---

Am I right ??  Is there a bad sector ?

Thanks.


-- 
Rodrigo Hashimoto

"...Ser feliz não é ter uma vida perfeita, sem dor e sem lágrimas; mas saber
usar as lágrimas para regar a esperança e a alegria de viver..."

"...Ser feliz é ser como a raiz da árvore que passa a vida toda escondida
para poder sustenta-la. Ser feliz é não deixar que a tristeza apague o seu
sorriso; é não permitir que o rancor elimine o perdão; que as decepções
eliminem a confiança; que o fracasso vença o desejo da vitória; que os erros
vençam os acertos; que a ingratidão te faça parar de ajudar; que a velhice
elimine em você o animo da juventude; que a mentira sufoque a verdade..."

"...Ser feliz é não precisar ficar se justificando; pois os amigos não
precisam de explicações e os inimigos não acreditam nelas..."

"... Ser feliz é amar a Deus e ao próximo..." - (Prof. Felipe Aquino)


Re: Resizing vfat partition with fdisk ??

2009-01-31 Thread Rodrigo Hashimoto
On Fri, Jan 30, 2009 at 7:30 PM, Adrian Levi  wrote:

> 2009/1/31 Rodrigo Hashimoto :
> > Hi there,
> >
> > I have some troubles while resizing my vfat partition with fdisk. First
> it
> > was strange because in fdisk the partitions were fine as following:
>
> Is there data on the disc that you are intending on keeping or are you
> just wanting to end up with 2 partitions of particular sizes?


Yes, there's data but if I loose it no problem, I'm using my usb flash drive
to test this partition resize.

>
>
> > But the system was recognizing a different size like:
> >
> > -
> > debian-lap:~# df -h /dev/sdb1 /dev/sdb2
> > FilesystemSize  Used Avail Use% Mounted on
> > /dev/sdb1 3.8G  395M  3.4G  11% /media/disk
> > /dev/sdb2 3.0G  4.0K  3.0G   1% /mnt/flash
> > debian-lap:~#
> > -
>
> After you finished fdisk, did fdisk tell you that it was using the new
> or old partition table and to reboot?
> If this is a USB disc then instead of rebooting you can unplug and replug.
>

Yes, it's a USB disc and I tried to unplug and replug.

>
> Adrian
>
> --
> 24x7x365 != 24x7x52 Stupid or bad maths?
>  hm. I've lost a machine.. literally _lost_. it responds to
> ping, it works completely, I just can't figure out where in my
> apartment it is.
>
>
> --
> To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org
> with a subject of "unsubscribe". Trouble? Contact
> listmas...@lists.debian.org
>
>

Thanks,


-- 
Rodrigo Hashimoto

"...Ser feliz não é ter uma vida perfeita, sem dor e sem lágrimas; mas saber
usar as lágrimas para regar a esperança e a alegria de viver..."

"...Ser feliz é ser como a raiz da árvore que passa a vida toda escondida
para poder sustenta-la. Ser feliz é não deixar que a tristeza apague o seu
sorriso; é não permitir que o rancor elimine o perdão; que as decepções
eliminem a confiança; que o fracasso vença o desejo da vitória; que os erros
vençam os acertos; que a ingratidão te faça parar de ajudar; que a velhice
elimine em você o animo da juventude; que a mentira sufoque a verdade..."

"...Ser feliz é não precisar ficar se justificando; pois os amigos não
precisam de explicações e os inimigos não acreditam nelas..."

"... Ser feliz é amar a Deus e ao próximo..." - (Prof. Felipe Aquino)


Resizing vfat partition with fdisk ??

2009-01-30 Thread Rodrigo Hashimoto
Hi there,

I have some troubles while resizing my vfat partition with fdisk. First it
was strange because in fdisk the partitions were fine as following:

-
*debian-lap:~# fdisk -l /dev/sdb

Disk /dev/sdb: 4022 MB, 4022337536 bytes
29 heads, 28 sectors/track, 9675 cylinders
Units = cylinders of 812 * 512 = 415744 bytes
Disk identifier: 0x04030201

   Device Boot  Start End  Blocks   Id  System
/dev/sdb1   11928  782754b  W95 FAT32
/dev/sdb219299675 3145282b  W95 FAT32
debian-lap:~#

debian-lap:~# fdisk -l /dev/sdb1

Disk /dev/sdb1: 801 MB, 801540096 bytes
29 heads, 28 sectors/track, 1927 cylinders
Units = cylinders of 812 * 512 = 415744 bytes
Disk identifier: 0x

 Device Boot  Start End  Blocks   Id  System
debian-lap:~#

debian-lap:~# fdisk -l /dev/sdb2

Disk /dev/sdb2: 3220 MB, 3220768768 bytes
29 heads, 28 sectors/track, 7747 cylinders
Units = cylinders of 812 * 512 = 415744 bytes
Disk identifier: 0x

 Device Boot  Start End  Blocks   Id  System
debian-lap:~# *
-

But the system was recognizing a different size like:

-
*debian-lap:~# df -h /dev/sdb1 /dev/sdb2
FilesystemSize  Used Avail Use% Mounted on
/dev/sdb1 3.8G  395M  3.4G  11% /media/disk
/dev/sdb2 3.0G  4.0K  3.0G   1% /mnt/flash
debian-lap:~# *
-

After I tried to fix it using the gparted (but my goal is to do that using
fdisk tool) and now the number of cylinders seems decreased from 9675 to
489, look:

-
*debian-lap:~# fdisk -l /dev/sdb

Disk /dev/sdb: 4022 MB, 4022337536 bytes
255 heads, 63 sectors/track, 489 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Disk identifier: 0x04030201

   Device Boot  Start End  Blocks   Id  System
/dev/sdb1   *   1 489 3927861b  W95 FAT32
debian-lap:~# *
-

Any idea ?

Thanks.


-- 
Rodrigo Hashimoto

"...Ser feliz não é ter uma vida perfeita, sem dor e sem lágrimas; mas saber
usar as lágrimas para regar a esperança e a alegria de viver..."

"...Ser feliz é ser como a raiz da árvore que passa a vida toda escondida
para poder sustenta-la. Ser feliz é não deixar que a tristeza apague o seu
sorriso; é não permitir que o rancor elimine o perdão; que as decepções
eliminem a confiança; que o fracasso vença o desejo da vitória; que os erros
vençam os acertos; que a ingratidão te faça parar de ajudar; que a velhice
elimine em você o animo da juventude; que a mentira sufoque a verdade..."

"...Ser feliz é não precisar ficar se justificando; pois os amigos não
precisam de explicações e os inimigos não acreditam nelas..."

"... Ser feliz é amar a Deus e ao próximo..." - (Prof. Felipe Aquino)


Re: Problem with file perms

2008-11-06 Thread Rodrigo Cosme
Well, if the problem happens again I'll try that. For now I couldn't help
but use the good and old reinstall. But thanks to you all for the help.

On Wed, Nov 5, 2008 at 7:47 PM, Boyd Stephen Smith Jr. <[EMAIL PROTECTED]
> wrote:

> On Tuesday 04 November 2008, "Rodrigo Cosme" <[EMAIL PROTECTED]> wrote
> about 'Problem with file perms':
> > Executing "ls -l" inside
> > /var/run I get:
> >
> >?- ? ? ? ?  ? klogd.pid
> >?- ? ? ? ?  ? syslogd.pid
> >drwxr-xr-x 2 root  root   4096   Jul   10   00:07  sshd
> >(and so on)
>
> If you are getting this output as root, I'd fsck your filesystem.
>
> It's also possible that extended attributes are tripping up ls.  I've not
> dealt with them myself, but I believe there's as lsattr command for
> viewing them and a chattr command for modifying them.
> --
> Boyd Stephen Smith Jr. ,= ,-_-. =.
> [EMAIL PROTECTED]  ((_/)o o(\_))
> ICQ: 514984 YM/AIM: DaTwinkDaddy   `-'(. .)`-'
> http://iguanasuicide.org/  \_/
>



-- 
__
Rodrigo de Castro Cosme
Ciência da Computação - Universidade Federal do Espírito Santo
Suporte mailing list - [EMAIL PROTECTED]
MSN - [EMAIL PROTECTED]


Problem with file perms

2008-11-04 Thread Rodrigo Cosme
Hi, all.

Here is the deal. I tried to restart syslogd after a minor change in the
configuration file and for some reason the log daemon won't start anymore.
The initialization messages  show that there's something wrong with two
files: klogd.pid and syslogd.pid. Executing "ls -l" inside /var/run I get:

?- ? ? ? ?  ? klogd.pid
?- ? ? ? ?  ? syslogd.pid
drwxr-xr-x 2 root  root   4096   Jul   10   00:07  sshd
(and so on)

I can't  write, remove or do anything with these archives. As you can see,
if I exec "ls" they are listed, but if I exec "vim /var/run", these files
are not there.

Can anyone point me in the rigth direction?

-- 
__
Rodrigo de Castro Cosme
Ciência da Computação - Universidade Federal do Espírito Santo
Suporte mailing list - [EMAIL PROTECTED]
MSN - [EMAIL PROTECTED]


PHP5.2.5 with option --with-java

2008-03-25 Thread Rodrigo Tavares
Hello,

I had to download the source php-5.2.5 and source
php-java-bridge. I had installed php-java-bridge.

But the option --with-java isn't in configure.

Example :

[EMAIL PROTECTED]:~/php-5.2.5# ./configure --help | grep java
[EMAIL PROTECTED]:~/php-5.2.5#

And now ? 
Do I have to wait a new release source php ?

Best regards,

Rodrigo Faria 




  Abra sua conta no Yahoo! Mail, o único sem limite de espaço para 
armazenamento!
http://br.mail.yahoo.com/


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



integrating Java and PHP

2008-03-25 Thread Rodrigo Tavares
Hello,

I`d like to know, if somebody did the integration and
PHP5 and Java with success.

http://www.php.net/java

bye

Rodrigo Faria




  Abra sua conta no Yahoo! Mail, o único sem limite de espaço para 
armazenamento!
http://br.mail.yahoo.com/


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Sound problem in L35 Toshiba Satellite

2008-03-20 Thread Rodrigo Santos
I have installed DEBIAN ETCH on my Toshiba laptop. At the beginning I 
was able to handle the control volume but no sound came out of the 
speakers. So going through the web I started upgrading and downloading 
more packages and applications until the moment in which no sound but no 
sound card detection either.


alsaconf is not working.

I would really like to have my laptop completely operative but it seems 
almost imposible right now.


Please help!


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]




Re: SSH (what's this!!!)

2008-02-28 Thread Rodrigo Escobar
What do u got in logs ?

Any helpful message ?

On Thu, Feb 28, 2008 at 9:37 AM, Jeff D <[EMAIL PROTECTED]> wrote:

> Márcio Luciano Donada wrote:
> > -BEGIN PGP SIGNED MESSAGE-
> > Hash: SHA1
> >
> > Today in the morning when I give a verified in the processes of a given
> > server noticed the following procedures for ssh, I found a little
> > strange as:
> >
> > root 21274  1.0  0.0   9856  3384 ?Ss   09:14   0:00 sshd:
> > unknown [priv]
> > root 21275  1.0  0.0   9860  3412 ?Ss   09:14   0:00 sshd:
> > unknown [priv]
> > root 21276  1.0  0.0   9860  3412 ?Ss   09:14   0:00 sshd:
> > unknown [priv]
> > sshd 21277  0.0  0.0   7124  1360 ?S09:14   0:00 sshd:
> > unknown [net]
> > sshd 21278  0.0  0.0   7128  1364 ?S09:14   0:00 sshd:
> > unknown [net]
> > sshd 21281  0.0  0.0   7128  1364 ?S09:14   0:00 sshd:
> > unknown [net]
> >
> > Some idea?
> >
>
> what does lsof -i:22  give you?  could be a ssh scanner, or something
> leaving open ssh connections.
>
>
> --
> 8 out of 10 Owners who Expressed a Preference said Their Cats Preferred
> Techno.
>
>
> --
> To UNSUBSCRIBE, email to [EMAIL PROTECTED]
> with a subject of "unsubscribe". Trouble? Contact
> [EMAIL PROTECTED]
>
>


Re: Firmware for Wireless PCI

2008-02-01 Thread Rodrigo Tavares
Hello,

I found the firmware in link
http://www.kazer.org/acx-firmware-20060207.tar.bz2.

http://acx100.sourceforge.net/wiki/Firmware

Best regards,

Faria

--- Rodrigo Tavares <[EMAIL PROTECTED]>
escreveu:

> Hello,
> 
> I use this documentation:
>
http://acx100.sourceforge.net/wiki/Distribution_list/Debian
> 
> Follow the steps, I intalled the module acx. Now I
> need to find firmare. Using the script
> fetch_firmware.sh in source acx, many files was
> receveid. 
> 
> # Files received
> data1.cab data1.hdr data2.cab Drivers
> dwl520+_drivers_307.zip dwl-g650+_drv_v1.0.zip
> ikernel.ex_ layout.bin Setup.exe Setup.ini Setup.inx
> Win2000 Win98 WinME WinXP
> 
> In the doc below, you must put the firmware files in
> /lib/firmware, but I think are M$ Windows files.
> 
> I have a D-Link AirPlus XtremeG G650_520. 
> 
> Where I can to get the firmware it ?
> 
> Best regards,
> 
> Faria
> 
> 
> 
>   Abra sua conta no Yahoo! Mail, o único sem
> limite de espaço para armazenamento!
> http://br.mail.yahoo.com/
> 
> 
> -- 
> To UNSUBSCRIBE, email to
> [EMAIL PROTECTED] 
> with a subject of "unsubscribe". Trouble? Contact
> [EMAIL PROTECTED]
> 
> 



  Abra sua conta no Yahoo! Mail, o único sem limite de espaço para 
armazenamento!
http://br.mail.yahoo.com/


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Firmware for Wireless PCI

2008-02-01 Thread Rodrigo Tavares
Hello,

I use this documentation:
http://acx100.sourceforge.net/wiki/Distribution_list/Debian

Follow the steps, I intalled the module acx. Now I
need to find firmare. Using the script
fetch_firmware.sh in source acx, many files was
receveid. 

# Files received
data1.cab data1.hdr data2.cab Drivers
dwl520+_drivers_307.zip dwl-g650+_drv_v1.0.zip
ikernel.ex_ layout.bin Setup.exe Setup.ini Setup.inx
Win2000 Win98 WinME WinXP

In the doc below, you must put the firmware files in
/lib/firmware, but I think are M$ Windows files.

I have a D-Link AirPlus XtremeG G650_520. 

Where I can to get the firmware it ?

Best regards,

Faria



  Abra sua conta no Yahoo! Mail, o único sem limite de espaço para 
armazenamento!
http://br.mail.yahoo.com/


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Driver ACX - Texas Instruments ACX 111 54Mbps Wireless Interface

2008-01-30 Thread Rodrigo Tavares
Pessoal,

Estou tentando configurar um adaptador wireless Dlink
AirPlus G+ DWL-G520+ no Debian testing.

Estou usando a doc
http://acx100.sourceforge.net/wiki/ACX.

Primeiramente vou tentar recompilar o Kernel, e usar o
driver nativo.

A segunda opção é utilizar o comando ndiswrapper, que
através dele usa driver do Windows, para instala-lo no
Linux, apesar de demonstrar instabilidades.

Alguém sabe onde posso achar o driver da placa em
questão para Windows ? 

Pesquisei no site da Dlink, e não vi nada relacionado
a drivers. 

Att,

Faria








  Abra sua conta no Yahoo! Mail, o único sem limite de espaço para 
armazenamento!
http://br.mail.yahoo.com/


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Configuring Wireless Dlink

2008-01-29 Thread Rodrigo Tavares
Hello,

I have a wireless DLink G520. 
With command lspci I see :

00:08.0 Network controller: Texas Instruments ACX 111
54Mbps Wireless Interface

The interface is with interface sit0

I need configure it, in wireless network with WEP
auth, and DHCP Server.

I tried this commands:

debian:~# iwconfig sit0 essid Corporation
Error for wireless request "Set ESSID" (8B1A) :
SET failed on device sit0 ; Invalid argument.

debian:~# iwconfig sit0 key Corporation
Error for wireless request "Set Encode" (8B2A) :
invalid argument "chave"

I tried type dhclient sit0, but the process can't get
a new IP over DHCP.

I'm lost, How I can to resolve it ?

Ps : I'm using Devian Testing (whith all updates).

Best regards,

Faria


  Abra sua conta no Yahoo! Mail, o único sem limite de espaço para 
armazenamento!
http://br.mail.yahoo.com/


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Change default directory in a package

2008-01-16 Thread Rodrigo Tavares

 Hello,
 
 When I install a program in Windows, it's need to
 set  one directory. 
 
 
 I would like make the same with packages debian.
 
 How I can do it ?
 
 Is there any tool for this work ?
 
 
 Best regards,
 
 Faria
 



  Abra sua conta no Yahoo! Mail, o único sem limite de espaço para 
armazenamento!
http://br.mail.yahoo.com/


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



setting up an upload environment...

2007-03-26 Thread Rodrigo Vivi

Hi, I'm doing a personal distro based on debian for an specific
embedded device...

I'd like to set my own packages upload environment using katie scripts
and all debian scheme

Is there any manual or tutorial that helps me?

Thanks


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]




Re: Using dpkg-scanpackages with a debian repository

2007-03-05 Thread Rodrigo Tavares

Hello People,

About my problem, i resolve it usingo the below
command:

dpkg-scanpackages . /dev/null | tee Packages | gzip -9
> Packages.gz

Still, my repository it's Ok.

Bye

Rodrigo Faria

--- Rodrigo Tavares <[EMAIL PROTECTED]>
escreveu:

> 
> Hello Kauppi,
> 
> My packages are .deb.
> I remove the option -u, but the error continue.
> 
> Best regards,
> 
> Rodrigo Faria
> 
> --- Simo Kauppi <[EMAIL PROTECTED]> escreveu:
> 
> > On Mon, Mar 05, 2007 at 08:38:02AM -0300, Rodrigo
> > Tavares wrote:
> > > Hello,
> > > 
> > > Then I run the command:
> > > 
> > > dpkg-scanpackages -u -a i386
> > > /var/www/mirrors/dists/sarge/main/binary-i386/
> > > /var/www/mirrors/indices/override.sarge.main >
> > > Packages
> > 
> > Did you create .deb or .udeb packages?
> > 
> > The '-u' option makes dpkg-scanpackages look for
> > .udebs instead of
> > .debs.
> > 
> > Also, you might want to give the binary directory
> > relative to the root
> > of the archive. See `man dpkg-scanpackages` for
> > details...
> > 
> > > Best regards,
> > > 
> > > Rodrigo Faria Tavares
> > > 
> > >
> __
> > > Fale com seus amigos  de graça com o novo Yahoo!
> > Messenger 
> > > http://br.messenger.yahoo.com/ 
> > 
> > Simo
> > -- 
> > :r ~/.signature
> > 
> 
> 
> __
> Fale com seus amigos  de graça com o novo Yahoo!
> Messenger 
> http://br.messenger.yahoo.com/ 
> 
> 
> -- 
> To UNSUBSCRIBE, email to
> [EMAIL PROTECTED] 
> with a subject of "unsubscribe". Trouble? Contact
> [EMAIL PROTECTED]
> 
> 


__
Fale com seus amigos  de graça com o novo Yahoo! Messenger 
http://br.messenger.yahoo.com/ 


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: Using dpkg-scanpackages with a debian repository

2007-03-05 Thread Rodrigo Tavares

Hello Kauppi,

My packages are .deb.
I remove the option -u, but the error continue.

Best regards,

Rodrigo Faria

--- Simo Kauppi <[EMAIL PROTECTED]> escreveu:

> On Mon, Mar 05, 2007 at 08:38:02AM -0300, Rodrigo
> Tavares wrote:
> > Hello,
> > 
> > Then I run the command:
> > 
> > dpkg-scanpackages -u -a i386
> > /var/www/mirrors/dists/sarge/main/binary-i386/
> > /var/www/mirrors/indices/override.sarge.main >
> > Packages
> 
> Did you create .deb or .udeb packages?
> 
> The '-u' option makes dpkg-scanpackages look for
> .udebs instead of
> .debs.
> 
> Also, you might want to give the binary directory
> relative to the root
> of the archive. See `man dpkg-scanpackages` for
> details...
> 
> > Best regards,
> > 
> > Rodrigo Faria Tavares
> > 
> > __
> > Fale com seus amigos  de graça com o novo Yahoo!
> Messenger 
> > http://br.messenger.yahoo.com/ 
> 
> Simo
> -- 
> :r ~/.signature
> 


__
Fale com seus amigos  de graça com o novo Yahoo! Messenger 
http://br.messenger.yahoo.com/ 


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Using dpkg-scanpackages with a debian repository

2007-03-05 Thread Rodrigo Tavares
Hello,

I'm creating a customized debian repository.
In repository, i´ll go put the packages than i
created.

This packages are aplications, all with Sections
optional in debian/control.

I create the override.sarge.main file:

package1 optionaladmin
package2 optionaladmin
package3 optionaladmin

Then I run the command:

dpkg-scanpackages -u -a i386
/var/www/mirrors/dists/sarge/main/binary-i386/
/var/www/mirrors/indices/override.sarge.main >
Packages

The reply was:

Wrote 0 entries to output Packages file.

I made a download of override.sarge.main.gz in
http://ftp.br.debian.org/debian/indices/.

Still, the reply was the same.

How I can to create packges files with
dpkg-scanpackages ?

Ps : i´m not found a good tutorial about creating
mirrors debian, any sugestion ?

Best regards,

Rodrigo Faria Tavares

__
Fale com seus amigos  de graça com o novo Yahoo! Messenger 
http://br.messenger.yahoo.com/ 


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: apt-proxy

2006-11-14 Thread Rodrigo Castro
,1,192.168.1.11] [debug] Header: Connection: keep-alive
2006/11/14 09:08 BRST [Channel,1,192.168.1.11] [debug] Header: User-Agent: Debian APT-HTTP/1.32006/11/14 09:08 BRST [Channel,1,192.168.1.11] [debug] Headers: Host: 
192.168.1.6:9997, Connection: keep-alive, User-Agent: Debian APT-HTTP/1.32006/11/14 09:08 BRST [Channel,1,192.168.1.11] [Request] Request: GET /debian/dists/etch/Release.gpg backend=debian uri=/debian/dists/etch/Release.gpg
2006/11/14 09:08 BRST [Channel,1,192.168.1.11] [debug] backend: debian []2006/11/14 09:08 BRST [Channel,1,
192.168.1.11] [debug] New Cache entry: dists/etch/Release.gpg2006/11/14 09:08 BRST [Channel,1,192.168.1.11] [CacheEntry] start download:dists/etch/Release.gpg2006/11/14 09:08 BRST [Channel,1,
192.168.1.11] [DownloadQueue] queue file debian/dists/etch/Release.gpgOn 11/13/06, Joshua J. Kugler
 <[EMAIL PROTECTED]> wrote:On Monday 13 November 2006 04:00, Rodrigo Castro wrote:
> I changed the port, now when I enter> apt-proxy --config-file=/etc/apt-proxy/apt-proxy-v2.conf> I get this output and it stops there:That looks right...does it still not respond on the configured port?
j>> /usr/lib/python2.4/site-packages/twisted/manhole/telnet.py:8:> DeprecationWarning: As of Twisted 2.1, twisted.protocols.telnet is> deprecated.  See twisted.conch.telnet for the current, supported API.
>   from twisted.protocols import telnet> 2006/11/13 10:41 BRST [-] Log opened.> 2006/11/13 10:41 BRST [-] apt_proxy.apt_proxy.Factory starting on 9998> 2006/11/13 10:41 BRST [-] Starting factory > instance at 0xa774850c>> 2006/11/13 10:41 BRST [-] [debug] Will do periodic cleaup in 86400 sec> 2006/11/13 10:41 BRST [-] [debug] Creating Backend: debian> 2006/11/13 10:41 BRST [-] [debug] Created new BackendServer:
> http://ftp.br.debian.org/debian> 2006/11/13 10:41 BRST [-] [db] => 2006/11/13 10:41 BRST [-] [db] Dumping update times> 2006/11/13 10:41 BRST [-] [db] =
> 2006/11/13 10:41 BRST [-] [debug] Verifying database:> /var/cache/apt-proxy/.apt-proxy/db/update.db> 2006/11/13 10:41 BRST [-] [debug] Opening database> /var/cache/apt-proxy/.apt-proxy/db/update.db
> 2006/11/13 10:41 BRST [-] [db] => 2006/11/13 10:41 BRST [-] [db] Dumping access times> 2006/11/13 10:41 BRST [-] [db] => 2006/11/13 10:41 BRST [-] [debug] Verifying database:
> /var/cache/apt-proxy/.apt-proxy/db/access.db> 2006/11/13 10:41 BRST [-] [debug] Opening database> /var/cache/apt-proxy/.apt-proxy/db/access.db> 2006/11/13 10:41 BRST [-] [db] =
> 2006/11/13 10:41 BRST [-] [db] Dumping packages> 2006/11/13 10:41 BRST [-] [db] => 2006/11/13 10:41 BRST [-] [debug] Verifying database:> /var/cache/apt-proxy/.apt-proxy/db/packages.db
> 2006/11/13 10:41 BRST [-] [debug] Opening database> /var/cache/apt-proxy/.apt-proxy/db/packages.db>> On 11/11/06, Rodrigo Castro <[EMAIL PROTECTED]
> wrote:> > Didn't see that, my mistake. Thank you all.> >> > On 11/10/06, Joshua J. Kugler <[EMAIL PROTECTED]> wrote:> > > On Friday 10 November 2006 11:29, Rodrigo Castro wrote:
> > > > 2006/11/10 18:24 BRST [-] twisted.internet.error.CannotListenError:> > > > Couldn't listen on 192.168.1.11: : (98, 'Address already in
> > > > use').> > >> > > There is your problem right there: there is already a program listening> > > on> > > port , so it couldn't bind to that port.
> > >> > > j> > >> > > --> > > Joshua Kugler> > > Lead System Admin -- Senior Programmer> > > http://www.eeinternet.com
> > > PGP Key: http://pgp.mit.edu/  ID 0xDB26D7CE> > > PO Box 80086 -- Fairbanks, AK 99708 -- Ph: 907-456-5581 Fax:> > > 907-456-3111> > >
> > >> > > --> > > To UNSUBSCRIBE, email to [EMAIL PROTECTED]> > > with a subject of "unsubscribe". Trouble? Contact
> > > [EMAIL PROTECTED]> >> > --> > > > Rodrigo de Castro Cosme> > Ciência da Computação - UFES
> > Suporte mailing list - [EMAIL PROTECTED]> > MSN - [EMAIL PROTECTED]--Joshua KuglerLead System Admin -- Senior Programmer
http://www.eeinternet.comPGP Key: http://pgp.mit.edu/  ID 0xDB26D7CEPO Box 80086 -- Fairbanks, AK 99708 -- Ph: 907-456-5581 Fax: 907-456-3111
-- Rodrigo de Castro CosmeCiência da Computação - UFESSuporte mailing list - [EMAIL PROTECTED]
 MSN - [EMAIL PROTECTED]


Re: apt-proxy

2006-11-13 Thread Rodrigo Castro
I changed the port, now when I enter apt-proxy --config-file=/etc/apt-proxy/apt-proxy-v2.confI get this output and it stops there:/usr/lib/python2.4/site-packages/twisted/manhole/telnet.py:8: DeprecationWarning: As of Twisted 
2.1, twisted.protocols.telnet is deprecated.  See twisted.conch.telnet for the current, supported API.  from twisted.protocols import telnet2006/11/13 10:41 BRST [-] Log opened.2006/11/13 10:41 BRST [-] apt_proxy.apt_proxy.Factory starting on 9998
2006/11/13 10:41 BRST [-] Starting factory 2006/11/13 10:41 BRST [-] [debug] Will do periodic cleaup in 86400 sec2006/11/13 10:41 BRST [-] [debug] Creating Backend: debian
2006/11/13 10:41 BRST [-] [debug] Created new BackendServer: http://ftp.br.debian.org/debian2006/11/13 10:41 BRST [-] [db] =2006/11/13 10:41 BRST [-] [db] Dumping update times
2006/11/13 10:41 BRST [-] [db] =2006/11/13 10:41 BRST [-] [debug] Verifying database: /var/cache/apt-proxy/.apt-proxy/db/update.db2006/11/13 10:41 BRST [-] [debug] Opening database /var/cache/apt-proxy/.apt-proxy/db/update.db
2006/11/13 10:41 BRST [-] [db] =2006/11/13 10:41 BRST [-] [db] Dumping access times2006/11/13 10:41 BRST [-] [db] =2006/11/13 10:41 BRST [-] [debug] Verifying database: /var/cache/apt-proxy/.apt-proxy/db/access.db
2006/11/13 10:41 BRST [-] [debug] Opening database /var/cache/apt-proxy/.apt-proxy/db/access.db2006/11/13 10:41 BRST [-] [db] =2006/11/13 10:41 BRST [-] [db] Dumping packages2006/11/13 10:41 BRST [-] [db] =
2006/11/13 10:41 BRST [-] [debug] Verifying database: /var/cache/apt-proxy/.apt-proxy/db/packages.db2006/11/13 10:41 BRST [-] [debug] Opening database /var/cache/apt-proxy/.apt-proxy/db/packages.db
On 11/11/06, Rodrigo Castro <[EMAIL PROTECTED]> wrote:
Didn't see that, my mistake. Thank you all.On 11/10/06, Joshua J. Kugler <
[EMAIL PROTECTED]> wrote:
On Friday 10 November 2006 11:29, Rodrigo Castro wrote:
> 2006/11/10 18:24 BRST [-] 
twisted.internet.error.CannotListenError:> Couldn't listen on 192.168.1.11: : (98, 'Address already in use').
There is your problem right there: there is already a program listening on
port , so it couldn't bind to that port.j--Joshua KuglerLead System Admin -- Senior Programmer
http://www.eeinternet.comPGP Key: 
http://pgp.mit.edu/  ID 0xDB26D7CEPO Box 80086 -- Fairbanks, AK 99708 -- Ph: 907-456-5581 Fax: 907-456-3111--To UNSUBSCRIBE, email to 
[EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
-- 
Rodrigo de Castro CosmeCiência da Computação - UFESSuporte mailing list - 
[EMAIL PROTECTED] MSN - [EMAIL PROTECTED]

-- Rodrigo de Castro CosmeCiência da Computação - UFESSuporte mailing list - [EMAIL PROTECTED]
 MSN - [EMAIL PROTECTED]


Re: apt-proxy

2006-11-11 Thread Rodrigo Castro
Didn't see that, my mistake. Thank you all.On 11/10/06, Joshua J. Kugler <[EMAIL PROTECTED]> wrote:
On Friday 10 November 2006 11:29, Rodrigo Castro wrote:> 2006/11/10 18:24 BRST [-] 
twisted.internet.error.CannotListenError:> Couldn't listen on 192.168.1.11: : (98, 'Address already in use').There is your problem right there: there is already a program listening on
port , so it couldn't bind to that port.j--Joshua KuglerLead System Admin -- Senior Programmerhttp://www.eeinternet.comPGP Key: 
http://pgp.mit.edu/  ID 0xDB26D7CEPO Box 80086 -- Fairbanks, AK 99708 -- Ph: 907-456-5581 Fax: 907-456-3111--To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]-- 
Rodrigo de Castro CosmeCiência da Computação - UFESSuporte mailing list - [EMAIL PROTECTED] MSN - [EMAIL PROTECTED]


Re: apt-proxy

2006-11-10 Thread Rodrigo Castro
-> Client errorsapt-get updateErr http://192.168.1.11 testing Release.gpg  Connection failedIgn http://192.168.1.11 testing Release
Ign http://192.168.1.11 testing/main PackagesErr http://192.168.1.11 testing/main Packages  Connection failedFailed to fetch 
http://192.168.1.11:/debian/dists/testing/Release.gpg  Connection failedFailed to fetch http://192.168.1.11:/debian/dists/testing/main/binary-i386/Packages.gz
  Connection failedReading package lists... DoneW: Couldn't stat source package list http://192.168.1.11 testing/main Packages (/var/lib/apt/lists/192.168.1.11:_debian_dists_testing_main_binary-i386_Packages) - stat (2 No such file or directory)
W: You may want to run apt-get update to correct these problemsE: Some index files failed to download, they have been ignored, or old ones used instead.And it takes forever to output this.I've tried it two ways:
/etc/init.d/apt-proxt start (didn't work)apt-proxy -c /etc/apt-proxy/apt-proxy-v2.conf (didn't work either)  -> Server errors2006/11/10 18:24 BRST [-] Log opened.2006/11/10 18:24 BRST [-] twistd 
2.4.0 (/usr/bin/python 2.4.4) starting up2006/11/10 18:24 BRST [-] reactor class: 2006/11/10 18:24 BRST [-] Loading /usr/sbin/apt-proxy...2006/11/10 18:24 BRST [-] /usr/lib/python2.4/site-packages/twisted/manhole/telnet.py:8: 
exceptions.DeprecationWarning: As of Twisted 2.1, twisted.protocols.telnet is deprecated.  See twisted.conch.telnet for the current, supported API.2006/11/10 18:24 BRST [-] [log] Removing unnecessary '/' at the end of 
http://ftp.br.debian.org/debian/2006/11/10 18:24 BRST [-] [log] WARNING: Wrong server 'testing' found in backend 'debian'. It was skipped.2006/11/10 18:24 BRST [-] Loaded.
2006/11/10 18:24 BRST [-] Traceback (most recent call last):2006/11/10 18:24 BRST [-]   File "/usr/bin/twistd", line 25, in ?2006/11/10 18:24 BRST [-] run()2006/11/10 18:24 BRST [-]   File "/usr/lib/python2.4/site-packages/twisted/scripts/twistd.py", line 205, in run
2006/11/10 18:24 BRST [-] app.run(runApp, ServerOptions)2006/11/10 18:24 BRST [-]   File "/usr/lib/python2.4/site-packages/twisted/application/app.py", line 278, in run2006/11/10 18:24 BRST [-] runApp(config)
2006/11/10 18:24 BRST [-]   File "/usr/lib/python2.4/site-packages/twisted/scripts/twistd.py", line 196, in runApp2006/11/10 18:24 BRST [-] startApplication(config, application)2006/11/10 18:24 BRST [-]   File "/usr/lib/python2.4/site-packages/twisted/scripts/twistd.py", line 173, in startApplication
2006/11/10 18:24 BRST [-] service.IService(application).privilegedStartService()2006/11/10 18:24 BRST [-]   File "/usr/lib/python2.4/site-packages/twisted/application/service.py", line 191, in privilegedStartService
2006/11/10 18:24 BRST [-] service.privilegedStartService()2006/11/10 18:24 BRST [-]   File "/usr/lib/python2.4/site-packages/twisted/application/internet.py", line 68, in privilegedStartService2006/11/10 18:24 BRST [-] self._port = self._getPort()
2006/11/10 18:24 BRST [-]   File "/usr/lib/python2.4/site-packages/twisted/application/internet.py", line 86, in _getPort2006/11/10 18:24 BRST [-] return getattr(reactor, 'listen'+self.method)(*self.args
, **self.kwargs)2006/11/10 18:24 BRST [-]   File "/usr/lib/python2.4/site-packages/twisted/internet/posixbase.py", line 386, in listenTCP2006/11/10 18:24 BRST [-] p.startListening()2006/11/10 18:24 BRST [-]   File "/usr/lib/python2.4/site-packages/twisted/internet/tcp.py", line 711, in startListening
2006/11/10 18:24 BRST [-] raise CannotListenError, (self.interface, self.port, le)2006/11/10 18:24 BRST [-] twisted.internet.error.CannotListenError: Couldn't listen on 192.168.1.11:
: (98, 'Address already in use').On 11/10/06, Joshua J. Kugler <[EMAIL PROTECTED]> wrote:
On Friday 10 November 2006 10:58, Rodrigo Castro wrote:> I'm experiencing trouble to put apt-proxy to work. In the> apt-proxy-v2.confI didn't change many things, only the server Ip (like> 
192.168.1.11) and the backends. And the client's source.list would be like> deb http://192.168.1.11:/debian woody main for example. Is there anyone> who could point a solution, if theres indeed a problem, or could show me
> what I should look for?Can you tell us what errors you are getting?j--Joshua KuglerLead System Admin -- Senior Programmerhttp://www.eeinternet.com
PGP Key: http://pgp.mit.edu/  ID 0xDB26D7CEPO Box 80086 -- Fairbanks, AK 99708 -- Ph: 907-456-5581 Fax: 907-456-3111--To UNSUBSCRIBE, email to 
[EMAIL PROTECTED]with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
-- Rodrigo de Castro CosmeCiência da Computação - UFESSuporte mailing list - [EMAIL PROTECTED] MSN - 
[EMAIL PROTECTED]


apt-proxy

2006-11-10 Thread Rodrigo Castro
I'm experiencing trouble to put apt-proxy to work. In the apt-proxy-v2.conf I didn't change many things, only the server Ip (like 192.168.1.11) and the backends. And the client's source.list
 would be like deb http://192.168.1.11:/debian woody main for example. Is there anyone who could point a solution, if theres indeed a problem, or could show me what I should look for?
-- Rodrigo de Castro CosmeCiência da Computação - UFESSuporte mailing list - [EMAIL PROTECTED] MSN - 
[EMAIL PROTECTED]


Re: shell command

2006-11-07 Thread Rodrigo Paes
On Tue, 07 Nov 2006 13:22:54 -0600
Hugo Vanwoerkom <[EMAIL PROTECTED]> wrote:

> Henrique G. Abreu wrote:
> > Thanks guys, it worked just great!
> > 
> 
> What? Nohup or screen?
> 
> ?
> 
> 
I guess nohup I don't know if you can figure out screen that fast :)


[]s
rodrigo



-- 
=====
\ .-. +++ Rodrigo Paes +++   \
/ /v\CCIE #14054 (R&S and SP)/
\// \\   LPIC2 #19753\ 
/   /(   )\  Linux User #324449  /
\^^-^^   \
/   jabber: [EMAIL PROTECTED]  /
\   gtalk : [EMAIL PROTECTED]\
 ==


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: shell command

2006-11-07 Thread Rodrigo Paes
On Tue, 7 Nov 2006 15:04:56 -0300
"Henrique G. Abreu" <[EMAIL PROTECTED]> wrote:

> Hi,
> 
> I'd like to run a command on bash console, and close the console
> (ssh for example), the command still runs, and then come back and see
> its results.
> How is that possible?
> 
> Thanks,
> 

check this out...

http://www.gnu.org/software/screen/


[]s
rodrigo


-- 
=====
\ .-. +++ Rodrigo Paes +++   \
/ /v\CCIE #14054 (R&S and SP)/
\// \\   LPIC2 #19753\ 
/   /(   )\  Linux User #324449  /
\^^-^^   \
/   jabber: [EMAIL PROTECTED]  /
\   gtalk : [EMAIL PROTECTED]\
 ==


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: cable modem connection slower then dial up

2006-11-06 Thread Rodrigo Paes
On 6 Nov 2006 13:59:23 -0800
"schmity" <[EMAIL PROTECTED]> wrote:

> Ok.  It seems that the internet is extremely fast when I use Mozilla
> and extremely slow when I use Konqueror.  I am still unable to telnet
> www.google.com 80  get /.

seems like we are getting somewhere now... if browsing the net with mozilla is 
working fast, than it definitely doesn't look like a network problem... network 
problems have the good symptom of being neutral, if there is a net problem, 
everybody feels it.

about the telnet ... it's just a way for you to get a feel for the network, if 
the response is quick, if it is taking too long to resolve a name, if you 
actually have connectivity to the site, you know ..things like that ;) 

telneting to google on port 80, you are doing just what your browser does, and 
the "get /" is the keyword to start downloading the web page, but since you 
terminal is not a browser, it gets disconnected right after it.


[EMAIL PROTECTED]:~$ telnet www.google.com 80
Trying 216.239.37.99...
Connected to www.google.com. <<<<<<<<<<<<<<<<<<<<< here... you are connected
Escape character is '^]'.
get /
Connection closed by foreign host.

HTH

[]s
rodrigo



-- 
=
\ .-. +++ Rodrigo Paes +++   \
/ /v\CCIE #14054 (R&S and SP)/
\// \\   LPIC2 #19753\ 
/   /(   )\  Linux User #324449  /
\^^-^^   \
/   jabber: [EMAIL PROTECTED]  /
\   gtalk : [EMAIL PROTECTED]\
 ==


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: cable modem connection slower than dial up

2006-11-06 Thread Rodrigo Paes
On Tue, 07 Nov 2006 06:40:44 +0900
Miles Bader <[EMAIL PROTECTED]> wrote:

> 
> PING www.l.google.com (66.249.89.104): 56 data bytes
> 64 bytes from 66.249.89.104: icmp_seq=0 ttl=243 time=15.3 ms
> 64 bytes from 66.249.89.104: icmp_seq=1 ttl=243 time=16.6 ms
> 64 bytes from 66.249.89.104: icmp_seq=2 ttl=243 time=16.7 ms
> 64 bytes from 66.249.89.104: icmp_seq=3 ttl=243 time=16.5 ms
> ...
> 
dmn !! _that_ is fast..

Google has some Data Centers spread around the world, one of them is probably 
on the floor beneath you :)

about the hops, like I said.. either the DC is next to your house or you get 
inside a nice MPLS network that masks the real number of hops.


But about the connection speed, If I can surf the web pretty well with my 
shitty response time, .78ms should work aswell.


[]s
rodrigo


-- 
=====
\ .-. +++ Rodrigo Paes +++   \
/ /v\CCIE #14054 (R&S and SP)/
\// \\   LPIC2 #19753\ 
/   /(   )\  Linux User #324449  /
\^^-^^   \
/   jabber: [EMAIL PROTECTED]  /
\   gtalk : [EMAIL PROTECTED]\
 ==


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: cable modem connection slower than dial up

2006-11-06 Thread Rodrigo Paes
On 5 Nov 2006 19:48:17 -0800
"schmity" <[EMAIL PROTECTED]> wrote:


> 
> 
> [EMAIL PROTECTED]:~$ ping www.google.com
> PING www.l.google.com (216.239.37.104) 56(84) bytes of data.
> 64 bytes from 216.239.37.104: icmp_seq=1 ttl=241 time=78.5 ms
> 64 bytes from 216.239.37.104: icmp_seq=2 ttl=241 time=61.2 ms
> 64 bytes from 216.239.37.104: icmp_seq=3 ttl=241 time=66.9 ms
> 64 bytes from 216.239.37.104: icmp_seq=4 ttl=241 time=72.6 ms
> 


that's actually pretty good time... check out min :)

PING www.l.google.com (216.239.37.99) 56(84) bytes of data.
64 bytes from 216.239.37.99: icmp_seq=1 ttl=244 time=715 ms
64 bytes from 216.239.37.99: icmp_seq=2 ttl=244 time=709 ms
64 bytes from 216.239.37.99: icmp_seq=3 ttl=244 time=763 ms
64 bytes from 216.239.37.99: icmp_seq=4 ttl=244 time=711 ms

do the telnet test again, but this time use the IP instead of the name, see if 
it is any faster

I had some issues like this, with a DSL modem, turnes out it can't handle the 
dns requests sent by the linux machine, you can try to set up a local dns 
server and see it solves the issue


[]s
rodrigo



-- 
=========
\ .-. +++ Rodrigo Paes +++   \
/ /v\CCIE #14054 (R&S and SP)/
\// \\   LPIC2 #19753\ 
/   /(   )\  Linux User #324449  /
\^^-^^   \
/   jabber: [EMAIL PROTECTED]  /
\   gtalk : [EMAIL PROTECTED]\
 ==


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: what's up with all the attitude

2006-11-05 Thread Rodrigo Paes
On Sun, 5 Nov 2006 19:57:16 -0700
ChadDavis <[EMAIL PROTECTED]> wrote:

> I've recently started using this list.  You might say that I've
> recently joined the debian community.  Its great.  Very intelligent
> and helpful.  But what's with all the attitude people flash around
> here.  Have the threads I read end up in some petty bickering.
> 
Hi Chand,

how R u this evening ? :)

I have been a member of the debian community for over 4 years, I'm a former RH 
user, and although they have pretty good support, their list is nowhere near as 
good as this one, I do agree with you that some arguments get a little bit out 
of control here... but It's part of the fun :)

Debian is a great distro, and from what I've seen tends to attract highly 
skilled guys, usually with more experience than other distros, and for sure 
with _strong_ points of view, that mix is not always very stable, sometimes 
sparks fly we exchange some paint... but in the end everything turns out ok ;)


[]'s
rodrigo


-- 
=====
\ .-. +++ Rodrigo Paes +++   \
/ /v\CCIE #14054 (R&S and SP)/
\// \\   LPIC2 #19753\ 
/   /(   )\  Linux User #324449  /
\^^-^^   \
/   jabber: [EMAIL PROTECTED]  /
\   gtalk : [EMAIL PROTECTED]\
 ==


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: cable modem connection slower than dial up

2006-11-05 Thread Rodrigo Paes
On 5 Nov 2006 18:28:32 -0800
"schmity" <[EMAIL PROTECTED]> wrote:

> I have a cable modem connected to a router that connects to a Windows
> XP machine and my Debian linux machine.  Internet on the Windows XP
> machine is extremely fast and the Debian machine is slower than dial up
> (no joke! night and day difference!)  What is wrong with the Debian
> machine?
> 
> 
run some basic tests .

ping www.google.com 
ping www.yahoo.com

nslookup on both.. 
telnet www.google.com 80
  get /

Is the IPv6 module enabled on the linux box ?

let us know how it turns out :)



[]s
rodrigo



-- 
=========
\ .-. +++ Rodrigo Paes +++   \
/ /v\CCIE #14054 (R&S and SP)/
\// \\   LPIC2 #19753\ 
/   /(   )\  Linux User #324449  /
\^^-^^   \
/   jabber: [EMAIL PROTECTED]  /
\   gtalk : [EMAIL PROTECTED]\
 ==


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: runlevels

2006-11-05 Thread Rodrigo Paes
On Sun, 5 Nov 2006 10:21:29 -0700
ChadDavis <[EMAIL PROTECTED]> wrote:

> Yo.   I'm installing a nvidia driver, and the script says you must
> turn off the xserver.  In order to this, since I didn't know how, I
> rebooted into runlevel one.  Then the script complains about runlevel
> one not being enough.  Is runlevel one more of a rescure mode than
> just a non-graphical mode?  If so, what runlevel is non-graphical but
> otherwise full.  OR, how do I shutdown the xserver directly? -- I
> could just boot into runlevel two, switch to a command line login,
> login and shutdown the xserver from there, couldn't I?
> 
> Sort me out.
> 
> 
boot the thing on rc.2 , do CTRL+ALT+F1, u may need to hit it a couple of 
times, then you'll be in a text terminal, loggin and run this commands:

/etc/init.d/gdm stop
/etc/init.d/x11-common stop

then give the installation another try

[]s
rodrigo





-- 
=
\ .-. +++ Rodrigo Paes +++   \
/ /v\CCIE #14054 (R&S and SP)/
\// \\   LPIC2 #19753\ 
/   /(   )\  Linux User #324449  /
\^^-^^   \
/   jabber: [EMAIL PROTECTED]  /
\   gtalk : [EMAIL PROTECTED]\
 ==


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Gnome "open file" window

2006-11-04 Thread Rodrigo Paes
Hi all,

Is there anyway to change de default size in gnome of the "open file" window ?

for instance, when you are in gedit and you go "Ctrl-o" it opens a 184x34 
dialog box, and if you press the ALT + Right button, you can stretch it.. I was 
wondering if I could change this default size

TIA

[]s
rodrigo


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: seting up outgoing mail (smtp) on home system (adsl)

2006-11-04 Thread Rodrigo Paes
On Sat, 04 Nov 2006 16:14:16 +0100
"ae roy roy" <[EMAIL PROTECTED]> wrote:

> I would like to send system-mail (mail that otherwise is sent to [EMAIL 
> PROTECTED]) to my real mailadresse, which I read all the time. My outgoing 
> smtp-server that I use is mail.lyse.no.

have you tried sending yourself an email from cli before going into that ?

there is a good chance that your mail server will drop it because it's a "dsl" 
or "cable" IP range address, some servers reject connections from IPs whose 
reverse DNS lookup doesn't look kosher... or even worst which is my case, your 
service provider may be blocking outbound tcp sessions on port 25... 


[]s
rodrigo


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: What is the Debian way to set ethernet media

2006-11-02 Thread Rodrigo Paes

On 11/2/06, David Goodenough <[EMAIL PROTECTED]> wrote:

On Thursday 02 November 2006 18:52, Rodrigo Paes wrote:
> Hi...
>
>Did u try using ethtool ? how about putting "spanning-tree
> portfast" on the switch port ?
I have not tried ethtool, why do you believe it might work differently?
I do not have control of the switch, so I can not change that.



I had a server some 3 or 4 years ago, that had weird problems with
mii-tool, it would change the duplex and speed once and if I wanted to
change it again it wouldn't let me, ethtool didn't have that
problem... been using it ever since :)

about the portfast... I've seen some servers that had problems network
issues on boot, basically because between the interface comming up on
the server side and the switch accepting it, there is a 30 second
delay... it's making sure the server is not another switch, that might
be messing up the post-up script...

you could also try something like this ...

post-up sleep 30; mii-tool --force=100baseTx-FD


[]s
rodrigo


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]




Re: What is the Debian way to set ethernet media

2006-11-02 Thread Rodrigo Paes

Hi...

  Did u try using ethtool ? how about putting "spanning-tree
portfast" on the switch port ?

[]s
rodrigo

On 11/2/06, George Borisov <[EMAIL PROTECTED]> wrote:

David Goodenough wrote:
>
> Unfortunately post-up does not help, it is still marked as HD after an ifup.

Hmm, that's pretty weird.

I only have one box where I have to force the media type option
(to 10baseT-FD) and there I have it in a script that runs at S41
and it works just fine. :-/


--
George Borisov

DXSolutions Ltd


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]






--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]




Re: What's your favourite FLOSS?

2006-10-30 Thread Rodrigo Paes

On 10/31/06, Tshepang Lekhonkhobe <[EMAIL PROTECTED]> wrote:

On 10/31/06, Miles Bader <[EMAIL PROTECTED]> wrote:
> "Tshepang Lekhonkhobe" <[EMAIL PROTECTED]> writes:




Worst case was when one entry stated 'tbird' for 'thunderbird'. How
this could work is that typing on the keyboard wouldn't be allowed,
except for packages not available in Debian, something like a dropdown
list where all known entries are shown for specific categories.
Unfortunately the list will be looong, for example for text editor,
but one could just type a specific letter to jump to the desired
entry, as is common on the web for stuff like 'which country are you
from'.



You could create 10 or so categories, add as many know applicatios as
you can to each, and allow the user to either vote on an existing app
or add his own, this way the next  user will have an updated list.
But I agree that after some time the list is going to get huge :)

how long do you want to keep it running ?

[]s
rodrigo


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]




Re: What's your favourite FLOSS?

2006-10-29 Thread Rodrigo Paes

On 10/29/06, Tshepang Lekhonkhobe <[EMAIL PROTECTED]> wrote:

On 10/27/06, Rodrigo Paes <[EMAIL PROTECTED]> wrote:
>  * misc utilities [ sudo, grep, lsof, top, wget, meld, ssh ]

Nice that you pointed out meld, a graphical diff. I once saw such a
utility on Windows, and always wondered if there was an equivalent in
Debian (the kind of reason why I started this thread).


  I've seen quite a few graphical diffs GNU and M$ ... but meld is
the best by far. I even got a M$ user to change to Linux just because
of meld



>  * p2p [ bittorrent ]
>  * package manager [ dselect , apt-get ]

Wow! Still using dselect. Any advantages over aptitude or apt-get?



  nope  I've been using it for so long that I can't get my brain
rewired to use anything else :)

[]s
rodrigo


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]




Re: What's your favourite FLOSS?

2006-10-26 Thread Rodrigo Paes

* audio editor [ ]
* audio player [ XMMS ]
* cd-ripper [  ]
* Desktop Environment [ fluxbox ]
* DBMS [  ]
* development [  ]
* disc burner [ gnome-toaster ]
* e-mail client [ thunderbird ]
* file manager [ xterm]
* finance [  ]
* ftp [ ncftp ]
* image editor [ gimp ]
* image viewer [ gthumb ]
* instant messenger [ gaim ]
* mathematics [  ]
* misc utilities [ sudo, grep, lsof, top, wget, meld, ssh ]
* p2p [ bittorrent ]
* package manager [ dselect , apt-get ]
* pdf-reader [ evince ]
* spreadsheet [ openoffice, gnumeric ]
* tag editor [ ]
* terminal emulator [ xterm ]
* text editor [ gedit, vi ]
* 3D animation [ blender ]
* video player [ mplayer ]
* web browser [ firefox ]
* word-processor [ openoffice, abiword ]
* (great honours) [ GCC, GLibC, Linux, Bash, Xorg,  ]

[]s
rodrigo

On 10/26/06, Tshepang Lekhonkhobe <[EMAIL PROTECTED]> wrote:

Hi,
A year ago, I asked debian-user about favourite applications. The big
winners in that thread were GIMP, Firefox, K3b, gThumb, and
Thunderbird. I would like to start it again, and I would like those
who are get bored by this to please pardon me.

Here goes my new list (If you don't use certain things, please leave
the brackets blank like I did for audio editor, instead of leaving
them occupied with previous entries; this is to make the counting more
accurate):

* audio editor [ ]
* audio player [ quodlibet ]
* cd-ripper [ sound-juicer ]
* Desktop Environment [ GNOME ]
* DBMS [ ]
* development [ Python, GTK+ ]
* disc burner [ K3b ]
* e-mail client [ (none) - I use GMail ]
* file manager [ nautilus ]
* finance [ gnucash ]
* ftp [ ]
* image editor [ ]
* image viewer [ gthumb ]
* instant messenger [ ]
* mathematics [ octave ]
* misc utilities [ sudo, grep, dpkg-www, lsof, top, uptimed, sloccount, wget ]
* p2p [ ]
* package manager [ aptitude ]
* pdf-reader [ evince ]
* spreadsheet [ gnumeric ]
* tag editor [ ex-falso ]
* terminal emulator [ gnome-terminal ]
* text editor [ gedit, nano ]
* 3D animation [ blender ]
* video player [ ]
* web browser [ epiphany ]
* word-processor [ abiword ]
* (unreleased) [ GNU Hurd ]
* (great honours) [ GCC, GLibC, Linux, Bash, Xorg ]

note: you don't have to be a user of an application in order like it ;-)


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]






--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]




Dialog Example

2006-09-28 Thread Rodrigo Tavares
Hello,

Where I can a code example of dialog, with intetion: 

Installing one package and happen a bar of progress
when in run this command :

/usr/local/pgsql/bin/createdb -E LATIN1 BD  &>
/dev/nul
/usr/local/pgsql/bin/psql -d DB -U xyzt -h localhost
-f script.sh &> /dev/null

Somebody can help me ?

Att,

Faria






___ 
Você quer respostas para suas perguntas? Ou você sabe muito e quer compartilhar 
seu conhecimento? Experimente o Yahoo! Respostas !
http://br.answers.yahoo.com/


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: problems with gnome

2006-09-05 Thread Rodrigo Castro
Sorry, I`ve mistaken the e-mails.Anyway, as I told before I`m having trouble with Gnome, as it doesn`t show the panel saying that there`s already a panel running, doesn`t show desktop icons or the main menu. As a palliative method to solve this I`ve been removing files such as .xsession-errors .gtkrc* and killing processes to get the panel functioning back.
But I`d like to know how to definitively solve them. Can anyone help me out?On 9/5/06, Ron Johnson <
[EMAIL PROTECTED]> wrote:-BEGIN PGP SIGNED MESSAGE-Hash: SHA1
Why do you keep replying to me instead of the list?Rodrigo Castro wrote:> Ok, but that would solve the trouble until it happens again. Isn't there> any> final solution for this?>
> On 9/5/06, Ron Johnson <[EMAIL PROTECTED]> wrote:>>> Rodrigo Castro wrote:>> These panel problems appears when I log through gdm.>
> Disable gdm and use startx from the CLI.  This way, *before* you run> startx, run "ps aux | grep gnome" to see if there are any errant> processes hanging around.>>> On 9/5/06, Ron Johnson <
[EMAIL PROTECTED]> wrote:>>> Rodrigo Castro wrote:>>> Gnome's been giving me trouble recently. Sometime it doesn't show the>> main
>>> menu, the archives listed on desktop or doesn't initialize the panel>> saying>>> that there's already a running panel. I've been deleting some archives>> like>>> .xsession-errors .gtkrc* and so on. But this isn't always successful.
>>> And to>>> solve the panel problem we try to kill some processes, but sometimes>> they>>> just won't die.>>> But these procedures are paliative. I want to know how to stop them to
>>> occur. Can anyone help me? Maybe that isn't even related to Gnome.>>> Do you log in to the console or [gx]dm?- --Ron Johnson, Jr.Jefferson LA  USAIs "common sense" really valid?
For example, it is "common sense" to white-power racists thatwhites are superior to blacks, and that those with brown skinsare mud people.However, that "common sense" is obviously wrong.
-BEGIN PGP SIGNATURE-Version: GnuPG v1.4.5 (GNU/Linux)Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.orgiD8DBQFE/bxeS9HxQb37XmcRAhp+AJ9suds6pGomzoQMrMVyo/flJNHOdwCgn2u1
ysTYH0HK8hgMcREJaLu6DpU==5k0R-END PGP SIGNATURE--- Rodrigo de Castro CosmeCiência da Computação - UFESSuporte mailing list - 
[EMAIL PROTECTED] MSN - [EMAIL PROTECTED]


problems with gnome

2006-09-05 Thread Rodrigo Castro
Gnome's been giving me trouble recently. Sometime it doesn't show the main menu, the archives listed on desktop or doesn't initialize the panel saying that there's already a running panel. I've been deleting some archives like .xsession-errors .gtkrc* and so on. But this isn't always successful. And to solve the panel problem we try to kill some processes, but sometimes they just won't die.
But these procedures are paliative. I want to know how to stop them to occur. Can anyone help me? Maybe that isn't even related to Gnome.-- Rodrigo de Castro Cosme
Ciência da Computação - UFESSuporte mailing list - [EMAIL PROTECTED] MSN - [EMAIL PROTECTED]


Cannot ping after compiling kernel

2004-08-23 Thread Rodrigo Otaviano
Before Scenario:
Kernel 2.2.20
Internal Subnet:  10.71.0.0
Gateway Eth1: 10.71.0.1
Gateway Eth0: 216.x.y.1
External Subnet:  216.x.y.0
I hook up to eth1 and get IP from DHCP server.
I can ping eth1
I can telnet 10.71.0.1
I can ssh 10.71.0.1
I can web browse 10.71.0.1
After Scenario:
I upgrade to 2.4.18 in order to use IPTABLES and enable IP Masquerade.
Now
I hook up to eth1 and STILL get IP from DHCP server.
BUT
I cannot ping eth1 anymore
I cannot telnet 10.71.0.1 anymore
I cannot ssh 10.71.0.1 anymore
I cannot web browse 10.71.0.1 anymore
None filtering rules so far.
Any idea ?
It's pretty clear that it stopped working RIGHT after I compiled the 
kernel. I did that twice ...


My arp table:
g4:~ rodrigo$ arp -a
? (10.71.0.1) at (incomplete) on en0 [ethernet]
? (10.71.0.255) at ff:ff:ff:ff:ff:ff on en0 [ethernet]
Routing table:
debian:/home/rodrigo# route
Kernel IP routing table
Destination Gateway Genmask Flags Metric RefUse 
Iface
216.x.y.0   *   255.255.255.128 U 0  00 
eth0
10.71.0.0*   255.255.255.0   U 0  0
0 eth1
default 216-x-y-1.ip0.0.0.0 UG0  00 
eth0


.config that I used to compile the new kernel ( skipped some parts ):
# Networking options
#
CONFIG_PACKET=m
CONFIG_PACKET_MMAP=y
CONFIG_NETLINK_DEV=m
CONFIG_NETFILTER=y
CONFIG_NETFILTER_DEBUG=y
CONFIG_FILTER=y
CONFIG_UNIX=y
CONFIG_INET=y
CONFIG_IP_MULTICAST=y
# CONFIG_IP_ADVANCED_ROUTER is not set
# CONFIG_IP_PNP is not set
CONFIG_NET_IPIP=m
# CONFIG_NET_IPGRE is not set
# CONFIG_IP_MROUTE is not set
# CONFIG_ARPD is not set
# CONFIG_INET_ECN is not set
CONFIG_SYN_COOKIES=y
#   IP: Netfilter Configuration
#
CONFIG_IP_NF_CONNTRACK=m
CONFIG_IP_NF_FTP=m
CONFIG_IP_NF_IRC=m
CONFIG_IP_NF_QUEUE=m
CONFIG_IP_NF_IPTABLES=m
CONFIG_IP_NF_MATCH_LIMIT=m
CONFIG_IP_NF_MATCH_MAC=m
CONFIG_IP_NF_MATCH_MARK=m
CONFIG_IP_NF_MATCH_MULTIPORT=m
# CONFIG_IP_NF_MATCH_TOS is not set
# CONFIG_IP_NF_MATCH_AH_ESP is not set
# CONFIG_IP_NF_MATCH_LENGTH is not set
# CONFIG_IP_NF_MATCH_TTL is not set
CONFIG_IP_NF_MATCH_TCPMSS=m
CONFIG_IP_NF_MATCH_STATE=m
CONFIG_IP_NF_MATCH_UNCLEAN=m
CONFIG_IP_NF_MATCH_OWNER=m
CONFIG_IP_NF_FILTER=m
CONFIG_IP_NF_TARGET_REJECT=m
# CONFIG_IP_NF_TARGET_MIRROR is not set
CONFIG_IP_NF_NAT=m
CONFIG_IP_NF_NAT_NEEDED=y
CONFIG_IP_NF_TARGET_MASQUERADE=m
# CONFIG_IP_NF_TARGET_REDIRECT is not set
# CONFIG_IP_NF_NAT_SNMP_BASIC is not set
CONFIG_IP_NF_NAT_IRC=m
CONFIG_IP_NF_NAT_FTP=m
CONFIG_IP_NF_MANGLE=m
# CONFIG_IP_NF_TARGET_TOS is not set
CONFIG_IP_NF_TARGET_MARK=m
CONFIG_IP_NF_TARGET_LOG=m
# CONFIG_IP_NF_TARGET_ULOG is not set
CONFIG_IP_NF_TARGET_TCPMSS=m
CONFIG_IP_NF_COMPAT_IPCHAINS=m
CONFIG_IP_NF_NAT_NEEDED=y
CONFIG_IP_NF_COMPAT_IPFWADM=m
CONFIG_IP_NF_NAT_NEEDED=y
# CONFIG_IPV6 is not set
# CONFIG_KHTTPD is not set
# CONFIG_ATM is not set
# CONFIG_VLAN_8021Q is not set
# CONFIG_IPX is not set
# CONFIG_ATALK is not set
# CONFIG_DECNET is not set
# CONFIG_BRIDGE is not set
# CONFIG_X25 is not set
# CONFIG_LAPB is not set
# CONFIG_LLC is not set
# CONFIG_NET_DIVERT is not set
# CONFIG_ECONET is not set
# CONFIG_WAN_ROUTER is not set
# CONFIG_NET_FASTROUTE is not set
# CONFIG_NET_HW_FLOWCONTROL is not set
Rodrigo Otavio Paes de Barros Otaviano
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Cannot ping after compiling kernel

2004-08-23 Thread Rodrigo Otaviano
Before scenario:
Kernel 2.2.20
internal subnet: 10.71.0.0/24
gateway eth1:10.71.0.1
gateway eth0:216.x.y.1
external subnet: 216.x.y.0/128
I hook up to eth1 and get IP from DHCP server.
I can ping eth1, eth0, etc
I can telnet 10.71.0.1
I can ssh 10.71.0.1
I can web browse 10.71.0.1
Everything fine, but I need to enable IP Masquerade so ...
... I upgrade the kernel to 2.4.18 and enable IP Masquerade
Now:
internal subnet: 10.71.0.0/24
gateway eth1:10.71.0.1
gateway eth0:216.x.y.1
external subnet: 216.x.y.0/128
I hook up to eth1 and STILL get IP from DHCP server.
BUT ..
I cannot ping eth1, eth0, etc
I cannot telnet 10.71.0.1
I cannot ssh 10.71.0.1
I cannot web browse 10.71.0.1
None filtering rules so far
Any idea ?
Some tests from my host:
g4:~ rodrigo$ arp -a
? (10.71.0.1) at (incomplete) on en0 [ethernet]
? (10.71.0.255) at ff:ff:ff:ff:ff:ff on en0 [ethernet]
debian:/home/rodrigo# route
Kernel IP routing table
Destination Gateway Genmask Flags Metric RefUse 
Iface
216.x.y.0   *   255.255.255.128 U 0  00 eth0
10.71.0.0*   255.255.255.0   U 0  00 
eth1
default 216-x-y-1.ip0.0.0.0 UG0  00 eth0

.config that I used to compile the new kernel ( skipped some parts ):
# Networking options
#
CONFIG_PACKET=m
CONFIG_PACKET_MMAP=y
CONFIG_NETLINK_DEV=m
CONFIG_NETFILTER=y
CONFIG_NETFILTER_DEBUG=y
CONFIG_FILTER=y
CONFIG_UNIX=y
CONFIG_INET=y
CONFIG_IP_MULTICAST=y
# CONFIG_IP_ADVANCED_ROUTER is not set
# CONFIG_IP_PNP is not set
CONFIG_NET_IPIP=m
# CONFIG_NET_IPGRE is not set
# CONFIG_IP_MROUTE is not set
# CONFIG_ARPD is not set
# CONFIG_INET_ECN is not set
CONFIG_SYN_COOKIES=y
#   IP: Netfilter Configuration
#
CONFIG_IP_NF_CONNTRACK=m
CONFIG_IP_NF_FTP=m
CONFIG_IP_NF_IRC=m
CONFIG_IP_NF_QUEUE=m
CONFIG_IP_NF_IPTABLES=m
CONFIG_IP_NF_MATCH_LIMIT=m
CONFIG_IP_NF_MATCH_MAC=m
CONFIG_IP_NF_MATCH_MARK=m
CONFIG_IP_NF_MATCH_MULTIPORT=m
# CONFIG_IP_NF_MATCH_TOS is not set
# CONFIG_IP_NF_MATCH_AH_ESP is not set
# CONFIG_IP_NF_MATCH_LENGTH is not set
# CONFIG_IP_NF_MATCH_TTL is not set
CONFIG_IP_NF_MATCH_TCPMSS=m
CONFIG_IP_NF_MATCH_STATE=m
CONFIG_IP_NF_MATCH_UNCLEAN=m
CONFIG_IP_NF_MATCH_OWNER=m
CONFIG_IP_NF_FILTER=m
CONFIG_IP_NF_TARGET_REJECT=m
# CONFIG_IP_NF_TARGET_MIRROR is not set
CONFIG_IP_NF_NAT=m
CONFIG_IP_NF_NAT_NEEDED=y
CONFIG_IP_NF_TARGET_MASQUERADE=m
# CONFIG_IP_NF_TARGET_REDIRECT is not set
# CONFIG_IP_NF_NAT_SNMP_BASIC is not set
CONFIG_IP_NF_NAT_IRC=m
CONFIG_IP_NF_NAT_FTP=m
CONFIG_IP_NF_MANGLE=m
# CONFIG_IP_NF_TARGET_TOS is not set
CONFIG_IP_NF_TARGET_MARK=m
CONFIG_IP_NF_TARGET_LOG=m
# CONFIG_IP_NF_TARGET_ULOG is not set
CONFIG_IP_NF_TARGET_TCPMSS=m
CONFIG_IP_NF_COMPAT_IPCHAINS=m
CONFIG_IP_NF_NAT_NEEDED=y
CONFIG_IP_NF_COMPAT_IPFWADM=m
CONFIG_IP_NF_NAT_NEEDED=y
# CONFIG_IPV6 is not set
# CONFIG_KHTTPD is not set
# CONFIG_ATM is not set
# CONFIG_VLAN_8021Q is not set
# CONFIG_IPX is not set
# CONFIG_ATALK is not set
# CONFIG_DECNET is not set
# CONFIG_BRIDGE is not set
# CONFIG_X25 is not set
# CONFIG_LAPB is not set
# CONFIG_LLC is not set
# CONFIG_NET_DIVERT is not set
# CONFIG_ECONET is not set
# CONFIG_WAN_ROUTER is not set
# CONFIG_NET_FASTROUTE is not set
# CONFIG_NET_HW_FLOWCONTROL is not set
Rodrigo Otavio Paes de Barros Otaviano
_
Take advantage of powerful junk e-mail filters built on patented Microsoft® 
SmartScreen Technology. 
http://join.msn.com/?pgmarket=en-ca&page=byoa/prem&xAPID=1994&DI=1034&SU=http://hotmail.com/enca&HL=Market_MSNIS_Taglines 
 Start enjoying all the benefits of MSN® Premium right now and get the 
first two months FREE*.

--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



DHCP ok, Can't ping ...

2004-08-19 Thread Rodrigo Otaviano
Hi all,
I'm newbie to Linux and that's my first post.
First I tried to find any other posts on the same issue, googled it 
around for a while but haven't found anything that could've helped me 
so, here I am.

I have the following scenario ( simple one by the way ):
10.0.0.0---(eth1).Linux Box.(eth0) ---216.x.y.0
Firstly I did the install  ( Kernel 2.2.x ) via network. Then set up 
both Ethernet adapters, one Intel PCI and Intel EtherExpress 16 ISA.

DHCP's fine and I can ping the gateway from the inside. Cool.
Then by the time I was going to do IP Masquarading ( with IPTABLES ), I 
learned  kernel 2.2.X doesn't support it so decided to do the upgrade. 
Cool, my first kernel compilation.

So, I upgraded to 2.4.18, set up the ethers, and everything is ok, DHCP 
is ok.

I hoop up my Powerbook to eth1 ( inside adapter ) and get an IP from 
the DHCP. Fine.

Problem is: I can't ping it. Odd. I get the IP from the DHCP but cannot 
ping it.

I also tried to ssh it ( that's my only TCP port open - 22 ) because 
firstly I suspected there was something blocking ICMP packets and 
stuff, but also got : "host is down" or something ( don't remember 
exactly )

From my box:
g4:~ rodrigo$ ifconfig
lo0: flags=8049 mtu 16384
inet6 ::1 prefixlen 128
inet6 fe80::1 prefixlen 64 scopeid 0x1
inet 127.0.0.1 netmask 0xff00
en0: flags=8863 mtu 1500
inet6 fe80::20d:93ff:fec3:7a74 prefixlen 64 scopeid 0x4
inet 10.0.0.10 netmask 0xff00 broadcast 10.0.0.255
ether 00:0d:93:c3:7a:74
    media: autoselect (10baseT/UTP ) status: active
g4:~ rodrigo$ ping 10.0.0.1
PING 10.0.0.1 (10.0.0.1): 56 data bytes
ping: sendto: Host is down
ping: wrote 10.0.0.1 64 chars, ret=-1
ping: sendto: Host is down
ping: wrote 10.0.0.1 64 chars, ret=-1
ping: sendto: Host is down
ping: wrote 10.0.0.1 64 chars, ret=-1
ping: sendto: Host is down
g4:~ rodrigo$ arp -a
? (10.0.0.1) at (incomplete) on en0 [ethernet]
? (10.0.0.255) at ff:ff:ff:ff:ff:ff on en0 [ethernet]
g4:~ rodrigo$ ping 10.0.0.255
PING 10.0.0.255 (10.0.0.255): 56 data bytes
64 bytes from 10.0.0.10: icmp_seq=0 ttl=64 time=0.204 ms
64 bytes from 10.0.0.1: icmp_seq=0 ttl=255 time=16.544 ms (DUP!)
64 bytes from 10.0.0.10: icmp_seq=1 ttl=64 time=0.215 ms
64 bytes from 10.0.0.1: icmp_seq=1 ttl=255 time=1.652 ms (DUP!)
Duplicated packets ... weird ...
g4:~ rodrigo$ arp -a
? (10.0.0.1) at (incomplete) on en0 [ethernet]
? (10.0.0.255) at ff:ff:ff:ff:ff:ff on en0 [ethernet]
I also tried with a Windows box and got the same results.
From the Linux box ( the server ):
Linux debian 2.4.18 #4 SMP Tue Aug 17 04:42:59 PDT 2004 i586 unknown
debian:/home/rodrigo# route
Kernel IP routing table
Destination Gateway Genmask Flags Metric RefUse 
Iface
216.x.y.0   *   255.255.255.128 U 0  00 
eth0
10.0.0.0*   255.255.255.0   U 0  00 
eth1
default 216-x-y-1.ip0.0.0.0 UG0  00 
eth0


.config that I used to compile the new kernel ( skipped some parts ):
# Networking options
#
CONFIG_PACKET=m
CONFIG_PACKET_MMAP=y
CONFIG_NETLINK_DEV=m
CONFIG_NETFILTER=y
CONFIG_NETFILTER_DEBUG=y
CONFIG_FILTER=y
CONFIG_UNIX=y
CONFIG_INET=y
CONFIG_IP_MULTICAST=y
# CONFIG_IP_ADVANCED_ROUTER is not set
# CONFIG_IP_PNP is not set
CONFIG_NET_IPIP=m
# CONFIG_NET_IPGRE is not set
# CONFIG_IP_MROUTE is not set
# CONFIG_ARPD is not set
# CONFIG_INET_ECN is not set
CONFIG_SYN_COOKIES=y
#   IP: Netfilter Configuration
#
CONFIG_IP_NF_CONNTRACK=m
CONFIG_IP_NF_FTP=m
CONFIG_IP_NF_IRC=m
CONFIG_IP_NF_QUEUE=m
CONFIG_IP_NF_IPTABLES=m
CONFIG_IP_NF_MATCH_LIMIT=m
CONFIG_IP_NF_MATCH_MAC=m
CONFIG_IP_NF_MATCH_MARK=m
CONFIG_IP_NF_MATCH_MULTIPORT=m
# CONFIG_IP_NF_MATCH_TOS is not set
# CONFIG_IP_NF_MATCH_AH_ESP is not set
# CONFIG_IP_NF_MATCH_LENGTH is not set
# CONFIG_IP_NF_MATCH_TTL is not set
CONFIG_IP_NF_MATCH_TCPMSS=m
CONFIG_IP_NF_MATCH_STATE=m
CONFIG_IP_NF_MATCH_UNCLEAN=m
CONFIG_IP_NF_MATCH_OWNER=m
CONFIG_IP_NF_FILTER=m
CONFIG_IP_NF_TARGET_REJECT=m
# CONFIG_IP_NF_TARGET_MIRROR is not set
CONFIG_IP_NF_NAT=m
CONFIG_IP_NF_NAT_NEEDED=y
CONFIG_IP_NF_TARGET_MASQUERADE=m
# CONFIG_IP_NF_TARGET_REDIRECT is not set
# CONFIG_IP_NF_NAT_SNMP_BASIC is not set
CONFIG_IP_NF_NAT_IRC=m
CONFIG_IP_NF_NAT_FTP=m
CONFIG_IP_NF_MANGLE=m
# CONFIG_IP_NF_TARGET_TOS is not set
CONFIG_IP_NF_TARGET_MARK=m
CONFIG_IP_NF_TARGET_LOG=m
# CONFIG_IP_NF_TARGET_ULOG is not set
CONFIG_IP_NF_TARGET_TCPMSS=m
CONFIG_IP_NF_COMPAT_IPCHAINS=m
CONFIG_IP_NF_NAT_NEEDED=y
CONFIG_IP_NF_COMPAT_IPFWADM=m
CONFIG_IP_NF_NAT_NEEDED=y
# CONFIG_IPV6 is not set
# CONFIG_KHTTPD is not set
# CONFIG_ATM is not set
# CONFIG_VLAN_8021Q is not set
# CONFIG_IPX is not set
# CONFIG_ATALK is not set
# CONFIG_DECNET is not set
# CONFIG_BRIDGE is not set
# CONFIG_X25 is not set
# CONFIG_LAPB is not set
# CONFIG_LLC is not set
# CONFIG_NET_DIVERT is not set
# CONFIG_ECONET is not set
# CONFIG_

Re: Horde2 + exim returned mail goes to www-data

2004-08-05 Thread Rodrigo Chandia
El Jueves 05 Agosto 2004 05:50, Joost De Cock escribió:
> Quoting Rodrigo Chandia <[EMAIL PROTECTED]>:
> I may be misunderstanding your question here, but in Horde, (in the webui)
> in options -> in your identities, make sure to configure your 'from'
> address correctly. (every user should do so).

Actually the problem was that exim4 (correctly) prevented non-root users from 
spoofing their From addresses.

I solved it by adding www-data to the trusted_user setting in exim.conf.

Regards,

Rodrigo Chandia



Horde2 + exim returned mail goes to www-data

2004-08-04 Thread Rodrigo Chandia
Hello!

I have installed Horde + exim4 on Debian testing. Everything works fine
until a mail is returned by the exim server.

Such mails get returned to www-data instead of the user that sent the
mail.

Is there any way to fix it?

Regards,
-- 
Rodrigo Chandía




Re: how to install USB mouse

2004-04-06 Thread Rodrigo Agerri
Javier García wrote:
> Hi,
> i don't know how to install my USB mouse.
> I think i need to install a module in the kernel, but i don't know how to 
> do it and where do i find the module.
> It's a logitech mouse.

hi, 

this has been in the list quite a few times. 

http://lists.debian.org/debian-user/2004/debian-user-200403/msg13891.html
http://lists.debian.org/debian-user/2003/debian-user-200305/msg02336.html

These two threads should give you the answer. 

cheers, 

Rodrigo


signature.asc
Description: Digital signature


Re: Problem with SiS7012 solved

2004-04-03 Thread Rodrigo Agerri
[sorry for the poor quoting of my previous message]

 > 
 > I wrote a couple of weeks ago about a problem with a SiS7012 and ALSA. The 
 > problem was that the volume was too low and the sound was not good even 
 > amplifying it. So, after trying Knoppix, Fedora Core 1, Mandrake 9.1 and 
 > Mandrake 10, I reinstalled Woody, upgraded to Sid and, after some time 
 > fighting against ALSA and OSS modules, I verified that ALSA modules do not 
 > work properly with my soundcard, but OSS do.
 
 hi, 
 
 this problem has been in the lists quite a few times.
 
 http://lists.debian.org/debian-user/2003/debian-user-200304/msg01184.html
 
http://lists.debian.org/debian-user-spanish/2003/debian-user-spanish-200306/msg01094.html
 
 You can also check 
 
 
http://www.alsa-project.org/alsa-doc/doc-php/template.php3?company=SiS&card=&chip=ad1816a&module=intel8x0
 
 Install alsa-modules-kernel-version and use alsaconf. You need to load the
 snd-intel8x0 module. 
 
 I have been using a SiS7012 card with OSS first and then with ALSA, 
 with both kernel 2.4.x series and now with 2.6.x. Actually, for the 
 2.6.x kernel, ALSA is the default. Run alsaconf and it will take care of
 it for you. 
 
 hope it helps
 
 cheers 
 
 Rodrigo
 
 P.S. For a screenshot of alsamixer for this card, go to
 http://www.soi.city.ac.uk/~au700/alsamixer.png





signature.asc
Description: Digital signature


Re: Problem with SiS7012 solved

2004-04-03 Thread Rodrigo Agerri
Bokeron wrote:
> 
> I wrote a couple of weeks ago about a problem with a SiS7012 and ALSA. The 
> problem was that the volume was too low and the sound was not good even 
> amplifying it. So, after trying Knoppix, Fedora Core 1, Mandrake 9.1 and 
> Mandrake 10, I reinstalled Woody, upgraded to Sid and, after some time 
> fighting against ALSA and OSS modules, I verified that ALSA modules do not 
> work properly with my soundcard, but OSS do.

hi, 

this problem has been in the lists quite a few times.

http://lists.debian.org/debian-user/2003/debian-user-200304/msg01184.html
http://lists.debian.org/debian-user-spanish/2003/debian-user-spanish-200306/msg01094.html

You can also check 

http://www.alsa-project.org/alsa-doc/doc-php/template.php3?company=SiS&card=&chip=ad1816a&module=intel8x0

Install alsa-modules-kernel-version and use alsaconf. You need to load the
snd-intel8x0 module. 

I have been using a SiS7012 card with OSS first and then with ALSA, 
with both kernel 2.4.x series and now with 2.6.x. Actually, for the 
2.6.x kernel, ALSA is the default. Run alsaconf and it will take care of
it for you. 

hope it helps

cheers 

Rodrigo

P.S. For a screenshot of alsamixer for this card, go to
http://www.soi.city.ac.uk/~au700/alsamixer.png





> 
> So now I have kernel 2.4.25 with OSS modules, the sound works great and I hope 
> that when I upgrade to 2.6.x it still will be.
> 
> Just wrote to inform you and anyone that might have the same problem.
> 
> Regards
> 
> 
> -- 
> To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
> with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

-- 
Rodrigo Agerri
Dept. of Computing
City University, London
Tel: 0044 (0) 20 7040 0292
http://www.soi.city.ac.uk/~au700


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: /dev/psaux

2004-04-03 Thread Rodrigo Agerri
> 
> >>Drogo Bumbleroot wrote:
> >I've gotten X-Windows to come up if I use /dev/input/mice (saw it somewhere
> >on a webpage), but it still tells me the mouse is in use if I use 
> >/dev/psaux
> >
> >Section "InputDevice"
> >   Identifier  "Configured Mouse"
> >   Driver  "mouse"
> >   Option  "CorePointer"
> >   Option  "Protocol"  "PS/2"
> >#   Option  "Device""/dev/input/mice"
> >   Option  "Device""/dev/psaux"
> >   Option  "Emulate3Buttons"   "true"
> >   Option  "ZAxisMapping"  "4 5"
> >EndSection

what if you modify the option "Emulate3Buttons" from "true" to "5"?





-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: mozilla and blackdown java

2004-04-01 Thread Rodrigo Agerri
Mustafa Taha Al-Shawaf wrote:
> I'm having a problem getting java to run.  I tried to use sun's java.  That 
> would just crash firebird.  Then, I installed blackdown java.  Now firebird 
> doesn't crash, but java just shows up as a gray frame in the browser.  I'm 
> pulling my hair out trying to solve this, but I'm having no luck.  At least 
> now firebird doesn't crash.

hi, 

do you have a link in your /usr/lib/mozilla-firebird/plugins/ pointing to 
/usr/local/java/jre/plugin/i386/ns610-gcc32/libjavaplugin_oji.so ?

I installed it from Sun and never had any problem using first mozilla,
mozilla-firebird and, now, mozilla-firefox. 

cheers, 

Rodrigo

-- 
Rodrigo Agerri 
Dept. of Computing
City University, London
Tel: 0044 (0) 20 7040 0292
http://www.soi.city.ac.uk/~au700


signature.asc
Description: Digital signature


Re: burning CDs, or, Ah, now ESR's rant makes sense . . .

2004-03-18 Thread Rodrigo Agerri
Kent West says:
> 
> I'd be thrilled if anyone could tell me how to get eroaster to see my 
> burner, or alternatively, to point me to a relatively intuitive burner 
> application.

although I am not a KDE user, I installed K3b. It is very good and
intuitive burner application. 

you can check a screenshot of the application here: 

http://www.soi.city.ac.uk/~au700/k3bshot.png

cheers

-- 
Rodrigo Agerri
Dept. of Computing
City University, London
Tel: 0044 (0) 20 7040 0292
http://www.soi.city.ac.uk/~au700


signature.asc
Description: Digital signature


Re: ide-scsi emulation not working

2004-03-17 Thread Rodrigo Agerri
Kent West wrote:
> 
> I'm running sid, with a stock 2.6.3-1-686 kernel.
> 

As someone else has said, using scsi emulation for 2.6.x kernels is
deprecated.  

However, 

> I've tried adding
>  append="hdc=scsi"
> to lilo.conf (and rerunning lilo and rebooting).

here you need 

append="hdc=ide-scsi"

> 
> [EMAIL PROTECTED]:/home/westk:> ls -l /dev/sg*
> crw---1 root root  21,   0 2003-12-31 18:31 /dev/sg0
> crw---1 root root  21,   1 2003-12-31 18:31 /dev/sg1

I think that /dev/sg* should be group readable; moreover, its group is cdrom and
the user should be a member of that group. 

Then, /dev/cdrom (for example) should point to /dev/sg*

hope it helps, 

cheers, 

Rodrigo


signature.asc
Description: Digital signature


  1   2   3   >