Sponsored Content
Full Discussion: debian help
Top Forums UNIX for Dummies Questions & Answers debian help Post 6835 by LivinFree on Thursday 13th of September 2001 09:00:00 AM
Old 09-13-2001
To get Xwindows going, assuming it is installed correctly, you can usually just type:
startx

If you can ping by IP, but not by hostname, I'd check your /etc/resolv.conf file first. It would normally have the following format:
$ cat /etc/resolv.conf

domain yourisp.net
nameserver 123.321.123.321
nameserver 321.123.321.123
search yourisp.net
$

Of course, you need to replace the information there with your own - if you don't know what your nameserver addresses are, your ISP can provide them for you.

Hope that does it!
 

9 More Discussions You Might Find Interesting

1. Debian

Networking in Debian

I've recently installed the Sarge version of Debian Linux and have run into a problem with it's networking abilities. I access the internet by cable modem, connected to a linksys broadband router. The router is set up to allow full access to this computer. When I run dhclient from Debian, it... (0 Replies)
Discussion started by: Losie
0 Replies

2. UNIX for Dummies Questions & Answers

command for debian OS

Hi All, I am unable to find the command for knowing the RAM size on debian os. Also i am unable to use the command shutdown on command line. it asks for the following options: cloud9:~# shutdown Usage: shutdown time -a: use /etc/shutdown.allow ... (6 Replies)
Discussion started by: gauri
6 Replies

3. Debian

Debian Help

It says that these files should be written to a floppy: Studenten Net Twente - Index of /debian/dists/etch/main/installer-i386/current/images/floppy/ How would all of those fit onto a floppy? Could I write a CD instead? (8 Replies)
Discussion started by: Bradj47
8 Replies

4. UNIX for Advanced & Expert Users

Debian becomes slow!

Hi all, I've a debian 4 etch machine which runs on a HP Proliant G5 server. My server became too slow yesterday. I restarted the it and also try to run in Run Level 1 but nothing changed. This is the status of my debian box: top - 12:33:11 up 34 min, 3 users, load average: 0.00, 0.03, 0.21... (2 Replies)
Discussion started by: mjdousti
2 Replies

5. Debian

Can't see anything after debian loads

Hey, I recently installed Debian on a desktop PC but when it starts I can't see anything (the monitor say no signal). I don't have any idea or even a way to figure out what going on here since I can't see anything at all not even the console. Is there something that I missed in the install, or is... (22 Replies)
Discussion started by: neur0n
22 Replies

6. UNIX for Dummies Questions & Answers

vnc4server on debian

Hello, Lately installed vnc4server on debian, however it listens only to ipv6, how is it possible to force vnc4server to listen both ipv4 and ipv6 ? the cat /proc/sys/net/ipv6/bindv6only returns 0 debian stable 6.0.1 thanks. (2 Replies)
Discussion started by: hachik
2 Replies

7. Debian

Debian SPARC

Hello, Anyone already tried to install Debian Sparc in a Sun V880 ?! I'm trying to and after I boot it with the CDROM the system starts to boot up and I don't see any errors message but it freezes after it detects the USB ports (There is nothing attached to it and I don't use it). Here is a... (8 Replies)
Discussion started by: pxb368@motorola
8 Replies

8. Debian

Can't Login to Debian 8.1

I installed Debian 8.1:cool: with Xubuntu as dual boot :D... During installation of Debian 8.1 i skipped user account creation :confused: ...now i can't login to Debian 8.1 :(:eek: ..help... (1 Reply)
Discussion started by: Zorion10
1 Replies

9. Debian

Need to upgrade Debian 7.8 to Debian 8.5 (Not 8.5)

Hello, I need to upgrade my Debian system 7.8 to 8.5 but by default via apt-get It moves to 8.6 version(latest stable version). I'm new to Debian so didn't figure out the solution. I've checked few suggestions over internet like editing apt source list file using snapshot archive. Please... (2 Replies)
Discussion started by: Mannu2525
2 Replies
APT_AUTH.CONF(5)							APT							  APT_AUTH.CONF(5)

NAME
apt_auth.conf - Login configuration file for APT sources and proxies DESCRIPTION
APT configuration files like sources.list(5) or apt.conf(5) need to be accessible for everyone using apt tools on the system to have access to all package-related information like the available packages in a repository. Login information needed to connect to a proxy or to download data from a repository on the other hand shouldn't always be accessible by everyone and can hence not be placed in a file with world-readable file permissions. The APT auth.conf file /etc/apt/auth.conf can be used to store login information in a netrc-like format with restrictive file permissions. NETRC-LIKE FORMAT The format defined here is similar to the format of the ~/.netrc file used by ftp(1) and similar programs interacting with servers. It is a simple token-based format with the following tokens being recognized; Unknown tokens will be ignored. Tokens may be separated by spaces, tabs or newlines. machine hostname[:port][/path] Entries are looked up by searching for the machine token matching the hostname of the URI apt needs login information for. Extending the netrc-format a portnumber can be specified. If no port is given the token matches for all ports. Similar the path is optional and only needed and useful if multiple repositories with different login information reside on the same server. A machine token with a path matches if the path in the URI starts with the path given in the token. Once a match is made, the subsequent tokens are processed, stopping when the end of file is reached or another machine token is encountered. login name The username to be used. password string The password to be used. EXAMPLE
Supplying login information for a user named apt with the password debian for the sources.list(5) entry deb http://example.org/debian stretch main could be done in the entry directly: deb http://apt:debian@example.org/debian stretch main Alternatively an entry like the following in the auth.conf file could be used: machine example.org login apt password debian Or alternatively within a single line: machine example.org login apt password debian If you need to be more specific all of these lines will also apply to the example entry: machine example.org/deb login apt password debian machine example.org/debian login apt password debian machine example.org/debian/ login apt password debian On the other hand neither of the following lines apply: machine example.org:80 login apt password debian machine example.org/deb/ login apt password debian machine example.org/ubuntu login apt password debian machine example.orga login apt password debian machine example.net login apt password debian NOTES
Basic support for this feature is present since version 0.7.25, but was undocumented for years. The documentation was added in version 1.5 changing also the implementation slightly. For maximum backward compatibility you should avoid multiple machine tokens with the same hostname, but if you need multiple they should all have a path specified in the machine token. FILES
/etc/apt/auth.conf Login information for APT sources and proxies in a netrc-like format. Configuration Item: Dir::Etc::netrc. SEE ALSO
apt.conf(5) sources.list(5) BUGS
APT bug page[1]. If you wish to report a bug in APT, please see /usr/share/doc/debian/bug-reporting.txt or the reportbug(1) command. AUTHOR
APT team NOTES
1. APT bug page http://bugs.debian.org/src:apt APT 1.6.3ubuntu0.1 17 August 2017 APT_AUTH.CONF(5)
All times are GMT -4. The time now is 01:18 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy