WelcomeWelcome | FAQFAQ | DownloadsDownloads | WikiWiki

Recent Posts

Pages: 1 ... 7 8 [9] 10
81
TCB Talk / Re: Thinking of using Tiny Core; advice please?
« Last post by Rich on May 11, 2026, 04:47:22 PM »
Hi JunkYard
this makes no sence what so ever! there is a mount tool icon on the desk top which just shows sr0, sdb1, sda5, sda1 with a red or green tab. Dose not let you open the drives! ...
It makes perfect sense. The purpose of a mount tool is to allow
you to mount and unmount drives from the systems file system.


Quote
... no indication of a file manager on the desktop either. (A vital program for any O.S one would thing!)
I'm tired of explaining this over and over again, so I'll just quote
one of my previous answers for you:
Hi Onktebong
... Is there really no file explorer pre-installed? ...
Of course not. The point of the ISOs is not to provide a system
that's ready to go and fulfill you needs. It's to get you to a GUI
(or command line) so you can then install the packages
that interest you. You don't need a file explorer for that.

The TC16 x86 CorePlus ISO is almost 290 Mbytes. Over 200 Mbytes
of that is firmware, drivers, and utilities for wireless support. Plus
there are 7 window managers included.

The point is, the ISOs don't get bloated with items not need to get
up and running.
82
TCB Talk / Re: Thinking of using Tiny Core; advice please?
« Last post by JunkYard on May 11, 2026, 04:24:17 PM »
this makes no sence what so ever! there is a mount tool icon on the desk top which just shows sr0, sdb1, sda5, sda1 with a red or green tab. Dose not let you open the drives!

no indication of a file manager on the desktop either. (A vital program for any O.S one would thing!)
83
TCB Talk / Re: Thinking of using Tiny Core; advice please?
« Last post by JunkYard on May 11, 2026, 04:16:04 PM »
To access the contents of a partition using linux you need to "mount" the partition. If, for example, you see /dev/sdb1 and /dev/sdb2 using the commands above, you can mount and list the contents of, for example, sdb2 like this:
Code: [Select]
sudo mount /dev/sdb2
ls /mnt/sdb2


But following your second instruction
of sudo mount /dev/sdb2 (or any number)
it says it cant find!
84
TCB Talk / Re: Thinking of using Tiny Core; advice please?
« Last post by JunkYard on May 11, 2026, 04:13:29 PM »
The drive has most likely been assigned a name such as sda, sdb, sdc, etc.

If the drive is partitioned, the partitions will have names like sda1, sda2, sdb1, sdb2, etc.

To see if TinyCoreLinux has recognised any drives/partitions do this:
Code: [Select]
ls /dev/sda*
ls /dev/sdb*
[...etc]


Following you first instruction the HDD has /dev/sda (0-9 followed by it; meaning there are 9 partisions)
85

list of currently hosted versions

newline separated array

using shell wget and awk

