Welcome, Guest
You have to register before you can post on our site.

Username/Email:
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 5,219
» Latest member: glassagencies
» Forum threads: 4,029
» Forum posts: 16,404

Full Statistics

Online Users
There are currently 397 online users.
» 0 Member(s) | 396 Guest(s)
Bing

Latest Threads
How to install Archboot i...
Forum: Network Problems
Last Post: Meup
2025-05-13, 01:41 PM
» Replies: 0
» Views: 511
clear logs in smoothwall
Forum: Security and Firewalls
Last Post: amanda63
2024-03-10, 03:27 PM
» Replies: 8
» Views: 89,206
I cannot install RedHat 8...
Forum: Redhat
Last Post: hybrid
2023-11-11, 01:01 PM
» Replies: 1
» Views: 42,559
How things are done, usin...
Forum: Xorg Problems
Last Post: ross
2023-09-04, 09:03 AM
» Replies: 0
» Views: 1,922
Im back.....
Forum: Hello
Last Post: anyweb
2021-01-17, 11:36 AM
» Replies: 1
» Views: 5,416
add mp3 plugin to xmms in...
Forum: Fedora
Last Post: anyweb
2021-01-17, 11:30 AM
» Replies: 11
» Views: 41,532
Configuring VSFTPd Server
Forum: FTP Server
Last Post: Johnbaca
2020-10-14, 10:25 AM
» Replies: 32
» Views: 118,559
Wolf won't play sound!
Forum: Game Problems
Last Post: Guest
2020-10-03, 05:51 PM
» Replies: 1
» Views: 56,329
Using git + python
Forum: How Do I?
Last Post: Clueless puppy
2020-08-21, 04:37 PM
» Replies: 0
» Views: 46,238
what does your nick mean ...
Forum: Hello
Last Post: volt
2020-08-06, 03:25 PM
» Replies: 28
» Views: 42,188

 
  Partition
Posted by: uncle.b - 2005-07-30, 09:04 PM - Forum: Filesystem Management - Replies (4)

Well I need to get used to partitioning in linux and not using the GUI PM8. I need to Part my hard drive with fedore which i'm getting ready to install here within the next couple of days. Do any of you have a walkthrough, white paper or some tips to help me out? :)

Print this item

  SuSE Linux 9 - YaST Online Update killed X
Posted by: hybrid - 2005-07-30, 08:52 AM - Forum: SUSE - Replies (8)


I have a bit of a problem.

 

I have been using SuSE Linux 9.0 Personal for a while and recently bought a new computer. Before this new computer I had an old modem that Linux wouldn't support. With the new computer, I finally got online with Linux. BTW, I use a duak-boot Windows XP and Linux system. The Windows installation is fairly important.

 

I launched YaST Online Update (YOU) for the first time and downloaded I think msot of the security updates. I restarted the computer to find that after starting up, when just about to show the KDM logon screen, all I got was a long beep and a restart. After running the YaST Repair Tool from the CD, it now just beeps forever until you switch it off.

 

My system:

 

Intel P4 HT 3.0GHz

1.0 GB RAM

Print this item

  which linux distro should I choose and why ?
Posted by: pimkins - 2005-07-29, 06:28 PM - Forum: Just Starting Linux - Replies (21)

yeah im new to the linux field and i was wondering what was the easiest to install and work with. i was recently trying to get debian but i couldnt get the links to work. if at all possible could someone post up some links or some suggestions on a os. thanks.

Print this item

  Best linux distro? at least in your opinion?
Posted by: asbani - 2005-07-29, 01:43 AM - Forum: Polls - Replies (16)

Shoot!

Print this item

  testing my bandwidth !
Posted by: anyweb - 2005-07-28, 09:24 PM - Forum: General - Replies (4)


heh :)

<a class="ipsAttachLink ipsAttachLink_image" href="<fileStore.core_Attachment>/post-1-1122586141.png" data-fileid="354">[img]<fileStore.core_Attachment>/post-1-1122586141.png[/img]</a>



Attached Files
.png   Screenshot_43.png (Size: 62.43 KB / Downloads: 0)
Print this item

  howto create the 'service' command
Posted by: znx - 2005-07-27, 11:49 AM - Forum: Gentoo - No Replies


I've always sort of liked the 'service' command that comes with redhat, so I created my own:

 

Create a file (as root) /usr/sbin/service



Code:
#!/bin/sh

set -e

/etc/init.d/$1 $2 $3




 

Done.. :)

 

Example usage:

 



Code:
service mysql start
service mysql stop
service sshd start




 

Always one for making completions I did this too, mind this is gentoo aimed a little (the secondary option)

 

Place this in ~/.bashrc or /etc/bash.bashrc (or /etc/bash_completion.d/service for gentoo users)



Code:
# a function for the autocompletion of the service command.

_service_fn()
{
# set some local variables
local cur prev

COMPREPLY=()
cur=${COMP_WORDS[COMP_CWORD]}
prev=${COMP_WORDS[COMP_CWORD-1]}

#if only one completion or a option is being requested
#then complete against various options
if [ $COMP_CWORD -eq 1 ]; then
COMPREPLY=( $( compgen -W "$(ls /etc/init.d)" $cur ))
elif [ $COMP_CWORD -eq 2 ]; then
COMPREPLY=( $( compgen -W "start stop restart pause zap status ineed iuse needsme usesme broken" $cur ))
else
COMPREPLY=( $( compgen -f $cur ))
fi

return 0
}

