A thread for boring computer questions.

Message Bookmarked
Bookmark Removed
Not all messages are displayed: show all messages (2394 of them)
I have OS-X and a powerbook.. Can I get virtual-PC and run all those fancy games they got on the PC but dont for the Mac?

phil-two (phil-two), Friday, 25 April 2003 13:00 (twenty-one years ago) link

I'm sshing from xterm in Apple X11. Do I have to change something in the ssh config file on the mac box? I've got allow connections etc turned on on X11.

this is what my ssh_config looks like on the apple box, I just uncomented the forwardX11 value

# Host *
# ForwardAgent no
ForwardX11 yes
# RhostsAuthentication no
# RhostsRSAAuthentication no
# RSAAuthentication yes
# PasswordAuthentication yes
# BatchMode no
# CheckHostIP yes
# StrictHostKeyChecking ask
# IdentityFile ~/.ssh/identity
# IdentityFile ~/.ssh/id_rsa
# IdentityFile ~/.ssh/id_dsa
# Port 22
# Protocol 2,1
# Cipher 3des
# Ciphers aes128-cbc,3des-cbc,blowfish-cbc,cast128-cbc,arcfour,aes192-cbc,aes$
# EscapeChar ~

I've perused the man page but I'm not sure quite what I ought to change.

For completeness I'll include the sshd_config from the debian machine:

# Package generated configuration file
# See the sshd(8) manpage for defails

# What ports, IPs and protocols we listen for
Port 22
# Use these options to restrict which interfaces/protocols sshd will bind to
#ListenAddress ::
#ListenAddress 0.0.0.0
Protocol 2
# HostKeys for protocol version 2
HostKey /etc/ssh/ssh_host_rsa_key
HostKey /etc/ssh/ssh_host_dsa_key
#Privilege Separation is turned on for security
UsePrivilegeSeparation yes

# ...but breaks Pam auth via kbdint, so we have to turn it off
# Use PAM authentication via keyboard-interactive so PAM modules can
# properly interface with the user (off due to PrivSep)
PAMAuthenticationViaKbdInt no
# Lifetime and size of ephemeral version 1 server key
KeyRegenerationInterval 3600
ServerKeyBits 768

# Logging
SyslogFacility AUTH
LogLevel INFO

# Authentication:
LoginGraceTime 600
PermitRootLogin yes
StrictModes yes

RSAAuthentication yes
PubkeyAuthentication yes
#AuthorizedKeysFile %h/.ssh/authorized_keys

# rhosts authentication should not be used
RhostsAuthentication no
# Don't read the user's ~/.rhosts and ~/.shosts files
IgnoreRhosts yes
# For this to work you will also need host keys in /etc/ssh_known_hosts
RhostsRSAAuthentication no
# similar for protocol version 2
HostbasedAuthentication no
# Uncomment if you don't trust ~/.ssh/known_hosts for RhostsRSAAuthentication
#IgnoreUserKnownHosts yes

# To enable empty passwords, change to yes (NOT RECOMMENDED)
PermitEmptyPasswords no

# Uncomment to disable s/key passwords
#ChallengeResponseAuthentication no

# To disable tunneled clear text passwords, change to no here!
PasswordAuthentication yes


# To change Kerberos options
#KerberosAuthentication no
#KerberosOrLocalPasswd yes
#AFSTokenPassing no
#KerberosTicketCleanup no
# Kerberos TGT Passing does only work with the AFS kaserver
#KerberosTgtPassing yes

X11Forwarding yes
X11DisplayOffset 10
PrintMotd no
#PrintLastLog no
KeepAlive yes
#UseLogin no
AllowTcpForwarding yes

#MaxStartups 10:30:60
#Banner /etc/issue.net
#ReverseMappingCheck yes

Subsystem sftp /usr/lib/sftp-server

Caitlin you are such an absolute star for guiding me through this.

