41
Off-Topic - Tiny Core Lounge / Re: found no art software for j2me :(
« Last post by LubielTheStoopid on September 08, 2025, 07:27:09 AM »finally... This phone sent a image
In this Samsung Frame Pro review, I explain why the $2,200 “wireless” TV is a disaster: the Wireless One Connect box causes latency, stutters, and constant disconnects, the micro‑HDMI 2.1 port lacks eARC/ARC for soundbars, Wi‑Fi 7/6GHz interference breaks stability, and HDMI‑CEC mangles Art Mode power behavior. Despite the matte panel and convincing Art Mode, the edge‑lit “Neo QLED powered by mini‑LED” display delivers poor contrast, vertical banding, smeary night scenes, and unhinged default picture settings—with no Dolby Vision. Software is painfully slow (TV Plus bloat), setup is infuriating (mounting/stud issues, cable routing), and even Samsung’s S801D soundbar drops audio over Wi‑Fi, forcing a lower‑quality Bluetooth fallback. If you want a main TV, buy an OLED; for an art TV, cheaper Hisense/TCL models are better. Bottom line: Samsung Frame Pro looks like wall art, but as a wireless TV it’s laggy, unreliable, and wildly overpriced.
!/bin/sh
START="001"
[ -d $START ] || mkdir -p $START/{cpio,ram,tcz}
echo "Download rootfs64.gz from web server"
URL="https://mirrors.dotsrc.org/tinycorelinux/16.x/x86_64/release/distribution_files"
MINI="rootfs64.gz"
[ ! -f $START/cpio/$MINI ] || wget -c -O $START/cpio/$MINI $URL/$MINI
echo "all files stay virgin in tmp RAM"
sudo mount -t tmpfs none $START/ram
echo "extract all files except /dev*"
cd $START/ram
bsdcpio -i -f ^dev < ../cpio/rootfs64.gz
sudo chown root usr/bin/sudo
sudo chown root:root etc/sudoers
# simulate non-volatile tcedir, colect them in ./tcz
mkdir -p tce dev home/tc
sudo mount --bind ../tcz tce
ln -s /tce etc/sysconfig/tcedir
chmod a+rw tce
cp etc/profile home/tc/.profile
echo "busybox need /proc mounted"
sudo mount -t proc /proc proc
# sudo mknod -m +rw dev/null c 1 3
sudo mount -t devtmpfs --rbind --make-rslave /dev dev
echo enable network in guest/chroot
cp /etc/resolv.conf etc
# to run GUI in guesr when Xorg in host
mkdir tmp/.X11-unix
sudo mount --rbind /tmp/.X11-unix tmp/.X11-unix
echo "export DISPLAY=:0" >> home/tc/.profile
cp /run/user/100/xath* home/tc/.Xauthority
chmod a+r home/tc/.Xauthority
# to run GUI in guest when Wayland in host
mkdir -p run/user/1000
sudo mount --bind /run/user/1000 run/user/1000
sudo chroot . /bin/login -f tc
FYI: do not forget to un-mount all mounted folders (dev proc tce run ram etc) when you finish with your chroot.