#setup the completion
complete -F _service_fn service




Print this item

  dvd::rip
Posted by: enigma - 2005-07-27, 05:19 AM - Forum: How Do I? - Replies (1)


I have been trying for hours to install dvd:rip ( perl-Video-DVDRip ) without any luck. I found the following information on [/url][url=http://www.exit1.org/dvdrip/doc/faq.cipp]http://www.exit1.org/dvdrip/doc/faq.cipp

 



Code:
6.7 Why complains transcode about a missing VIDEO_TS.IFO file?

That's Ok. The corresponding messages are printed by libdvdread if you transcode files on harddisk (which is the default case with dvd::rip). You see something like this:

 libdvdread: Couldn't find device name.
 libdvdread: Can't open file VIDEO_TS.IFO.

but these are only (very confusing) warning messages of libdvdread, which naturally can't find any DVD device or VIDEO_TS.IFO file if started from a directory with only VOB files in it. Just ignore these messages, and please don't report this as a bug.




 

After reading this I became more confused then when I started. This is the error I get after trying to transcode the ripped vob's:

 



Code:
Job 'Transcoding video - title #2, pass 1' failed.

Executed command: mkdir -m 0775 -p '/home/elrond/DvD/StevieRayVaughn/tmp' && cd /home/elrond/DvD/StevieRayVaughn/tmp && dr_exec transcode -H 10 -a 0 -x vob -i /home/elrond/DvD/StevieRayVaughn/vob//002 -w 3504,50 -b 128,0,0 --a52_drc_off -f 24,1 -M 2 -Y 4,2,4,6 -B 1,11,8 -R 1 -y xvid,null -o /dev/null --print_status 20 && echo DVDRIP_SUCCESS

Last output was:


transcode v1.0.0 (C) 2001-2003 Thomas Oestreich, 2003-2004 T. Bitterberg
libdvdread: Using libdvdcss version 1.2.9 for DVD access
libdvdread: Couldn't find device name.
libdvdread: Can't open file VIDEO_TS.IFO.
tc_memcpy: using sse for memcpy
[import_vob.so] v0.6.0 (2003-10-02) (video) MPEG-2 | (audio) MPEG/AC3/PCM | (subtitle)
[export_null.so] v0.1.2 (2001-08-17) (video) null | (audio) null
[export_xvid4.so] v0.0.5 (2003-12-05) (video) XviD 1.0.x series (aka API 4.0) | (audio) MPEG/AC3/PCM
tc_memcpy: using sse for memcpy
[decode_mpeg2.c] libmpeg2 0.4.0b loop decoder
[decode_mpeg2.c] libmpeg2 acceleration: mmxext
tc_memcpy: using sse for memcpy
[export_xvid4.so] Neither './xvid4.cfg' nor '~/.transcode/xvid4.cfg'
[export_xvid4.so] found. Default settings will be used instead.
sh: line 1: 30846 Killed                  dr_exec transcode -H 10 -a 0 -x vob -i /home/elrond/DvD/StevieRayVaughn/vob//002 -w 3504,50 -b 128,0,0 --a52_drc_off -f 24,1 -M 2 -Y 4,2,4,6 -B 1,11,8 -R 1 -y xvid,null -o /dev/null --print_status 20




 

If anyone knows what is wrong please let me know i been searching for an answer for hours...

Print this item

  Real APt
Posted by: Randall - 2005-07-27, 01:04 AM - Forum: Updating Linux - Replies (1)

rpm -ivh [/url][url=http://ftp.freshrpms.net/pub/fedora/linux/...-6.fc4.i386.rpm]http://ftp.freshrpms.net/pub/fedora/linux/...-6.fc4.i386.rpm

Print this item

  gkrellm
Posted by: enigma - 2005-07-26, 05:01 PM - Forum: Linux - Replies (2)


Heres a shot using gkrellm instead of torsmo... theres also an xmms plugin for it that i just installed...

<a class="ipsAttachLink ipsAttachLink_image" href="<fileStore.core_Attachment>/post-204-1122775712.png" data-fileid="357">[img]<fileStore.core_Attachment>/post-204-1122775712.png[/img]</a>



Attached Files
.png   screenshot.png (Size: 1.23 MB / Downloads: 0)
Print this item

  Custom built support.
Posted by: uncle.b - 2005-07-26, 07:32 AM - Forum: How Do I? - Replies (8)


Well, from what I have played around with in the past the only distros that I tested for myself were: RH, Knoppix, Linspire/Lindows, Mandrake, CL, FC. Out of all of these distros I seemed more interested in Mandrake, Knoppix, and RH which I hear now is FC. (AFAIK). So from your opinion and experience, what would be the best for a beginner. Another problem I have had is getting the drivers to work with my hardware. Im sure everyones had this problem :P. I just built a new computer, so hopefully you can lead me in a right direction.

 

MSI Neo4 Platinum SLi Dual Channel Motherboard

MSI GeForce NX 6600GT SLi

Kingston HyperX 512DDR Dual Channel

Maxtor 7500RPM 160GB

AMD 64 Athlon 2.0GHz (939)

Enermax 550W SLi PSU

Zalman CNPS7000B-Cu LED CPU Cooler

Logitech MX1000 Laser Mouse

 

I truly hope these specs help. :)

-uncle.b-

Print this item