Ed (dali), Friday, 25 April 2003 13:11 (twenty-one years ago) link

phil, you can but not some of the more graphics intensive ones. The emulated graphis card is not great and the machine within a machine is quite system hungry.

Ed (dali), Friday, 25 April 2003 13:13 (twenty-one years ago) link

so what about counterstrike or something? i see all these kids playing it in the internet hut, and it looks sort of fun

phil-two (phil-two), Friday, 25 April 2003 13:15 (twenty-one years ago) link

get yourself a copy and try. I don't really game so I don't know?

Ed (dali), Friday, 25 April 2003 13:16 (twenty-one years ago) link

I'm a bit stuck because I've never tried running X11 on a Mac.

Is $DISPLAY set in the shell that you're starting ssh from? If you're starting it from an xterm already running under X11, though, I don't see why it shouldn't be.

caitlin (caitlin), Friday, 25 April 2003 13:20 (twenty-one years ago) link

how do I do that is that a setenv thingy?

Ed (dali), Friday, 25 April 2003 13:20 (twenty-one years ago) link

That depends what shell you're using.

To view its current value (I think in any shell) you type:
echo $DISPLAY

To set it, in sh or bash type:
DISPLAY=:0.0
export DISPLAY

(note that when setting it you *don't* type the $ signs. ':0.0' is its current value on my computer.)

If your shell is tcsh, I *think* you type:
set DISPLAY=:0.0

but I'm not entirely sure, because I never use tcsh.

caitlin (caitlin), Friday, 25 April 2003 13:26 (twenty-one years ago) link

Wahhooooooooooooooo. It works. Thank-you Thank-you Thank-you Thank-you Thank-you Thank-you Thank-you Thank-you Thank-you Thank-you Thank-you.

Thanks for spending so much time sorting me out. now to try and get wxPython an pysoulseek working.

Ed (dali), Friday, 25 April 2003 14:22 (twenty-one years ago) link

One last tiny question then I promiseI will shut up. how do I mount network drives in debian, and have them mount automatically at startup.

thanks again

Ed (dali), Friday, 25 April 2003 16:52 (twenty-one years ago) link

It depends what sort of network drives, really.

NFS ones: with the 'mount' command; and by adding them to the file /etc/fstab. SMB ones, I don't know much about.

I'm dashing off home right now, but I'll tell you more on Monday if noone else has by then.

caitlin (caitlin), Friday, 25 April 2003 16:56 (twenty-one years ago) link

thanks

Ed (dali), Friday, 25 April 2003 16:59 (twenty-one years ago) link

It turns out that the answer for mounting network shares, and doing it automatically on boot, is the same as for local filesystems: use mount and list the filesystem in /etc/fstab.

The fstab file format is dead simple: one line per filesystem, with the following fields: device (or network share), mountpoint, filesystem type, options, dump number and fsck number. For network shares, set the last two to zero. All the listed filesystems will be mounted on boot, unless noauto is included in the options column. If you put user or users in the options column, non-root users will be able to mount that filesystem.

Any questions?

caitlin (caitlin), Monday, 28 April 2003 08:07 (twenty-one years ago) link

RE: Mark C and where to get custom built pc's.
try http://www.novatech.co.uk/novatech/PCranges.html?bp
Dead cheap & great service.

Simeon (Simeon), Monday, 28 April 2003 15:14 (twenty-one years ago) link

font question

i really like the look of arial in cleartype. however, my monitor displays poorly with cleartype on. are there tt fonts that simulate the cleartype ones? i don't even know if that question makes sense. The cleartype arial looks close to the font used in ableton live, which i tried to identify - there are some fonts in the program folders with (i think) an .fon extension. i saw some font converters on the web, but they warned of quality loss so that doesn't seem like such a great idea.

where are the best places to browse fonts?

windows doesn't seem able to use any old font as a system font either. are there any ways to force other fonts into windows?

ron (ron), Monday, 5 May 2003 08:03 (twenty years ago) link

er, .fnt

ron (ron), Monday, 5 May 2003 08:05 (twenty years ago) link

i found this thing which would seem to me to be saying that if i had c++ i could create custom .fon files out of the .fnt ones i have

is that right? (this is all theoretical - i prob couldn't figure out what the hell was going on with a programming language, nor do i want to pay for it, nor is this important ;-)

ron (ron), Monday, 5 May 2003 08:39 (twenty years ago) link

Are there any webbased proxy things so I can access websites that are blocked? [im in china]

Also, are there any webmail sites that can also check your webmail on another host? Like my mac.com email cant be accessed from all browsers for some reason

phil-two (phil-two), Tuesday, 6 May 2003 11:27 (twenty years ago) link

Guys why has this thread gone MENTALIST!

PS - I got my laptop to actually LOAD for the first time in MONTHS the other day. I "renamed" some "devices"!

OK I just changed lots of 1's and 0's about and did DEVICEHIGH stuff HOW MUCH DO YOU ALL PH333333R ME NOW?

No I had nothing better to do :(

I admit now it will load all I can do is play Dopewars.

Phil - there's a Google mirror somewhere where I expect you'll be able to search on http proxy or http tunnels - I've lost all my URLS. However the majority of them are blocked even in my dodgy local council so I expect CHINA will have them blocked as well. If you search ILX you should be able to pull it up. Oh I'm no help. If it's any consolation I'm blocked from practically everything here as well... try getting a Yahoo account - they've got a POP3 thing enabled but I doubt that helps you with yr webmail.

Sarah (starry), Tuesday, 6 May 2003 11:39 (twenty years ago) link

"fat bastard cowboy cunt"...FAT SAM!!!!!!!!!

ambrose (ambrose), Tuesday, 6 May 2003 12:45 (twenty years ago) link

indeed I hope he's in prison now getting buggered by an even fatter more unpleasant baby strangler, that would be justice.

Ed (dali), Tuesday, 6 May 2003 12:47 (twenty years ago) link

windows doesn't seem able to use any old font as a system font either. are there any ways to force other fonts into windows?
Used to be you could open up the control panel and just copy fonts into the Fonts folder; then they'd be available to almost any program you'd want to use. Not sure about the system though.

however, my monitor displays poorly with cleartype on.
I haven't seen a monitor yet where it actually improved things. All it's ever done for me is hurt my eyes squinting at the results.

Sean Carruthers (SeanC), Tuesday, 6 May 2003 13:47 (twenty years ago) link

revive!
i have a boring computer question.
but i know nothing about computers so i need laymans terms/stupid proof hints.

my mum and dad have an imac, a g3 one (its about 3 yrs old), aqnd they want to back up all their docs etc, tyo install mac os 9. so they buy a cd writer, an iomega external one, one of those big purple things, and try and burn all their stuff onto cd. the software it comes with is called hotburn and is shit. it generally seems to be going ok, and in theory the disc has been burned, but then doesnt play in the internal cd drive. apparently those internal cd drives are pretty tempramental. so maybe it just doesnt like it. but i want to burn music onto cd. first i try to burn a copy of a cd ive already got, thru hotburn. again, the internal cd doesnt rtecognise the disc as having anything on it. but neither does any other hifi or anyhting we have. which it should, rihght? i mean, it should be able to be played as a cd. i def. burned it as a 'music cd'. so i found toast somewhere and tried tha. but that refused to recvognise the existence of the iomega writer.

even itunes doesnt seem to like the iomega thing. sure, its ugly, but whats with all the hate?

so, can anyone think why the cds we are burning are not being recoginsed by anything. there is stuff on them, because the cd writer recognises them and can play them, whther theyre data oir music, but not anything else.

whats the solution?

ambrose (ambrose), Wednesday, 14 May 2003 09:09 (twenty years ago) link

1) I wouldn't have bought an iomega cd writer.
2) Which version of Toast is it?
3) What ilk of interface connects the cd-r to the mac.
4) You don't need to back up before installing OS 9 although it is advisable upgrading won't touch any of your documents.

