Sponsored Content
Operating Systems Linux Ubuntu Connect 2 laptops with RJ45 cable (Ubuntu 10.10 laptop with Windows 7 laptop) Post 302475652 by nocleader on Monday 29th of November 2010 11:50:31 AM
Old 11-29-2010
I'd use a crossover cable in this case. As the speed you are getting is not ideal, try and and hard set the NIC card speed/duplex on both sides of the cable to see if that works better.

speed=100; duplex=full; ... for example
OR
speed-auto; duplex=auto ... just use whatever works best
 

9 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

How to connect laptop to Unix system via Parallel port

Hi, I have been using a computer to keep track of inventory for my business. I am pretty sure it runs on Unix. In the back of the computer there is some sort of PCI card that has about 8 RJ-11 ports on it. I use that card to connect the Unix system to my 3 VT-220 terminals. I use a simple 6... (1 Reply)
Discussion started by: john202
1 Replies

2. Ubuntu

Toshiba Laptop Won't Run Bluetooth with Ubuntu

I am running Ubuntu 8.1 on a Toshiba Satellite P105-S9337 with built-in Bluetooth hardware. I cannot get the Bluetooth hardware to work with my Microsoft Bluetooth mouse. I have installed the tosh software with no luck. Does anyone have an idea as to what to try. I have several kernel mods... (0 Replies)
Discussion started by: tjloeb
0 Replies

3. Ubuntu

no wireless access on my laptop in ubuntu 9.10

Hii i have installed ubuntu 9.10 and my hp laptop has a wireless (this one works just like the normal volume button touch screen if u touch it wireless works or else it doesnot ) now after installing ubuntu it glows always red and never turn blue.. i have windows 7 on other partition it... (0 Replies)
Discussion started by: phoenix_nebula
0 Replies

4. Ubuntu

power management in ubuntu for laptop

Hi I have the following problem, when I try to work on battery in my laptop, ubuntu consumes power very rapidly and after couple of minuts my laptop is out of battery power. Previosly had win xp on that machine and win was able to manage battery power much better then linux. Is there any... (1 Reply)
Discussion started by: presul
1 Replies

5. Hardware

How to connect a 4TB G-Raid hard drive to a laptop?

I am having trouble connecting my 4TB G-Raid Hard drive to my Compaq Hp laptop can anyone tell me how or what I need in order to connect the 4T and getting it working. (10 Replies)
Discussion started by: Jake Wolf
10 Replies

6. Ubuntu

Ubuntu Lenovo Thinkpad E520-1143 Laptop

Is it possible to install Ubuntu 11.04 or Ubuntu 11.10 in Lenovo Thinkpad E520-1143 Now it Powerd By windowd Xp Professional is it possible to install Ubuntu in it and supports all drivers for ma laptop such as VGA driver Sound,Wireless,Lan , fingerprint,camera pls reply r is it possible to... (0 Replies)
Discussion started by: babinlonston
0 Replies

7. Solaris

Connect from Dell Laptop to SunBlade 100

Hi All I connect to my SunBlade using the keyboard/mouse provided by the sun. Now I would like to connect to it using my dell laptop running on Windows 7. I have connected the laptop to the SunBlade using just a one crossover 9-pin connector using the free/basic version of the terminal... (24 Replies)
Discussion started by: tomicmanka
24 Replies

8. Ubuntu

Laptop to laptop transfer files

Dear all, I would like to transfer my old laptop documents/files etc to the new laptop without using any external hard disk. Please let me know if its possible via any way. Thank in advance, emily (3 Replies)
Discussion started by: emily
3 Replies

9. Solaris

Multiboot on a laptop: windows Solaris Linux

Hi Just want to share.... Multiboot: winlinsos; June 2016 Lenovo x230, 4GB - No internal DVD driver I have # fdisk -l Disk /dev/sda: 120.0 GB, 120034123776 bytes, 234441648 sectors Units = sectors of 1 * 512 = 512 bytes Sector size (logical/physical): 512 bytes / 512 bytes I/O... (0 Replies)
Discussion started by: van12
0 Replies
sg_get_network_iface_stats(3)				     Library Functions Manual				     sg_get_network_iface_stats(3)

NAME
sg_get_network_iface_stats - get network interface statistics SYNOPSIS
#include <statgrab.h> sg_network_iface_stats *sg_get_network_iface_stats(int *entries); DESCRIPTION
The sg_get_network_iface_stats function takes a pointer to an int, entries, which is filled with the number of network interfaces the machine has. This is needed to know how many sg_network_iface_stats structures have been returned. A pointer is returned to the first sg_network_iface_stats. sg_get_network_iface_stats returns statistics about the network interfaces in the machine. Specifically, it returns the speed of the inter- face, the duplex state, and whether it is currently up. RETURN VALUES
The sg_get_network_iface_stats returns a pointer to a structure of type sg_network_iface_stats. typedef enum{ SG_IFACE_DUPLEX_FULL, SG_IFACE_DUPLEX_HALF, SG_IFACE_DUPLEX_UNKNOWN }sg_iface_duplex; Note: The SG_IFACE_DUPLEX_UNKNOWN value could mean that duplex hasn't been negotiated yet. typedef struct{ char *interface_name; int speed; sg_iface_duplex duplex; int up; }sg_network_iface_stats; interface_name The name known to the operating system. (eg. on linux it might be eth0) speed The speed of the interface, in megabits/sec. duplex The duplex state the interface is in. See sg_iface_duplex for permitted values. up Whether the interface is up. SEE ALSO
statgrab(3) WEBSITE
http://www.i-scream.org/libstatgrab/ i-scream $Date: 2005/07/13 09:31:53 $ sg_get_network_iface_stats(3)
All times are GMT -4. The time now is 09:04 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy