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

Username/Email:
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 5,208
» Latest member: slotqris
» Forum threads: 4,029
» Forum posts: 16,404

Full Statistics

Online Users
There are currently 166 online users.
» 0 Member(s) | 164 Guest(s)
Bing, Yandex

Latest Threads
How to install Archboot i...
Forum: Network Problems
Last Post: Meup
2025-05-13, 01:41 PM
» Replies: 0
» Views: 100
clear logs in smoothwall
Forum: Security and Firewalls
Last Post: amanda63
2024-03-10, 03:27 PM
» Replies: 8
» Views: 74,869
I cannot install RedHat 8...
Forum: Redhat
Last Post: hybrid
2023-11-11, 01:01 PM
» Replies: 1
» Views: 31,159
How things are done, usin...
Forum: Xorg Problems
Last Post: ross
2023-09-04, 09:03 AM
» Replies: 0
» Views: 1,663
Im back.....
Forum: Hello
Last Post: anyweb
2021-01-17, 11:36 AM
» Replies: 1
» Views: 5,075
add mp3 plugin to xmms in...
Forum: Fedora
Last Post: anyweb
2021-01-17, 11:30 AM
» Replies: 11
» Views: 40,674
Configuring VSFTPd Server
Forum: FTP Server
Last Post: Johnbaca
2020-10-14, 10:25 AM
» Replies: 32
» Views: 104,299
Wolf won't play sound!
Forum: Game Problems
Last Post: Guest
2020-10-03, 05:51 PM
» Replies: 1
» Views: 44,874
Using git + python
Forum: How Do I?
Last Post: Clueless puppy
2020-08-21, 04:37 PM
» Replies: 0
» Views: 35,271
what does your nick mean ...
Forum: Hello
Last Post: volt
2020-08-06, 03:25 PM
» Replies: 28
» Views: 40,290

 
  troubles with script
Posted by: snake444 - 2007-06-20, 04:31 PM - Forum: DNS and DHCP - Replies (2)


when i run the script i get error, log :



Code:
eth1: No such device
IPv6 configuration failed!




the script's code:



Code:
#!/bin/sh
if ! [ -f /proc/net/if_inet6 ]
then echo "IPv6 is not installed!" 1>&2; exit 1; fi
ifconfig sit0 up \
&& ifconfig sit0 inet6 tunnel ::213.121.24.85 \
&& ifconfig sit1 inet6 add 2001:618:400::591:cb1f/128 \
&& route -A inet6 add ::/0 gw fe80::d579:1855 dev sit1 \
&& route -A inet6 add 2000::/3 gw fe80::d579:1855 dev sit1 \
&& ifconfig eth1 up \
&& ifconfig eth1 inet6 add 2001:618:400:b733::/64 \
&& echo 1 > /proc/sys/net/ipv6/conf/all/forwarding \
&& echo 'interface eth1
{
AdvSendAdvert on;
prefix 2001

:618:400:b733::/64
{
  AdvOnLink on;
  AdvAutonomous on;
};
};' > /etc/radvd.conf \
&& /etc/init.d/radvd start \
&& echo "IPv6 configuration completed" || \
{ echo "IPv6 configuration failed!" 1>&2; exit 1; }




 

and when i do ifconfig there is:



Code:
snake@delta:~$ ifconfig
eth0      Link encap:Ethernet  HWaddr 00:E0:4C:77:CD:1D
      inet6 addr: fe80::2e0:4cff:fe77:cd1d/64 Диапазон:Link
      UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
      RX packets:270656 errors:0 dropped:0 overruns:0 frame:0
      TX packets:250379 errors:0 dropped:0 overruns:0 carrier:0
      collisions:0 txqueuelen:1000
      RX bytes:275446383 (262.6 MiB)  TX bytes:21518725 (20.5 MiB)
      Interrupt:20 Base address:0x2000

