New Linux user here


 
Thread Tools Search this Thread
Operating Systems Linux New Linux user here
# 1  
Old 11-30-2005
New Linux user here

I am new to Linux. I currently have RedHat version 2.4.9-e.5smp .

The problem I am trying to get past is that when I select (by highlighting)
some text in my command line Konsole, I am not able to paste it in a regular
text area like my yahoo email. Being able to do that would help me share
information with support.

What do I need to configure ?

Thanks in advance.
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

Pam.d and make difference between AD User and local user on Linux

Hello, i configured rhel linux 6 with AD directory to authorize windows users to connect on the system and it works. i have accounts with high privileges (oracle for example) if an account is created on the AD server i would to block him. I looked for how to do, for the moment all the... (3 Replies)
Discussion started by: vincenzo
3 Replies

2. Linux

Nobody user group in Linux

Hi I am facing problem of taking backup of file system as username1. There are some files in system which is having group ownership as nobody. and username1 is not able to open this file and backup is failing .Even as a root user I can not open this file. File which is creating problem is ... (1 Reply)
Discussion started by: devesh123
1 Replies

3. UNIX for Dummies Questions & Answers

Linux user prompt

Hi, I cant seem to get this right. Lets say I have root privileges and I wanted: a ) edit the user prompt to show "linux1234$" whenever they log-in. also b ) Show a message for users upon logging in. I know a) has something to do with editing PS1. but how to only apply the change for users?... (1 Reply)
Discussion started by: Azi
1 Replies

4. Linux

User Management in linux

Hi All, I have to learn all the user management commend like adduser,useradd,chggrp... etc I would like to know the syntax or example. Please give me document or link. Thanks, Mani (1 Reply)
Discussion started by: Mani_apr08
1 Replies

5. Linux

new linux user

Hello, everyone I am new linux user. Yes, what I mean by that is I am totally new, never touch linux before. Only have one year experience of Solaris. Anyway, I have to learn it because eventually I am going to use it at work. Here is my question: can I buy a cheap netbook (like less... (3 Replies)
Discussion started by: uuontario
3 Replies

6. UNIX for Dummies Questions & Answers

Difference between : Locked User Account & Disabled User Accounts in Linux ?

Thanks AVKlinux (3 Replies)
Discussion started by: avklinux
3 Replies

7. Linux

Linux user limit?

Hi All, I did a search of the forum on this but I could only find answers for UNIX flavours. Are there any limits on the amount of users you can have on a linux box? Have the likes of Red Hat introduced any license limits or is it just constrained by system parameters like ulimit max user... (0 Replies)
Discussion started by: pondlife
0 Replies

8. Gentoo

New Linux user

Hi all, I'm running XPPro and I'm happy about it. I'm hearing many good things about Linux OS and I want to give it a try and install it on my D: drive. XP running on C:\ . I have following quesitons to you'll: 1./ any site I could download a free/trial version of Linux OS? 2/ some free office... (8 Replies)
Discussion started by: stav
8 Replies

9. Linux

Hello!new linux user!I come from china!

Hello everybody!I an new linux user,I come from china!I think you must know!I want to learn linux , I know that learn well,english must be well.but my english is very bad!So i hope you don't mind.I hope i can get help from foreign friends in the future! thank you! (3 Replies)
Discussion started by: aini2003
3 Replies
Login or Register to Ask a Question
LINPROCFS(5)						      BSD File Formats Manual						      LINPROCFS(5)

NAME
linprocfs -- Linux process file system SYNOPSIS
linproc /compat/linux/proc linprocfs rw 0 0 DESCRIPTION
The Linux process file system, or linprocfs, emulates a subset of Linux' process file system and is required for the complete operation of some Linux binaries. The linprocfs provides a two-level view of process space. At the highest level, processes themselves are named, according to their process ids in decimal, with no leading zeros. There is also a special node called self which always refers to the process making the lookup request. Each node is a directory containing several files: exe A reference to the vnode from which the process text was read. This can be used to gain access to the process' symbol table, or to start another copy of the process. mem The complete virtual memory image of the process. Only those addresses which exist in the process can be accessed. Reads and writes to this file modify the process. Writes to the text segment remain private to the process. Each node is owned by the process's user, and belongs to that user's primary group, except for the mem node, which belongs to the kmem group. FILES
/compat/linux/proc The normal mount point for the linprocfs. /compat/linux/proc/cpuinfo CPU vendor and model information in human-readable form. /compat/linux/proc/meminfo System memory information in human-readable form. /compat/linux/proc/pid A directory containing process information for process pid. /compat/linux/proc/self A directory containing process information for the current process. /compat/linux/proc/self/exe The executable image for the current process. /compat/linux/proc/self/mem The complete virtual address space of the current process. EXAMPLES
To mount a linprocfs file system on /compat/linux/proc: mount -t linprocfs linproc /compat/linux/proc SEE ALSO
mount(2), unmount(2), procfs(5), pseudofs(9) HISTORY
The linprocfs first appeared in FreeBSD 4.0. AUTHORS
The linprocfs was derived from procfs by Pierre Beyssac. This manual page was written by Dag-Erling Smorgrav, based on the procfs(5) manual page by Garrett Wollman. BSD
August 10, 1994 BSD