LinuxQuestions.org
Download your favorite Linux distribution at LQ ISO.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Software
User Name
Password
Linux - Software This forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum.

Notices


Reply
  Search this Thread
Old 05-23-2004, 10:07 AM   #1
GT_Onizuka
Member
 
Registered: Aug 2003
Location: Atlanta
Distribution: Debian, OS X
Posts: 711

Rep: Reputation: 31
NFO Viewer for Linux?


Well I was googling for NFO viewers for Linux, and I found absolutely nothing. In short anyone know of one for Linux?
 
Old 05-23-2004, 11:00 AM   #2
drigz
Member
 
Registered: Apr 2004
Distribution: Gentoo ~x86
Posts: 407

Rep: Reputation: 30
whats wrong with a normal text editor?
 
Old 05-23-2004, 11:36 AM   #3
delta9
Member
 
Registered: Dec 2003
Distribution: Gentoo
Posts: 66

Rep: Reputation: 15
Quote:
Originally posted by drigz
whats wrong with a normal text editor?
it doesn't show ascii art
 
Old 05-23-2004, 11:51 AM   #4
drigz
Member
 
Registered: Apr 2004
Distribution: Gentoo ~x86
Posts: 407

Rep: Reputation: 30
i dont see what you mean - if you just mean putting characters in shapes to have pictures, then like pico and gedit work fine for me...
 
Old 05-23-2004, 12:35 PM   #5
LoungeLizard
Member
 
Registered: Apr 2003
Location: Tampa, Florida
Distribution: Mint 17.2 ,OpenSuse, Kali and Pepermint OS 6
Posts: 276

Rep: Reputation: 30
Gedit should work fine have to make sure word wrap is on
 
Old 05-23-2004, 01:45 PM   #6
vectordrake
Senior Member
 
Registered: Nov 2003
Location: NB,Canada
Distribution: Something alpha or beta, binary or source...
Posts: 2,280
Blog Entries: 4

Rep: Reputation: 47
They all seem to. Kwrite does, Jed seems to, Nano seems to, Xedit does. I am sure that Nedit will too. Lotsa choices.
 
Old 01-14-2005, 09:00 PM   #7
s1k
LQ Newbie
 
Registered: Jan 2005
Distribution: Debian, Ubuntu
Posts: 8

Rep: Reputation: 0
None of the suggested alternatives show ASCII art. What I am looking for (and probably the thread starter too) is an application that shows the .nfo files like windows notepad with terminal used as font.

this is how i want it to look:
http://www.nforce.nl/nfos/renderer/l...k.php?id=82241 (just an example...)

/s1k
 
Old 02-11-2005, 01:50 AM   #8
billspork
LQ Newbie
 
Registered: Jul 2004
Distribution: Fedora Core 2
Posts: 26

Rep: Reputation: 15
VI seems to do the trick, but I don't know if that's exactly what you're looking for.

Billspork
 
Old 02-11-2005, 05:27 PM   #9
s1k
LQ Newbie
 
Registered: Jan 2005
Distribution: Debian, Ubuntu
Posts: 8

Rep: Reputation: 0
No it doesn't look right in VI, same as all the other viewers i have tried. Any other suggestions?
 
Old 02-19-2005, 09:38 AM   #10
mephist0666
LQ Newbie
 
Registered: Feb 2005
Location: Germany
Distribution: Debian Sarge
Posts: 6

Rep: Reputation: 0
Talking

hi guys

i have a solution

just select a fixed sized font in aterm to show ascii properly.

i use this font :

in my .Xresources :

aterm*font:-dosemu-vga-medium-r-normal-*-*-160-*-*-p-*-ibm-cp437

and a user in #linuxger (ircnet) told me it would also work to change to cp437 but i didnt test it yet.

hope this helps some of you.

greets

mephist0
 
Old 03-08-2005, 08:01 AM   #11
mephist0666
LQ Newbie
 
Registered: Feb 2005
Location: Germany
Distribution: Debian Sarge
Posts: 6

Rep: Reputation: 0
Talking

i have written a little bash script to view .nfo files properly :

#!/bin/sh
consolechars -m cp437
cat $1
consolechars -m iso01

just copy to /usr/bin

and type:

nfo <dir.file.nfo>

and youre done

greetz mephist0

Last edited by mephist0666; 03-08-2005 at 08:03 AM.
 
Old 04-07-2005, 09:05 PM   #12
guillaumerava
LQ Newbie
 
Registered: Apr 2005
Location: Seattle, Washington
Distribution: centos, ubuntu, RHEL-AS5, RHEL-WS4, RHEL-WS5
Posts: 5

Rep: Reputation: 0
Solution with gvim

Hey thanks mephist0666 for the solution w/ consolechars,
but I don't have consolechars on my gentoo box..

If you open the .nfo file with gvim, and then type:

:set encoding=8bit-437

it will switch to a character set appropriate for ascii art.

Then do a :

:set encoding=latin1

to switch back to normal (or whatever your default set up is)

Anybody knows how to script the .vimrc file to tell it that if the file extension is .nfo then switch encoding to 8bit-437 ?

- Guillaume.
 
Old 04-14-2005, 10:48 PM   #13
miner
Member
 
Registered: Feb 2004
Location: Canada
Distribution: FC3
Posts: 73

Rep: Reputation: 15
the suggestions above are a little complicated for me but through wine an .nfo viewer called jane displays the art perfectly. here is a sample of what jane can do

here is the jane website = http://www.kifoth.de/jane/html/download.php
 
Old 04-20-2005, 07:56 PM   #14
ow50
LQ Newbie
 
Registered: Apr 2005
Location: Finland
Distribution: Ubuntu Breezy
Posts: 2

Rep: Reputation: 0
I wrote a simple nfo viewer in Python using GTK2.

To try it:
1. Install packages Python and PyGTK if you don't have them already.

2. Get the Lucida Console P font
monospace works as well, but it's not as good.

3. Download my script
http://koti.mbnet.fi/~ots/scripts/nfoview
Put it for example in ~/bin or some place that's in your PATH and give it execute permissions. Edit the settings at the start of the file if needed.

4. Use it
Code:
nfoview file.nfo
For easy use, you can add a mime-type for .nfo extension and make a desktop file for nfoview.

Last edited by ow50; 10-28-2005 at 07:57 AM.
 
Old 05-01-2005, 05:38 PM   #15
gh0strida
LQ Newbie
 
Registered: May 2005
Distribution: Ubuntu 5.04
Posts: 1

Rep: Reputation: 0
ow50,

works great .. thx
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Picture Viewer for Linux mykyl Linux - Software 22 08-15-2006 06:27 AM
Pocket Viewer on Linux Link182 Linux - Newbie 1 04-11-2005 10:56 AM
Image Viewer for Linux Sader Slackware 17 03-13-2005 11:03 PM
Palm viewer for linux stelmed Linux - Software 1 10-23-2004 06:17 PM
good image viewer for linux bosewicht Linux - Newbie 6 01-15-2004 11:32 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Software

All times are GMT -5. The time now is 07:09 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration