Search found 4910 matches
- 11 Apr 2021, 05:51
- Forum: Newbie questions
- Topic: restarting USM??
- Replies: 9
- Views: 120
restarting USM??
Still not working. root@porteus:/home/guest# usm -g thunder You are missing required database files! Please run: usm -u all root@porteus:/home/guest# usm -u all slackware was updated 522 seconds ago. Skipping. slackwarepatches was updated 512 seconds ago. Skipping. salix was updated 509 seconds ago....
- 11 Apr 2021, 03:48
- Forum: Newbie questions
- Topic: restarting USM??
- Replies: 9
- Views: 120
restarting USM??
You will only get this error if you have never updated Slacky before - when it was still working. I've used USM for years with Porteus 4.0 so pretty sure the files are there. However guest@porteus:~$ ls -l /var/usm/slacky total 40 -rw-r--r-- 1 root root 12680 Mar 8 13:22 CHECKSUMS.md5.gz -rw-r--r--...
- 10 Apr 2021, 15:24
- Forum: Newbie questions
- Topic: restarting USM??
- Replies: 9
- Views: 120
restarting USM??
My results definitely not the same as yours Bob . guest@porteus:~$ su Password: root@porteus:/home/guest# usm -s thunderbird You are missing required database files! Please run: usm -u all root@porteus:/home/guest# usm -u all Starting slackware database update Downloading: vercheck.txt DONE Download...
- 08 Apr 2021, 18:26
- Forum: Newbie questions
- Topic: no WIFI
- Replies: 12
- Views: 256
no WIFI
Can I make those changes be persistent in Cinnamon? I am booting off a USB stick when I need to use Porteous. If Porteus is installed on the USB drive and the drive's file system is EXT the changes should be saved. If Porteus is installed on the USB drive and the drive's file system is FAT32 the ch...
- 08 Apr 2021, 15:22
- Forum: Newbie questions
- Topic: Oracle VirtualBox from Debian 10 not working after being converted to xzm
- Replies: 1
- Views: 43
Oracle VirtualBox from Debian 10 not working after being converted to xzm
Try the one Porteus makes. Menu > Admin > Vbox builder
- 08 Apr 2021, 15:12
- Forum: Bug Reports
- Topic: PORTEUS DESKTOP 4. not found my HDD
- Replies: 11
- Views: 140
PORTEUS DESKTOP 4. not found my HDD
My 4.0 system supports my SSD drive and yes I know an EMMC drive is different.
- 07 Apr 2021, 22:15
- Forum: Bug Reports
- Topic: PORTEUS DESKTOP 4. not found my HDD
- Replies: 11
- Views: 140
PORTEUS DESKTOP 4. not found my HDD
Hello pedro,
Try FAT32 or exFAT.
Have you tried a USB install?
How many partitions does your emmc drive have? And what's on them? Are you multi-booting other OSs?
Try FAT32 or exFAT.
Have you tried a USB install?
How many partitions does your emmc drive have? And what's on them? Are you multi-booting other OSs?
- 07 Apr 2021, 16:29
- Forum: Newbie questions
- Topic: no WIFI
- Replies: 12
- Views: 256
no WIFI
I think a new Porteus version (e.g. v5.0rc3 or v5.1) is long overdue. :D PS: Why does the Porteus website still guide new users to download Porteus v4.0? :(( Because that is the current production version of Porteus. 5.0 is still in development. And yes, long overdue. The pandemic hasn't helped and...
- 07 Apr 2021, 05:41
- Forum: Newbie questions
- Topic: no WIFI
- Replies: 12
- Views: 256
- 04 Apr 2021, 04:59
- Forum: Intermediate/Advanced User Questions
- Topic: Solved : bash script coding question
- Replies: 6
- Views: 329
bash script coding question
This works.


Code: Select all
nohup ./flashplayer $Game > /dev/null 2>&1 &
disown
echo " "
echo " Hope you have fun."
sleep 3
exit
- 31 Mar 2021, 16:43
- Forum: Intermediate/Advanced User Questions
- Topic: Solved : bash script coding question
- Replies: 6
- Views: 329
bash script coding question
Wow! :shock: I learn a thing or two by seeing what others post and by asking questions but to learn 4 new things in one thread is unbelievable. eval disown nohup and an easy array :o All in a simple script to play some old games. :oops: Thank you ncmprhnsbl and burdi01 . :beer: :friends: Added in 1 ...
- 29 Mar 2021, 19:45
- Forum: Community effort
- Topic: My EFI grub for boot porteus
- Replies: 2
- Views: 183
My EFI grub for boot porteus
Thank you luuvki. Your grub code looks like grub2 code, is it?
- 29 Mar 2021, 15:23
- Forum: Community effort
- Topic: ArchLinux packages manager for Porteus
- Replies: 628
- Views: 170420
ArchLinux packages manager for Porteus
Does APorteus support Porteus's save.dat file for changes=?
- 29 Mar 2021, 14:51
- Forum: Intermediate/Advanced User Questions
- Topic: Solved : bash script coding question
- Replies: 6
- Views: 329
bash script coding question
eval Game='$'g$Nbr See e.g. https://unix.stackexchange.com/questions/23111/what-is-the-eval-command-in-bash :D that or a different aproach: use an array: :shock: Wow!! Thank you guys. :beer: A related question, how can I start an app with the script and allow the terminal window to close while the ...
- 28 Mar 2021, 18:46
- Forum: Intermediate/Advanced User Questions
- Topic: Solved : bash script coding question
- Replies: 6
- Views: 329
Solved : bash script coding question
This code. : : g3=space_invaders echo echo 1. $g1 echo echo 2. $g2 echo echo 3. $g3 echo read -p "Select 1, 2 or 3: " Nbr Game="$""g"$Nbr echo Game=$Game echo $Game echo "$g"$Nbr echo $g3 read The output. : : 3. space_invaders Select 1, 2 or 3: 3 Game=$g3 $g3 3 space_invaders When 3 is selected how ...