lo        Link encap:Local Loopback
      inet addr:127.0.0.1  Mask:255.0.0.0
      inet6 addr: ::1/128 Диапазон:Host
      UP LOOPBACK RUNNING  MTU:16436  Metric:1
      RX packets:84 errors:0 dropped:0 overruns:0 frame:0
      TX packets:84 errors:0 dropped:0 overruns:0 carrier:0
      collisions:0 txqueuelen:0
      RX bytes:4817 (4.7 KiB)  TX bytes:4817 (4.7 KiB)

ppp0      Link encap:Point-to-Point Protocol
      inet addr:89.1.203.31  P-t-P:212.29.206.60  Mask:255.255.255.255
      UP POINTOPOINT RUNNING NOARP MULTICAST  MTU:1492  Metric:1
      RX packets:269808 errors:0 dropped:0 overruns:0 frame:0
      TX packets:249776 errors:0 dropped:0 overruns:0 carrier:0
      collisions:0 txqueuelen:3
      RX bytes:269452852 (256.9 MiB)  TX bytes:15987305 (15.2 MiB)

sit0      Link encap:IPv6-in-IPv4
      inet6 addr: ::89.1.203.31/96 Диапазон:Compat
      inet6 addr: ::127.0.0.1/96 Диапазон:Unknown
      UP RUNNING NOARP  MTU:1480  Metric:1
      RX packets:0 errors:0 dropped:0 overruns:0 frame:0
      TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
      collisions:0 txqueuelen:0
      RX bytes:0 (0.0 b)  TX bytes:0 (0.0 b)

sit1      Link encap:IPv6-in-IPv4
      inet6 addr: 2001:618:400::591:cb1f/128 Диапазон:Общий
      inet6 addr: fe80::5901:cb1f/64 Диапазон:Link
      UP POINTOPOINT RUNNING NOARP  MTU:1472  Metric:1
      RX packets:0 errors:0 dropped:0 overruns:0 frame:0
      TX packets:7 errors:0 dropped:0 overruns:0 carrier:0
      collisions:0 txqueuelen:0
      RX bytes:0 (0.0 b)  TX bytes:588 (588.0 b)




any ideas how to solve that problem?

i tryed editing the script and changing all eth1 to eth0 because in ifconfig i dont see any eth1 connection but i got error too



Code:
snake@delta:~$ sudo sh LinuxScript.sh
SIOCSIFADDR: File exists
IPv6 configuration failed!




thanks.

Print this item

  Flash Player 9 for X86_64 bit (please help i am a uber noob!
Posted by: Deltanoob - 2007-06-19, 02:13 AM - Forum: How Do I? - Replies (2)


Hello and thank you for reading this post. I have searched for guides to install flash player 9 by but all I found must be for 32-bit.

When I try to install it I get a message in the terminal saying that the flashplayer isn't compatible with my system.When i looked up 64-bit versions of the flash player I couldn't find one!!!??

So please....help me.

Thanks for reading this.

 

LINUX FOR THE WIN!

Print this item

  Which distro
Posted by: tcpphoto - 2007-06-19, 01:55 AM - Forum: Just Starting Linux - Replies (1)

I have a Gateway 6021gz laptop and was wondering what distro would run the best with my setup.

Print this item

  Vmware and samba in FC6
Posted by: Kassiuz - 2007-06-18, 11:37 PM - Forum: Fedora Core Release 6 - No Replies


Hello I am a new user of the FC6 OS,I need to install a virtual machine using Vmware.The virtual machines must run the Windows XP OS and then both must be connected using Samba,But every time I try to acces the Linux machine windows keeps telling me its not in the network and the name "localhost" is a duplicate.

 

I've gone over the configuration of the smb.conf and I find no mistake I have even used the test smb.con that samba.org offers

 



Code:
[global]
workgroup = METRAN
encrypt passwords = yes
wins support = yes
log level = 1
max log size = 1000
read only = no
[homes]
browsable = no
map archive = yes
[printers]
path = /var/tmp
printable = yes
min print space = 2000
[test]
browsable = yes
read only = yes
path = /usr/local/samba/tmp




 

If you need aditional info please Ask me and I will gladly give it to you,there is only one network card and both the virtual machine and linux machine can ping to one another without trouble

 

by the way the version of vmware is 5

Print this item

  Ubuntu News
Posted by: Varjagy - 2007-06-18, 03:10 PM - Forum: Linux News - No Replies


- Ubuntu Linux Validates As Genuine Windows or read the original post at Ubuntuforums.org here.

 

- Sell Linux PCs Worldwide - not only the United States

Print this item

  Ubuntu News
Posted by: Varjagy - 2007-06-17, 06:58 AM - Forum: Linux News - Replies (2)


- Ubuntu: No negotiations with Microsoft in progress

 

- Ubuntu Weekly Newsletter, Issue #43 covers:

* Help Improve Usability!

* Newly approved Ubuntu Members

* Mark Shuttleworth Interviewed

* Sarah Hobbs is now Core

* New Kubuntu Council

* Swiss LoCo Team Approved

* Interview with Daniel Holbach

* Ubuntu Installer for Windows

* PowerPC Community

Print this item

  Yum Update Fix for Error
Posted by: yarddog - 2007-06-16, 08:10 PM - Forum: Fedora 7 - Replies (1)


If you get this error libraw1394 conflicts with kernel < 2.6.21-1.3194.fc7 while yum updating:

 

 

Quote:root@localhost irssi]# yum -y updateLoading "kernel-module" plugin

