LinuxQuestions.org
Download your favorite Linux distribution at LQ ISO.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Reply
  Search this Thread
Old 09-28-2006, 11:38 AM   #16
soggycornflake
Member
 
Registered: May 2006
Location: England
Distribution: Slackware 10.2, Slamd64
Posts: 249

Rep: Reputation: 31

Quote:
401 ls
391 v
381 l
234 cd
175 jo
171 mv
156 cp
150 wg
143 man
141 wget
This is the box I used to get online, not my main box, which is why wget is in there (v is an alias for less, l is 'ls -l', wg is 'wget -c --passive-ftp' to get through the firewall, jo is short for joe, the text editor).

And as root:
Quote:
184 ls
179 l
155 v
101 jo
96 cd
89 iptables
79 cp
76 rm
66 mount
42 route

Last edited by soggycornflake; 09-28-2006 at 11:40 AM.
 
Old 09-28-2006, 11:54 AM   #17
Eternal_Newbie
Member
 
Registered: Jun 2005
Location: The Pudding Isles
Distribution: Slackware
Posts: 573

Rep: Reputation: 59
Code:
     43 su
     37 cd
     23 ls
     18 mount
     13 man
      6 wine
      5 startx
      4 winecfg
      4 umount
      4 top
looks like I have a bad habit of forgetting to unmount stuff :/
 
Old 09-28-2006, 11:57 AM   #18
DotHQ
Member
 
Registered: Mar 2006
Location: Ohio, USA
Distribution: Red Hat, Fedora, Knoppix,
Posts: 548

Rep: Reputation: 33
Before opening this thread I was trying to name the top 10. While I was close I didn't come up with all 10.

211 ls
130 cd
60 su
56 exit
36 vi
36 df
32 ps
32 more
31 top
20 rpm
 
Old 09-28-2006, 12:09 PM   #19
haertig
Senior Member
 
Registered: Nov 2004
Distribution: Debian, Ubuntu, LinuxMint, Slackware, SysrescueCD, Raspbian, Arch
Posts: 2,331

Rep: Reputation: 357Reputation: 357Reputation: 357Reputation: 357
Quote:
Originally Posted by Eternal_Newbie
looks like I have a bad habit of forgetting to unmount stuff :/
Looks like my problem is unmounting stuff that apparently wasn't even mounted in the first place!
Code:
# history | awk '{print $2}' | awk 'BEGIN {FS="|"} {print $1}' | sort|uniq -c | sort -rn | head -10
    112 ls
     86 cd
     58 pwd
     40 vi
     18 exit
     17 rm
     15 mysql
     11 df
      9 umount
      9 make
#
 
Old 09-28-2006, 12:12 PM   #20
haertig
Senior Member
 
Registered: Nov 2004
Distribution: Debian, Ubuntu, LinuxMint, Slackware, SysrescueCD, Raspbian, Arch
Posts: 2,331

Rep: Reputation: 357Reputation: 357Reputation: 357Reputation: 357
Quote:
Originally Posted by haertig
Looks like my problem is unmounting stuff that apparently wasn't even mounted in the first place!
Hey! That post evidently bumped me up to a "Senior Member". Pretty pitiful actually. I was hoping for something more ... useful ... as the post that got me promoted!
 
Old 09-29-2006, 02:00 AM   #21
Emmanuel_uk
Senior Member
 
Registered: Nov 2004
Distribution: Mandriva mostly, vector 5.1, tried many.Suse gone from HD because bad Novell/Zinblows agreement
Posts: 1,606

Rep: Reputation: 53
zwylinux I suggest you post the command line into
the tips and tricks thread
 
Old 09-29-2006, 05:01 AM   #22
d0tc0mguy
Member
 
Registered: Apr 2005
Location: India
Distribution: Fedora
Posts: 35

Rep: Reputation: 15
[root@Test ~]# history | awk '{print $2}' | awk 'BEGIN {FS="|"} {print $1}' | sort|uniq -c | sort -rn | head -10
244 ls
89 cd
78 180
55 sed
54 vim
50 for
49 vi
39 grep
29 ssh
23 man
 
Old 09-29-2006, 05:08 AM   #23
Emmanuel_uk
Senior Member
 