If your mac has firewire, take the iomega drive back to the shop and I'll lend you my yamaha drive.

Ed (dali), Wednesday, 14 May 2003 09:15 (twenty years ago) link

1) it was cheap, external and worked with macs
2) er...an old one.
3) ???? you mean the software? usb? 1943? the battle of gettysburg?
4) yes i klnow. but my dad is VERY WORRIED ABOUT HIS 34k WORTH OF ORAL HISTORY DOCUMENTS. HE DOES NOT FEEL SECURE. remeber i am just a conduit for my parents anxieties. i just want tobe able to cane the tunes....

ambrose (ambrose), Wednesday, 14 May 2003 09:23 (twenty years ago) link

2) I'll try and find out what the last version to work with 8.6 is
3) usb or firewire
4) If its only 34k you can email it somewhere for safe keeping

Ed (dali), Wednesday, 14 May 2003 09:28 (twenty years ago) link

question using font size 2, works in IE but what about Netscape/Opera/ Others - does the info get displayed the same?

DJ Martian (djmartian), Wednesday, 14 May 2003 09:40 (twenty years ago) link

Matian, yess, it won't be identical, but the effect will be the same.

I thin, ambrose your problem lies with the fact that the version of toast you have does not support the iomega drive and that later versions of toast need OS 9. You kind of have a circular problem, you might not be able to get this drive working at all.