Loading "refresh-updatesd" plugin

Loading "changelog" plugin

Loading "fastestmirror" plugin

Loading mirror speeds from cached hostfile

Setting up Update Process

Resolving Dependencies

--> Running transaction check

---> Package xine-lib.i386 0:1.1.7-1.fc7 set to be updated

---> Package scim-libs.i386 0:1.4.5-21.fc7 set to be updated

---> Package xorg-x11-server-Xorg.i386 0:1.3.0.0-9.fc7 set to be updated

---> Package cpuspeed.i386 1:1.2.1-1.59.fc7 set to be updated

---> Package libxml2-python.i386 0:2.6.29-1.fc7 set to be updated

---> Package scim.i386 0:1.4.5-21.fc7 set to be updated

---> Package pam-devel.i386 0:0.99.7.1-5.1.fc7 set to be updated

---> Package libxslt-devel.i386 0:1.1.21-1.fc7 set to be updated

---> Package net-tools.i386 0:1.60-82.fc7 set to be updated

---> Package libxml2.i386 0:2.6.29-1.fc7 set to be updated

---> Package selinux-policy-targeted.noarch 0:2.6.4-14.fc7 set to be updated

---> Package libxslt.i386 0:1.1.21-1.fc7 set to be updated

---> Package pam.i386 0:0.99.7.1-5.1.fc7 set to be updated

---> Package evolution-data-server-devel.i386 0:1.10.2-3.fc7 set to be updated

---> Package selinux-policy.noarch 0:2.6.4-14.fc7 set to be updated

---> Package libxml2-devel.i386 0:2.6.29-1.fc7 set to be updated

---> Package evolution-data-server.i386 0:1.10.2-3.fc7 set to be updated

---> Package xorg-x11-server-sdk.i386 0:1.3.0.0-9.fc7 set to be updated

---> Package vavoom.i386 0:1.24-1.fc7 set to be updated

---> Package gnome-power-manager.i386 0:2.18.3-1.fc7 set to be updated

---> Package liboil.i386 0:0.3.12-3.fc7 set to be updated

---> Package libraw1394.i386 0:1.2.1-8.fc7 set to be updated

--> Processing Conflict: libraw1394 conflicts kernel < 2.6.21-1.3194.fc7

--> Finished Dependency Resolution

Error: libraw1394 conflicts with kernel < 2.6.21-1.3194.fc7
 

 

Simply do the following:-

 



Code:
yum remove kernel-xen kernel-PAE




 

