Problems with "write" and "wall"


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Problems with "write" and "wall"
# 1  
Old 10-23-2012
Problems with "write" and "wall"

Hello,
I am using VirtualBox to simulate a small network with two Linux computers, the host is Mac OS X. My problem is that I can't send "write" and "wall" messages from the host to one of those Linux computers.

Here is what works:
- The virtual Linux computer answers "ping" messages that have been sent from the Mac OS X host.
- Both computers can ping the router.
- The virtual Linux computer can ping internet hosts like 173.194.34.136.

Here is what doesn't work:
- I can't send "write" and "wall" messages from the host to the Linux guest computer and vice versa.
- The wall commands are dispatched, but not received.
- The write command doesn't work as expected, because I'm a receiving a
" user1 is not logged in on pts/2" although user1 is logged in
in pts/2 (the Linux computer).


Here are my Linux cable connection settings:
IP-address: 192.168.0.102
Netmask: 255.255.255.0
Router/Gateway-IP: 192.168.0.1
DNS-Server: 192.168.0.1

Here are my network settings in VirtualBox for this Linux installation:
- Bridged networking
- PCnet-FAST III
- Promiscuous mode: for all VMS and host

What might be going wrong here? Smilie
# 2  
Old 10-23-2012
Quote:
Originally Posted by 123_abc
My problem is that I can't send "write" and "wall" messages from the host to one of those Linux computers.
wall and write are for sending messages to local terminals. They do not send messages across the network.

Regards,
Alister
This User Gave Thanks to alister For This Post:
# 3  
Old 10-23-2012
Thanks. I also tried "talk", but the callee doesn't respond to the invitation.

Which commands could also be used to write some kind of simple network messaging script? Maybe netcat?

Last edited by 123_abc; 10-23-2012 at 11:09 AM..
# 4  
Old 10-23-2012
talk is positively ancient, and seems to use ancient BSD networking protocols no longer extant. If you can get it, ntalk seems the more modern equivalent.
This User Gave Thanks to Corona688 For This Post:
# 5  
Old 10-23-2012
Thanks. Do you think that nc is a good candidate for writing a network messaging script?
# 6  
Old 11-05-2012
Quote:
Originally Posted by 123_abc
Thanks. Do you think that nc is a good candidate for writing a network messaging script?
on the your comp
Code:
# nc -l 44222

on the remote computer
Code:
# nc $REMOTEIP 44222


and as a differ idea maybe try this (must be ssh pub/priv key auth),but im not sure is the way,because of to me,
best way use the relate4d talk softwares for mac os or write a specific programme in any platforme (c,python...others)

Code:
# REMOTE=192.168.0.XXX;while :;do read -rp "Write-> $REMOTE..." MSG;ssh -T $REMOTE <<END
> echo "$MSG">/dev/console
> END
> done

regards
ygemici

Last edited by ygemici; 11-05-2012 at 10:14 AM..
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. AIX

Apache 2.4 directory cannot display "Last modified" "Size" "Description"

Hi 2 all, i have had AIX 7.2 :/# /usr/IBMAHS/bin/apachectl -v Server version: Apache/2.4.12 (Unix) Server built: May 25 2015 04:58:27 :/#:/# /usr/IBMAHS/bin/apachectl -M Loaded Modules: core_module (static) so_module (static) http_module (static) mpm_worker_module (static) ... (3 Replies)
Discussion started by: penchev
3 Replies

2. Shell Programming and Scripting

Bash script - Print an ascii file using specific font "Latin Modern Mono 12" "regular" "9"

Hello. System : opensuse leap 42.3 I have a bash script that build a text file. I would like the last command doing : print_cmd -o page-left=43 -o page-right=22 -o page-top=28 -o page-bottom=43 -o font=LatinModernMono12:regular:9 some_file.txt where : print_cmd ::= some printing... (1 Reply)
Discussion started by: jcdole
1 Replies

3. UNIX for Dummies Questions & Answers

Using "mailx" command to read "to" and "cc" email addreses from input file

How to use "mailx" command to do e-mail reading the input file containing email address, where column 1 has name and column 2 containing “To” e-mail address and column 3 contains “cc” e-mail address to include with same email. Sample input file, email.txt Below is an sample code where... (2 Replies)
Discussion started by: asjaiswal
2 Replies

4. Solaris

The slices "usr", "opt", "tmp" disappeared!!! Help please.

The system don't boot. on the screen appears following: press enter to maintenance (or type CTRL-D to continue)...I checked with format command. ... the slices "0-root","1-swap","2-backup" exist. ...the slises "3-var","6-usr" -unassigned. :( (16 Replies)
Discussion started by: wolfgang
16 Replies

5. Shell Programming and Scripting

how to use "cut" or "awk" or "sed" to remove a string

logs: "/home/abc/public_html/index.php" "/home/abc/public_html/index.php" "/home/xyz/public_html/index.php" "/home/xyz/public_html/index.php" "/home/xyz/public_html/index.php" how to use "cut" or "awk" or "sed" to get the following result: abc abc xyz xyz xyz (8 Replies)
Discussion started by: timmywong
8 Replies

6. Shell Programming and Scripting

awk command to replace ";" with "|" and ""|" at diferent places in line of file

Hi, I have line in input file as below: 3G_CENTRAL;INDONESIA_(M)_TELKOMSEL;SPECIAL_WORLD_GRP_7_FA_2_TELKOMSEL My expected output for line in the file must be : "1-Radon1-cMOC_deg"|"LDIndex"|"3G_CENTRAL|INDONESIA_(M)_TELKOMSEL"|LAST|"SPECIAL_WORLD_GRP_7_FA_2_TELKOMSEL" Can someone... (7 Replies)
Discussion started by: shis100
7 Replies

7. UNIX for Dummies Questions & Answers

Explain the line "mn_code=`env|grep "..mn"|awk -F"=" '{print $2}'`"

Hi Friends, Can any of you explain me about the below line of code? mn_code=`env|grep "..mn"|awk -F"=" '{print $2}'` Im not able to understand, what exactly it is doing :confused: Any help would be useful for me. Lokesha (4 Replies)
Discussion started by: Lokesha
4 Replies

8. Shell Programming and Scripting

communicating wth another user aside from "wall" and "write"

Hi, Can anyone suggest a Unix command or c-shell algorithm to simulate to behavior of "wall" command minus the "all users"? What I'm trying to do is to send a notice to just one particular user but i dont want other remotely-logged-on users to receive the message (on the pseudo-terminals). I... (6 Replies)
Discussion started by: Deanne
6 Replies

9. UNIX for Dummies Questions & Answers

Need info:"talk,write and wall"

hi nu 2 this forum., can any one tell me how to 'talk' to a person on other system who is connected in a network(LAN) via terminal....... and when to use wall,write and talk.. regards leenus :) (1 Reply)
Discussion started by: mr.anilbabu
1 Replies
Login or Register to Ask a Question