Find out how much stuff is irreplaceable, stuffit into a .sit file and mail it or upload it somewhere.

Ed (dali), Wednesday, 14 May 2003 09:50 (twenty years ago) link

Problems? With a Mac? Surely that's impossible!!

Mark C (Mark C), Wednesday, 14 May 2003 09:59 (twenty years ago) link

How much does it cost to replace an ibook keyboard, Ed?

Nordicskillz (Nordicskillz), Wednesday, 14 May 2003 11:56 (twenty years ago) link

see here for UK
and here for US.

will tell you how to swap it over

Ed (dali), Wednesday, 14 May 2003 12:26 (twenty years ago) link

"however, my monitor displays poorly with cleartype on.
I haven't seen a monitor yet where it actually improved things. All it's ever done for me is hurt my eyes squinting at the results."

Cleartype is designed for TFT displays, using subpixel anti aliasing.

http://arstechnica.infopop.net/OpenTopic/page?a=tpc&s=50009562&f=67909965&m=2030990365&r=2610982565#2610982565

Try the cleartype adjuster in this thread.

Jarlr'mai (jarlrmai), Wednesday, 14 May 2003 13:17 (twenty years ago) link

Cleartype is designed for TFT displays, using subpixel anti aliasing.
Definitely that's what it's designed for, but I still haven't seen a TFT display where it hasn't just made the text so blurry that it hurt my eyes, with normal use.

Sean Carruthers (SeanC), Wednesday, 14 May 2003 13:48 (twenty years ago) link

If I want to use my integrated eMac monitor as a screen for some input other than my Mac, is that possible? I'd especially like to be able to plug in my PS2 [which has scart or 3 wire DIN (is that the right name) plugs] or maybe even an old PC, though I can see that might be harder. What about a VCR? I guess some kind of USB adaptor box could do it. I might add a TV tuner at some point, if that makes any difference.

N. (nickdastoor), Thursday, 15 May 2003 16:35 (twenty years ago) link

You'd need a usb or firewire video in box. some have TV tuner's built in. I'll google one up for you.

Ed (dali), Thursday, 15 May 2003 16:53 (twenty years ago) link

options

one
two
three

if they don't work go to http://www.cwonline.co.uk/ and search for tv tuner

Ed (dali), Thursday, 15 May 2003 17:02 (twenty years ago) link

Thanks Ed.

