![]() |
2007-01-31
, 10:31
|
Posts: 3,401 |
Thanked: 1,255 times |
Joined on Nov 2005
@ London, UK
|
#2
|
cd /etc rm -r ./others-menu
The Following User Says Thank You to Milhouse For This Useful Post: | ||
![]() |
2007-01-31
, 22:59
|
Posts: 5 |
Thanked: 0 times |
Joined on Jan 2007
|
#3
|
My first thought, which you might not appreciate, is that you shouldn't be logged in as root if you don't know how to delete a directory!
The delete command is rm (remove), and to delete an entire directory you need to specify the -r switch (ie. rm -r) which will recursivly delete the directory and all files. So, to remove your directory:
Be careful though, as one wrong slip could result in you deleting most of your filesystem (ie. emptying the device of files!)Code:cd /etc rm -r ./others-menu
The problem im having, is that the others-menu folder only displays some of the menu folders, but not all
Here is the examples:
Nokia-N800-51:/etc/others-menu# ls
0300_osso_rss_feed_reader.desktop 1400_tana_fi_utilities
0301_osso-xterm.desktop 2100_tana_fi_games
0500_osso_pdfviewer.desktop 2300_osso-global-search.desktop
0600_osso-addressbook.desktop 2400_osso_help.desktop
1100_filemanager.desktop
Nokia-N800-51:/etc/others-menu#
Its probably something simple im missing.. Any ideas?