**** BEGIN LOGGING AT Sat Mar 21 02:59:57 2009 Mar 21 07:05:14 any ideas on this:# Mar 21 07:05:17 {standard input}: Assembler messages: Mar 21 07:05:17 # Mar 21 07:05:17 {standard input}:7589: Error: undefined symbol `.LLSDACSE1296' in operation Mar 21 07:05:20 # Mar 21 07:05:23 g++: Internal error: Killed (program cc1plus) Mar 21 07:05:26 # Mar 21 07:05:28 Please submit a full bug report. Mar 21 07:05:31 # Mar 21 07:05:33 See for instructions. Mar 21 07:05:36 # Mar 21 17:48:55 hello Mar 21 17:50:36 I have a file that i want to start on my nslu2/slugosBE 5.3 but I can't get it to work. the files name is newcs.nslu2 and the path is /root/newcs/ Mar 21 17:50:53 I have chmod the file with a+x Mar 21 17:51:44 writing ./newcs.nslu2 will create this error: -sh: ./newcs.nslu2: not found Mar 21 17:53:12 ./ means look in the current directory. Mar 21 17:53:26 So ./newcs.nslu2 means to look for newcs.nslu2 in the current directory. Mar 21 17:53:40 yes and i am in that dir Mar 21 17:53:53 if you are in /root, you would need to type ./newcs/newcs.nslu2 in order to execute that file. Mar 21 17:54:33 or better yet, to eliminate all ambiguity, you would type /root/newcs/newcs.nslu2 Mar 21 17:54:38 Does that work? Mar 21 17:55:06 no Mar 21 17:56:18 Ok. Then that probably means that the file is not executable. If you have already done the chmod +x, then it probably means that the file is a script, and that the interpretor named in the first line (in the #! line) is not present or not working. Mar 21 17:57:36 i get this error when i try to cd into the dir Mar 21 17:57:38 root@UTDXB:~# cd /newcs Mar 21 17:57:38 -sh: cd: can't cd to /newcs Mar 21 17:58:12 it is an executable file Mar 21 17:58:15 You said above that newcs was in /root Mar 21 17:58:26 isnt it? Mar 21 17:58:41 How would I know what's on your system? Mar 21 17:58:48 haha Mar 21 17:59:11 drwxr-xr-x 2 root root 4096 Mar 21 02:50 bin Mar 21 17:59:11 drwxr-xr-x 11 root root 1680 Mar 21 18:02 dev Mar 21 17:59:11 drwxr-xr-x 22 root root 4096 Mar 21 18:12 etc Mar 21 17:59:11 drwxr-xr-x 2 root root 4096 Mar 21 01:18 home Mar 21 17:59:11 drwxr-xr-x 18 root root 0 Jan 1 1970 initrd Mar 21 17:59:12 drwxr-xr-x 5 root root 4096 Mar 4 07:05 lib Mar 21 17:59:14 drwx------ 2 root root 16384 Mar 21 01:09 lost+found Mar 21 17:59:16 drwxr-xr-x 11 root root 4096 Mar 21 01:18 media Mar 21 17:59:18 drwxr-xr-x 2 root root 4096 Jan 1 1970 mnt Mar 21 17:59:20 dr-xr-xr-x 37 root root 0 Jan 1 1970 proc Mar 21 17:59:22 drwxr-xr-x 3 root root 4096 Mar 21 19:53 root Mar 21 17:59:24 drwxr-xr-x 2 root root 4096 Mar 21 01:25 sbin Mar 21 17:59:26 -rw-r--r-- 1 root root 33554432 Mar 21 01:21 swapfile Mar 21 17:59:28 drwxr-xr-x 11 root root 0 Jan 1 1970 sys Mar 21 17:59:30 lrwxrwxrwx 1 root root 8 Mar 21 01:18 tmp -> /var/tmp Mar 21 17:59:32 drwxr-xr-x 10 root root 4096 Mar 2 17:39 usr Mar 21 17:59:32 You don't have to show me a lisitng. Mar 21 17:59:34 drwxr-xr-x 8 root root 4096 Mar 21 18:11 var Mar 21 17:59:36 ok Mar 21 17:59:52 you need to find that file. Mar 21 18:00:06 You need to see what the first line of it says. Mar 21 18:00:32 then you need to find out what is wrong with that first line, or if it is right, what is not installed on your system that is needed by that script. Mar 21 18:01:20 where should i put an executabe file, maybe the root dir isnt a good place? Mar 21 18:02:16 You can put it anywhere you like, but you must use the correct path to execute it. Mar 21 18:02:25 What computer systems are you familiar with Niclas? Mar 21 18:02:42 windows :) Mar 21 18:03:25 Ok. If you put abc.exe in a folder named C:\this\that Mar 21 18:03:33 then you would have to execute that problem by typeing Mar 21 18:03:42 C:\this\that\abc Mar 21 18:03:51 There is no real difference in this case. Mar 21 18:04:07 You can move abc.exe all over the place, but it will still require that you use the correct path to find it. Mar 21 18:04:40 So, above, you said that: the files name is newcs.nslu2 and the path is /root/newcs Mar 21 18:04:48 So if that is true, then Mar 21 18:04:56 you must type the following to execute that file: Mar 21 18:05:06 /root/newcs/newcs.nslu2 Mar 21 18:05:15 If that is not working, then: Mar 21 18:05:28 either you have a mistake in your file or directory names, Mar 21 18:05:55 or, that file is a script that requires other programs, and one of those other programs is not present (resulting in "not found") Mar 21 18:06:10 You can easily test the first part: Mar 21 18:06:17 ls /root/newcs/newcs.nslu2 Mar 21 18:06:30 will list that file if it is there. Mar 21 18:06:57 You can test the second part by looking at the first line of that file, and seeing what the text is after the "#!" characters on that first line. Mar 21 18:07:22 root@UTDXB:~/newcs# ls /root/newcs/newcs.nslu2 Mar 21 18:07:25 * mwester is late, must leave. Mar 21 18:07:42 I'm sure someone else here can help - gotta run. Mar 21 18:07:51 ok thank for heklping Mar 21 22:48:06 is there any libcap package??? for slugos?? Mar 21 22:48:10 i cannot find it Mar 21 22:48:27 wouldnt it be libpcap? Mar 21 22:49:23 which is in optware Mar 21 22:50:46 Reedy: no Mar 21 22:50:50 libcap Mar 21 22:50:58 http://www.kernel.org/pub/linux/libs/security/linux-privs/kernel-2.4/capfaq-0.2.txt Mar 21 22:51:17 still i get some errors compiling from there Mar 21 22:51:28 so i was looking for a package Mar 21 22:52:12 as google hits show something about this package in older releases Mar 21 22:52:17 so i was just wondering Mar 21 22:52:22 what happend Mar 21 22:57:49 my bad :P Mar 21 22:57:54 was in kernel 2.4 Mar 21 22:59:34 lol Mar 21 23:01:17 meh ,still errors Mar 21 23:01:18 :P Mar 21 23:03:12 what is this /ld: cannot find -lattr Mar 21 23:03:21 can i safelly remove it from the makefile?ß **** ENDING LOGGING AT Sun Mar 22 02:59:57 2009