What if I wanted to save money by just getting a video in without the tuner? And would the PC thing be possible in any way?

N. (nickdastoor), Thursday, 15 May 2003 17:08 (twenty years ago) link

OK, here's my question: I know it's possible to use a Mac with an Airport card as a base station. I know that you can get PC cards to hook them up to an Aiport network. But: Is it possible to use a PC with an Airport-compatible card as a base station?

Chris P (Chris P), Thursday, 15 May 2003 17:25 (twenty years ago) link

Ach - another problem. Reviews of the MyTv stuff say that it's pretty sketchy in full screen mode cause of the bottleneck cause by the USB bandwidth. Surely a Firewire version is what I need (esp for PS2) but they don't seem to exist.

N. (nickdastoor), Thursday, 15 May 2003 17:30 (twenty years ago) link

firewire things are a bit more pro oriented but I think formac do a thing.

Chris, in theory yes, and I think its a doddle with XP.

Ed (dali), Thursday, 15 May 2003 17:44 (twenty years ago) link

But: Is it possible to use a PC with an Airport-compatible card as a base station?

Depends entirely upon the software controllers on the Windows side of things. It's all 802.11b, so there's no technical reason why you couldn't. I imagine a Windows-user here will have more to say.

Chris Barrus (Chris Barrus), Thursday, 15 May 2003 19:34 (twenty years ago) link

The PCs in question use Win98.

Chris P (Chris P), Thursday, 15 May 2003 23:19 (twenty years ago) link

One for any UK readers: what's a good online shop for ordering PC hardware components? I've used Scan in the past and been happy enough but I've just found out that their score on ResellerRatings is terrible, and since I'll be buying almost a complete set of computer innards it'd be nice to think that I could return them with no hassle if I needed to.

(I've used a couple of other places too but now they're either a lot more expensive than Scan or don't stock the brands/models I was hoping for. Maybe I have to choose between good returns policy, competitive pricing and wide stock with good availability. But in the meantime, I'd be very grateful for any recommendations. Thanks!)

Frazer, Wednesday, 21 May 2003 11:04 (twenty years ago) link

how the hell do i reformat my hd without a win98 disc?

Chris V. (Chris V), Thursday, 22 May 2003 20:44 (twenty years ago) link

"One for any UK readers: what's a good online shop for ordering PC hardware components?"

http://www.dabs.com

Lynskey (Lynskey), Thursday, 22 May 2003 20:47 (twenty years ago) link

http://www.ebuyer.com/ can be good too.

Ed (dali), Thursday, 22 May 2003 21:04 (twenty years ago) link

to reformat your disk, use the FORMAT command. You'll be left with a completely blank disk, though.

caitlin (caitlin), Friday, 23 May 2003 11:19 (twenty years ago) link

How do you multi-window browse using this here new shiny iBook? I.e., this is my first mac and it doesn't seem to have an equivalent of the PC's alt-Tab skipping between applications/internet windows action - or am I BLIND?

Also, does PySoulSeek work?

Also, it says I need to right click and save on Gabba.net butbutbut Mac mice only have ONE BUTTON (WTF?!) how do I download the shizzing new Dizzy Rascal track from Gabba?

Cozen (Cozen), Friday, 23 May 2003 16:09 (twenty years ago) link

Which OS are you running, Cozen? Do a Google search on Mac keyboard shortcuts or something.

pYSoulSeek is apparently a bit tricky and Graham reported than it had stopped working for him entirely.

To right click on a Mac, sometimes holding it down longer works (always a bit confused by this) but if that fails then Ctrl+click will do it.

N. (nickdastoor), Saturday, 24 May 2003 13:04 (twenty years ago) link

Mac OS X, N. Thanks, I'll try that and report back if I fail.

Cozen (Cozen), Saturday, 24 May 2003 13:07 (twenty years ago) link


You must be logged in to post. Please either login here, or if you are not registered, you may register here.