Code: [Select]
tc_dl=$( wget -O-  http://tinycorelinux.net/downloads.html 2>/dev/null )

st='<td class="releases_past"';

# archives
echo "$tc_dl" | awk -v"st=$st" 'function rem(str,str2){ gsub(str,(str2 ==""?"":str2) , $0) } {if( $0 ~ st ) { rem("<a href=\42","\n");rem("\42>[0-9]*[0-9].x</a>");rem("</td>")  ;print  } }' | awk -F'/' '{sub("\\.x","",$1); if(NR>1) print $1 }'

#current
wget -O- http://tinycorelinux.net/latest 2>/dev/null

Quote from: eg
5
6
7
8
9
10
11
12
13
14
15
16
17.0
86
TCB Talk / Re: Thinking of using Tiny Core; advice please?
« Last post by Rich on May 11, 2026, 09:10:07 AM »
Hi JunkYard
I'm just going to add a couple of minor clarifications.
... To see if TinyCoreLinux has recognised any drives/partitions do this:
Code: [Select]
ls /dev/sda*
ls /dev/sdb*
[...etc]
...
This is  /dev/sdb  on one of my systems:
Code: [Select]
tc@E310:~$ ls /dev/sdb*
/dev/sdb  /dev/sdb1  /dev/sdb2  /dev/sdb3  /dev/sdb4  /dev/sdb5  /dev/sdb6  /dev/sdb7  /dev/sdb8  /dev/sdb9
tc@E310:~$

It looks like that device has 9 partitions, but it really has only 2.

Running the command like this tells a different story:
Code: [Select]
tc@E310:~$ ls -l /dev/sdb*
brw-rw---- 1 root staff 8, 16 Feb 28 11:05 /dev/sdb
brw-rw---- 1 root staff 8, 17 Feb 28 11:05 /dev/sdb1
brw-rw---- 1 root staff 8, 18 Feb 28 11:05 /dev/sdb2
brw-rw-r-- 1 root staff 8, 19 Jun  9  2019 /dev/sdb3
brw-rw-r-- 1 root staff 8, 20 Jun  9  2019 /dev/sdb4
brw-rw-r-- 1 root staff 8, 21 Jun  9  2019 /dev/sdb5
brw-rw-r-- 1 root staff 8, 22 Jun  9  2019 /dev/sdb6
brw-rw-r-- 1 root staff 8, 23 Jun  9  2019 /dev/sdb7
brw-rw-r-- 1 root staff 8, 24 Jun  9  2019 /dev/sdb8
brw-rw-r-- 1 root staff 8, 25 Jun  9  2019 /dev/sdb9
tc@E310:~$
The partitions in this list with a current date are actually mountable.
The  -l  in the command is a lower case L, not a one.

Quote
... To access the contents of a partition using linux you need to "mount" the partition. If, for example, you see /dev/sdb1 and /dev/sdb2 using the commands above, you can mount and list the contents of, for example, sdb2 like this:
Code: [Select]
sudo mount /dev/sdb2
ls /mnt/sdb2
...
If the device was recognized as mountable, you don't need "sudo":
Code: [Select]
mount /dev/sdb2
ls /mnt/sdb2

Quote
... Note that, depending on whether the drive partition you want to access if formatted with a linux, windows or mac file system, you may need to take additional steps to be able to mount and read files on the partition. ...
If the partition was formatted as NTFS (Windows), you will need to
install support for that type of file system:
Code: [Select]
tce-load -wi ntfs-3g
87
TCB Talk / Re: Thinking of using Tiny Core; advice please?
« Last post by Juanito on May 11, 2026, 05:44:50 AM »
The drive has most likely been assigned a name such as sda, sdb, sdc, etc.

If the drive is partitioned, the partitions will have names like sda1, sda2, sdb1, sdb2, etc.

To see if TinyCoreLinux has recognised any drives/partitions do this:
Code: [Select]
ls /dev/sda*
ls /dev/sdb*
[...etc]

To access the contents of a partition using linux you need to "mount" the partition. If, for example, you see /dev/sdb1 and /dev/sdb2 using the commands above, you can mount and list the contents of, for example, sdb2 like this:
Code: [Select]
sudo mount /dev/sdb2
ls /mnt/sdb2

Note that, depending on whether the drive partition you want to access if formatted with a linux, windows or mac file system, you may need to take additional steps to be able to mount and read files on the partition.

Note also, if you have booted TinyCoreLinux from a usb stick, at least one partition on the usb stick will be already mounted. You can see which partition is mounted like this:
Code: [Select]
ls -l /etc/sysconfig/tcedir
lrwxrwxrwx    1 root     root            18 Jun 24  1970 /etc/sysconfig/tcedir -> /mnt/sdb2/tce/
..where in this example partiton sdb2 is mounted
88
TCB Talk / Re: Thinking of using Tiny Core; advice please?
« Last post by JunkYard on May 10, 2026, 06:47:24 PM »
I seam to have managed to install the CD onto a USB stick this afternoon and the USB stick dose actully boot!


probably best stick to windows then

Either that or you read the TinyCoreLinux book:

http://tinycorelinux.net/book.html

..and then proceed very carefully with the tc-install-GUI to avoid deleting your windows installlation and/or data.

I read the contence of that book thanks! But I cant seam to find what I am after. I have another drive connected to the machine as well and I would like to read what is on it. From the tiny core O.S. Do you know how to do it please?
89
piCore Test Releases / Re: piCore 17 Beta Releases
« Last post by Paul_123 on May 10, 2026, 02:13:59 PM »
I knew I was forgetting something.  I had them in my local staging area, but missed a few steps.   They are up now
90
piCore Test Releases / Re: piCore 17 Beta Releases
« Last post by Juanito on May 10, 2026, 11:57:21 AM »
piCore64 also OK
Pages: 1 ... 7 8 [9] 10