1
Extension requests / WvDial
« Last post by neonix on Today at 02:00:28 AM »WvDial for TC15x86-32 and TC15x86-64.
... At one point, I disabled too many things using make menuconfig, ...Which is why I wrote this comment the way I did:
... Then navigating through the menus disabling anything you think you don't want. ...I've done that too. You look at an option and think "nah, I don't need that", not
... About the desktop, I ran this:Remove Xorg-7.7 from your /etc/sysconfig/tcedir/onboot.lst file.Code: [Select]tce-load -wi Xorg-7.7 flwm_topside aterm wbar
...
tce-load -wi Xvesa
Xvesa -listmodes
... and got to the desktop too (see screenshot in attachments). I'm blown away by this! Thanks again!You are quite welcome. Glad it worked out for you.
... TinyCore Linux is well suited to this, but it is far from easy to get working beyond ls working at the command line. This isn’t a tutorial on TinyCore itself — there are many introductions out there ...Speaking of which, there used to be 2 files (IMPORTANT and README) in
... but as we’ll see the partition resize process is destructive. ...I was under the impression resizing could be done non-destructively
... 2) Delete second partition with 'd' than recreate it with 'n' command.
Use the same starting sector as deleted had and provide end
sectore or size greater than deleted had having enough free space
for Mounted Mode. When finished, exit fdisk with 'w' command. Now
partition size increased but file system size is not yet changed.
3) Reboot piCore. It is necessary to make Kernel aware of changes.
4) After reboot expand file system to the new partition boundaries with
typing the following command as root:
resize2fs /dev/mmcblk0p2
Now you are ready to use the bigger partition. ...
... sudo reboot ...That should be:
exitcheck.sh reboot
or if you want to shutdown (poweroff):exitcheck.sh
exitcheck ensures an orderly shutdown/reboot sequence:exitcheck.sh reboot -> /opt/shutdown.sh -> /sbin/reboot -> /etc/inittab -> /etc/init.d/rc.shutdown
1. Sync filesystems
2. Disable swap space
3. Kill all processes
4. Unmount all extensions
5. Delete extensions being updated
6. Unmount tce directory
7. Unmount backup directory
8. Unmount everything else
... There’s in fact no easy way of determining what the actual device is other than trying to mount it and seeing if your files show up. Here’s one way I narrowed it down a bit:Run:
dmesg | grep sda ...
dmesg | tail
Then plug in your device and run:dmesg | tail
Your device will be the new dmesg entries. If there are no new... What you’re looking for is an sda number (which might be none — my USB stick got mounted just as sda ). ...The last couple of lines should look something like this:
tc@E310:~$ dmesg | tail
----- Snip -----
[18036149.154763] sdg: sdg1 sdg2
[18036149.157639] sd 7:0:0:0: [sdg] Attached SCSI removable disk
tc@E310:~$
The device in this example is sdg and it has 2 partitions, sdg1 and sdg2.... tce-load -i dhcpcd.tcz firmware-rpi-wifi.tcz net-usb-6.6.47-piCore-v7.tcz ...You can also do it like this:
tce-load -i dhcpcd firmware-rpi-wifi net-usb-6.6.47-piCore-v7
tce-load will work with or without the .tcz extension specified.... Edit the /etc/resolv.conf file and add a DNS server, which for me is simply my router of 192.168.1.1:Should read:
nameserver 193.168.1.1 ...
... Edit the /etc/resolv.conf file and add a DNS server, which for me is simply my router of 192.168.1.1:
nameserver 192.168.1.1 ...
... ifconfig up eth0 ...You need root permissions to run that
sudo ifconfig up eth0
When it comes to ease of modification, time invested, and predicting
memory savings, I feel modifying core.gz wins hands down.
tce-load -wi Xorg-7.7 flwm_topside aterm wbar
tce-load -wi Xvesa
Xvesa -listmodes
Xvesa -mode 0x0115 -br -2button -mouse /dev/input/mice,5 -nolisten tcp -I >/dev/null 2>&1 &
export XPID=$!
waitforX || ! echo failed in waitforX || exit
"$DESKTOP" 2>/tmp/wm_errors &
export WM_PID=$!
[ -x $HOME/.setbackground ] && $HOME/.setbackground
[ -x $HOME/.mouse_config ] && $HOME/.mouse_config &
[ $(which "$ICONS".sh) ] && ${ICONS}.sh &
[ -d "/usr/local/etc/X.d" ] && find "/usr/local/etc/X.d" -type f -o -type l | sort | while read F; do . "$F"; done
[ -d "$HOME/.X.d" ] && find "$HOME/.X.d" -type f -o -type l | sort | while read F; do . "$F"; done