Tiny Core Linux

General TC => Tiny Core on Virtual Machines => Topic started by: masterx on August 31, 2012, 08:33:21 AM

Title: Release with vmware view client; where i parameter?
Post by: masterx on August 31, 2012, 08:33:21 AM
hi, i hava a version tiny core maked by vmwaredotg.com with vmware view client
it's go and open this application
where i set the parameter (example the IP ) ; there is a file's configuration?

thanks
Title: Re: Release with vmware view client; where i parameter?
Post by: curaga on August 31, 2012, 08:40:44 AM
Please go to the remaster's site for support for it.
Title: Re: Release with vmware view client; where i parameter?
Post by: Rich on August 31, 2012, 08:41:09 AM
Hi masterx
Click on the ControlPanel icon and open the Network applet.
Title: Re: Release with vmware view client; where i parameter?
Post by: masterx on September 01, 2012, 01:12:21 AM
thanks at all

the site is off-line at this time. do you have notice when go on-line?

i haven't control panel because this version is a version with thin client only.

Title: Re: Release with vmware view client; where i parameter?
Post by: Rich on September 01, 2012, 07:58:07 AM
Hi masterx
Quote
the site is off-line at this time. do you have notice when go on-line?
That site was create by someone else and is not associated with tinycorelinux.net, see:
http://forum.tinycorelinux.net/index.php/topic,13485.msg74916.html#msg74916

Create a script called  eth0.sh   in  /opt  that contains the following:
Code: [Select]
#!/bin/sh
pkill udhcpc
ifconfig eth0 192.168.1.30 netmask 255.255.255.0 broadcast 192.168.1.255 up
route add default gw 192.168.1.1
echo nameserver 68.237.161.12 > /etc/resolv.conf
echo nameserver 71.243.0.12 >> /etc/resolv.conf
Adjust  eth0  and the IP addresses to match your system. Run the script and your network card should be configured.
Add a line that looks like:
Code: [Select]
/opt/eth0.shto your  /opt/bootlocal.sh  file. This will set up your network card every time you boot.
Be sure to read the Wiki on how to backup these changes.