Then run yum update again. Should be fixed. It appears that the xen kernel package is causing this conflict.

Print this item

  Different document root within apache
Posted by: fizzle - 2007-06-16, 03:09 AM - Forum: LAMP - Replies (1)


Hi all, I'm a linux/apache noob, so i figure this is the best place for me :)

 

Anyhow, I just got a dedicated server with godaddy, using their "Simple Control Panel". It's running CentOS with apache 2, php4, mysql4.

 

My question is this: I want to be able to set my own document root. I add a domain name through the simple control panel, and it forces docroot for that domain to be /home/<username>/public_html/. Then it forces me to create a username, one that does not already exist.

 

I have over 50 domain names I will be migrating to this server, and a lot of them are located in subdirectories of my main domain. So my main domain, smartstreets.net is located in, say, /home/smartstreets/public_html/, I want MyOtherDomain.com to go to /home/smartstreets/public_html/members/<unique_member_id>/

 

I've tried using virtual hosts, and it doesnt make any difference, after restarting apache. Here's what I put for my virtual host:

 



Code:
<VirtualHost *>
ServerAdmin admin@smartstreets.net
DocumentRoot /var/www/html
ServerName trashylife.org
ServerAlias www.trashylife.org trashylife.org
ErrorLog /var/log/error.log
CustomLog /var/log/access.log common
</VirtualHost>




 

 

Note that im trying to make trashylife.org go to /var/www/html just to get it to work, thats one of my domains i dont care about being down. So because of the simple control panel stuff, its forced to be in /home/trashylife/public_html/ which has an index.html file that says "not working". I want it to go to /var/www/html/ which has an html file that says "its working" (or something like that).

 

So uhh, what am i doing wrong? Is there some sort of permissions i have to set on either /home/trashylife, or on /var/www/html? (note, i've tried to point that domain to other directories in /home/smartstreets/ with no luck.

 

Please let me know what I can do, if anybody can be of any help. I've got to get this stuff done within like a week, and I have a LOT of domains and databases and files to transfer over to this new server. Greatly appreciated, thank you!

 

 

---edit!---

Ok, totally accidentally, i found out that the simple control panel has a vhost conf file of its own. So i went in there and edited the document root for the trashylife.org domain to point to /home/smartstreets/public_html/ which has an index.html with simple text. NOW i get a 403 forbidden error. I'm assuming this is a permissions error, but what permissions should i give it, or how should i set the permissions on this directory so that it can serve the site? I want to keep it as secure as possible...

 

Thanks, I'm getting there!

 

--edit again--

got it! made the virtual host in /var/www/someFolder, which works. yay.

Print this item

  FreeNX issue
Posted by: adave - 2007-06-14, 03:28 PM - Forum: Fedora Core Release 5 - Replies (2)


Hi i'm hoping you guys can help me out I have fedora core 5. I have bonded my network cards and installed freenx. I can go on the internet, ssh (to the linux bux). However when I try to connect via nx client it gives me the following message. I have imported the key.

 

NX> 203 NXSSH running with pid: 4132

NX> 285 Enabling check on switch command

NX> 285 Enabling skip of SSH config files

NX> 285 Setting the preferred NX options

NX> 200 Connected to address: 192.9.200.12 on port: 22

NX> 202 Authenticating user: nx

NX> 208 Using auth method: publickey

/usr/libexec/nx/nxloadconfig: line 270: strings: command not found

HELLO NXSERVER - Version 1.5.0-60 OS (GPL)

NX> 105 Killed by signal 15.

 

If you could help me out and maybe come up with some stuff to try I would appreciate it.

 

Thanks a lot.

Print this item

  just updated linux-noob.com from fedora core 5 to fcr6
Posted by: anyweb - 2007-06-13, 09:22 PM - Forum: Site News - Replies (2)


so fingers crossed !

 

Quote:[root@www yum.repos.d]# uptime 23:21:14 up 161 days, 9:32, 2 users, load average: 0.41, 0.30, 0.15

Print this item