Registered: Nov 2004
Distribution: Mandriva mostly, vector 5.1, tried many.Suse gone from HD because bad Novell/Zinblows agreement
Posts: 1,606

Rep: Reputation: 53
Newbie's Top Ten Commands
http://web.archive.org/web/200503210...steve/ntt.html
 
Old 09-29-2006, 05:14 AM   #24
odcheck
Member
 
Registered: Aug 2006
Distribution: Fedora, CentOS, RHEL, Debian
Posts: 978

Rep: Reputation: 31
on the client as root

Quote:
122 ls
116 cd
82 vi
62 exit
41 mount
35 iwconfig
30 locate
27 ifconfig
25 ping
23 ifup
and as user
Quote:
217 su
138 exit
120 cd
78 ls
69 ll
38 wine
38 vi
31 ping
19 /sbin/ifconfig
18 locate
and on the server
Quote:
177 vi
148 ls
136 cd
107 service
33 exit
32 ll
27 cp
25 chkconfig
20 cat
15 chmod
 
Old 09-29-2006, 05:40 AM   #25
sharathg786
Member
 
Registered: Sep 2005
Location: India
Distribution: Slackware, Back|track, Fedora, ubuntu
Posts: 167

Rep: Reputation: 30
78 cd
63 ls
52 tin
35 su
31 ps
24 kill
22 vim
21 rtin
13 slrn
13 fg
 
Old 09-29-2006, 05:41 AM   #26
muha
Member
 
Registered: Nov 2005
Distribution: xubuntu, grml
Posts: 451

Rep: Reputation: 38
Code:
$ ~: history | cut -c 8-|cut -f1 -d" " | sort|uniq -c|sort -rn | head -n10
    151 l
    120 cd
     67 cat
     65 ls
     47 sed
     45 for
     42 commands
     34 vi
     28 man
     27 fg

# history | awk '{print $2}' | awk 'BEGIN {FS="|"} {print $1}' | sort|uniq -c | sort -rn | head -10
    157 l
    113 cat
    101 cd
     93 vi
     66 apache2ctl
     65 ls
     53 cp
     40 fg
     36 rm
     31 /etc/init.d/mysql
- commands is a thing that opens a logfile in vi. The logfile is like my personal howto for commands I use in bash or wherever.
- Go sed! Sed rules.
- fg is because I always <Ctrl>z out of vi to suspend it. Then resume vi with fg.
- I like to shutdown apache when i'm not testing websites on my box / same for mysql.
- for: I like one-liners.
 
Old 09-29-2006, 06:04 AM   #27
serafean
Member
 
Registered: Mar 2006
Location: Czech Republic
Distribution: Gentoo, Chakra
Posts: 997
Blog Entries: 15

Rep: Reputation: 136Reputation: 136
As root :
Quote:
72 cd
53 emerge
52 nano
44 ls
23 ping
21 ifconfig
18 iwconfig
16 make
14 exit
10 rc-update
As normal user :
Quote:
13 su
5 exit
5 cd
3 ls
2 history
2 dmesg
1 toperm
1 qoos
1 nano
1 env-update
Well hey, think I should learn that 'Working as root is dangerous' :-)
And, qoos is an accident, couldn't find the openoffice quickstart applet.

Last edited by serafean; 09-29-2006 at 06:05 AM.
 
Old 09-29-2006, 06:29 AM   #28
amitsharma_26
Member
 
Registered: Sep 2005
Location: New delhi
Distribution: RHEL 3.0/4.0
Posts: 777

Rep: Reputation: 31
Code:
     121 iptables
     90 service
     74 vi
     60 mplayer :D 
     58 ip
     50 ping
     45 /xyz.sh
     33 pkill
     33 exit
     30 find
Now dont ask how did i got that mplayer in top 10.
 
  


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
Computers and You: A Survey theCSapprentice General 23 11-09-2005 11:58 AM
help in conducting a survey tuxfood General 11 01-11-2004 07:22 PM
distro survey KptnKrill General 22 10-18-2003 03:27 PM
Survey, Please vote Drogo General 9 06-30-2003 03:32 PM
A scan Survey ?? raz Linux - Security 2 05-02-2001 02:32 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 01:13 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