Sponsored Content
Operating Systems Linux Ubuntu Connect 2 laptops with RJ45 cable (Ubuntu 10.10 laptop with Windows 7 laptop) Post 302473882 by Corona688 on Monday 22nd of November 2010 05:52:26 PM
Old 11-22-2010
Quote:
Originally Posted by cgkmal
but I dont know how to connect with success Ubuntu(LiveCD)-Windows 7 laptops, specially how to do the right configuration within Ubuntu 10.10.
From a root prompt, assuming your computer's network adapter is eth0(might be eth1 if there's more than one):
Code:
ifconfig eth0 192.168.1.215 netmask 255.255.255.0
route add default gw 192.168.1.7

...though I'm confused what the default gateway's supposed to do when two computers are joined with a loopback and nowhere else to anything else. You can probably omit it.

If Ubuntu finds a DHCP server it'll wipe out those settings when it autoconfigures, but it shouldn't when it sees nothing but a loopback cable.
Quote:
May somebody help me out with this issue, if you have a step by step procedure
procedure to do what? What do you want to do with these computers once they're talking over IP?
 

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
IFSCHEME(8)							     Commands							       IFSCHEME(8)

NAME
ifscheme - scheme control for network interfaces SYNOPSIS
ifscheme [-v] [[-s] newscheme] mapping <interface> script ifscheme-mapping DESCRIPTION
ifscheme allows you to change network configuraton schemes or query the current scheme. It integrates with the ifup(8) command and inter- faces(5). For example, you might use this program to configure a "home" scheme and a "work" scheme for a network device on a laptop. When you move between home and work, a simple command can reconfigure your networking. If you run the program with no parameters, it will tell what the current network scheme is. The ifscheme-mapping utility is used to tell the ifup and ifdown utilities about the current scheme. OPTIONS
-v --verbose Run in verbose mode. This is passed in to the ifup and ifdown programs as well. -l --list list all schemes available/defined in /etc/network/interfaces. newscheme -s newscheme --scheme newscheme Change to a new network configuration scheme. When the scheme is changed, network interfaces that were using the old scheme will be taken down and brought back up to use the new configuration scheme. -s or --scheme are mandatory if newscheme begins with a -. CONFIGURATION
To make the program do anything useful when a scheme is selected, you must edit /etc/network/interfaces to add a mapping for the interface (or interfaces) that can be controlled on a per-scheme basis. Suppose you want to control eth0 in this way. You might have an existing eth0 configuraton in there, such as: auto eth0 iface eth0 inet static address 192.168.1.5 netmask 255.255.255.0 gateway 192.168.1.1 To change this so you can chose between static routing and dhcp, replace it with the following (it helps to ifdown the interface first). auto eth0 mapping eth0 script ifscheme-mapping iface eth0-home inet static address 192.168.1.5 netmask 255.255.255.0 gateway 192.168.1.1 iface eth0-work inet dhcp Now if you run "ifscheme home" and ifup the interface, you'll get the eth0-home configuration stanza. If you run "ifscheme work", it will be changed to the eth0-work stanza. You can add additional stanzas as desired, but the label must always be of the form <hardware inter- face>-<scheme name>. If you have a second interface (perhaps a wireless network card on eth1), you can duplicate the above for that interface, changing the eth0 and the configuration details as appropriate, but remember to add an iface stanza for every scheme name for the second interface. FILES
/etc/network/interfaces the interfaces definition file /etc/network/run/scheme the current scheme /etc/network/run/ifstate a record of the current state of the interfaces, managed by ifup and ifdown BUGS
All schemed interfaces will have the same scheme. Any schemed interface which does not have an entry for the current scheme and is not configured when the scheme is changed will not be suc- cessfully configured when it is brought up. SEE ALSO
interfaces(5) ifup(8) ifdown(8) DISTRIBUTION
Redistribution is subject to the GNU public license. AUTHORS
Joey Hess <joey@kitenet.net>, Peter Wilson <pwilson@cs.hmc.edu> IFSCHEME(8)
All times are GMT -4. The time now is 06:48 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy