From owner-freebsd-questions@FreeBSD.ORG Sat Feb 2 16:22:37 2013 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 0B569314 for ; Sat, 2 Feb 2013 16:22:37 +0000 (UTC) (envelope-from jrisom@gmail.com) Received: from mail-ie0-x22a.google.com (ie-in-x022a.1e100.net [IPv6:2607:f8b0:4001:c03::22a]) by mx1.freebsd.org (Postfix) with ESMTP id C0FAB9CE for ; Sat, 2 Feb 2013 16:22:36 +0000 (UTC) Received: by mail-ie0-f170.google.com with SMTP id c11so4408206ieb.15 for ; Sat, 02 Feb 2013 08:22:36 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=x-received:message-id:date:from:user-agent:mime-version:to:subject :references:in-reply-to:content-type:content-transfer-encoding; bh=PCpL4fOswAPvdim87Mr5qWpSRa2AISXOG14gKXLjQiA=; b=uUVhOLqlZMcwJvXLd1tAlf2Vgms/dQCHPayQkhT4203UUR1dXZGHtNcryXNPPk/HC+ +Usk6IvP175bc1JKwF+jowJAGBDQOFQPDmp6EbRYvD/DK5ADdma2L2mp4PHM4jS2ZlME F8aiMaog18AZCgGD/KHtutm8hhNPETQinKL5y2OuKK5mUZ0Hazc/Sdz264KJVYCnJWAZ G3OI+o/xu5dRV3LYdst53rEbc13pSWBJh4R+lOyRPBxNilGRat+9PSnum8pPSHTQJZj5 e9B4kqYaMlCpgB8GO4Z9BmOfgRHdeLszPpCPfb+DQMF04KVy/8wMT3vREOR/zO57VDVu 01GA== X-Received: by 10.50.91.195 with SMTP id cg3mr1519517igb.57.1359822156519; Sat, 02 Feb 2013 08:22:36 -0800 (PST) Received: from [192.168.1.14] (c-98-212-197-211.hsd1.il.comcast.net. [98.212.197.211]) by mx.google.com with ESMTPS id rd10sm6757356igb.1.2013.02.02.08.22.35 (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Sat, 02 Feb 2013 08:22:35 -0800 (PST) Message-ID: <510D3D46.7080806@gmail.com> Date: Sat, 02 Feb 2013 10:22:30 -0600 From: Joshua Isom User-Agent: Mozilla/5.0 (Windows NT 6.2; WOW64; rv:17.0) Gecko/20130107 Thunderbird/17.0.2 MIME-Version: 1.0 To: freebsd-questions@freebsd.org Subject: Re: tmux and konsole characters References: <510D35F8.8010004@drenet.info> In-Reply-To: <510D35F8.8010004@drenet.info> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 02 Feb 2013 16:22:37 -0000 On 2/2/2013 9:51 AM, Andre Goree wrote: > I'm having an issue with tmux on certain ssh connections. When I > connect to my freebsd server's tmux session that has multiple panes in > one window, everything looks fine. However, when I connect to my linux > box, I get this weird character [1] instead of a line as I would expect. > > Any ideas on how I can fix this? Really just an annoyance rather than a > real issue, but I'm sure someone has come across this before and fixed > it. Googling wasn't much help -- though I did find some solutions, they > did not work for me. > > [1]http://www.drenet.net/images/snapshot2.png > > It's just a $TERM issue by the looks of it. If you set $TERM in any of your .cshrc scripts, or .profile, it's probably set to something different than what Konsole's using. Try running `setenv TERM xterm-color` before running tmux and see if that fixes it. Run `echo $TERM` just so you can know what it is set to. You'll have to track down where it changes to prevent it in the future.