Linux distra na smatphone-u/tablet-u
Moderator/ica: Moderatori/ce
- PunkBastard
- Postovi: 1975
- Pridružen/a: 19 srp 2011, 22:39
- Spol: M
- OS: Debian 7 Wheezy
- Lokacija: wonderland
Re: Linux distra na smatphone-u/tablet-u
kojom skriptom ? Gdje si našao tu skriptu ?
I don't want to be a human. I want to see gamma rays, I want to hear x-rays and I want to smell dark matter. I want to reach out with something other than this prehensile paws and feel the solar wind of a super nova flowing over me.
-
Tomislav001
- Postovi: 858
- Pridružen/a: 21 lip 2012, 20:36
- PunkBastard
- Postovi: 1975
- Pridružen/a: 19 srp 2011, 22:39
- Spol: M
- OS: Debian 7 Wheezy
- Lokacija: wonderland
Re: Linux distra na smatphone-u/tablet-u
A šta dobiješ sa linux installer aplikacijom ? Nisam skužio iz ovih postova prije što je od čega
I don't want to be a human. I want to see gamma rays, I want to hear x-rays and I want to smell dark matter. I want to reach out with something other than this prehensile paws and feel the solar wind of a super nova flowing over me.
-
Tomislav001
- Postovi: 858
- Pridružen/a: 21 lip 2012, 20:36
Re: Linux distra na smatphone-u/tablet-u
istu grešku dobijem sa skriptom i sa instalerom,valjda koriste istu skriptu 
- PunkBastard
- Postovi: 1975
- Pridružen/a: 19 srp 2011, 22:39
- Spol: M
- OS: Debian 7 Wheezy
- Lokacija: wonderland
Re: Linux distra na smatphone-u/tablet-u
E, da, a dali uređaj podržava loop ?
I don't want to be a human. I want to see gamma rays, I want to hear x-rays and I want to smell dark matter. I want to reach out with something other than this prehensile paws and feel the solar wind of a super nova flowing over me.
-
Tomislav001
- Postovi: 858
- Pridružen/a: 21 lip 2012, 20:36
Re: Linux distra na smatphone-u/tablet-u
da,podržava
baš sam ja sad to gledao ,ali podržava
EDIT: samo sam u terminal napisao export
i izlisto je koješta i među tim je bilo i LOOP_MOUNTPOINT
baš sam ja sad to gledao ,ali podržava
EDIT: samo sam u terminal napisao export
i izlisto je koješta i među tim je bilo i LOOP_MOUNTPOINT
- PunkBastard
- Postovi: 1975
- Pridružen/a: 19 srp 2011, 22:39
- Spol: M
- OS: Debian 7 Wheezy
- Lokacija: wonderland
Re: Linux distra na smatphone-u/tablet-u
četvrta linija, piše "roid", gdje je "and" ?Tomislav001 je napisao/la:evo output od ubuntu-a ovo je skripta sa complete linux installer-a
ali isto dobijem sa onom skriptom
Kod: Označi sve
$ $ cd /sdcard/ubuntu $ su # roid/files/bootscript.sh /sdcard/ubuntu/ubuntu.img source: not found Checking loop device... FOUND No user defined mount points net.ipv4.ip_forward = 1 [1] Segmentation fault ${bbox} chroot $... Shutting down Linux ARM umount: can't umount /data/local/mnt/external_sd: Invalid argument # losetup: /dev/block/loop255: No such device or address
I don't want to be a human. I want to see gamma rays, I want to hear x-rays and I want to smell dark matter. I want to reach out with something other than this prehensile paws and feel the solar wind of a super nova flowing over me.
-
Tomislav001
- Postovi: 858
- Pridružen/a: 21 lip 2012, 20:36
Re: Linux distra na smatphone-u/tablet-u
nema,ima samo 80 mb prostora,ali imam jedan loop od 1gb na sd kartici možda mogu tamo instalirat
- PunkBastard
- Postovi: 1975
- Pridružen/a: 19 srp 2011, 22:39
- Spol: M
- OS: Debian 7 Wheezy
- Lokacija: wonderland
Re: Linux distra na smatphone-u/tablet-u
koliko sam vidio iz skripte on sam napravi taj loop255 file (bar ova za fedoru) ali iz nekog razloga bude "busy" a za ovo drugo nemam ideju
I don't want to be a human. I want to see gamma rays, I want to hear x-rays and I want to smell dark matter. I want to reach out with something other than this prehensile paws and feel the solar wind of a super nova flowing over me.
-
Tomislav001
- Postovi: 858
- Pridružen/a: 21 lip 2012, 20:36
Re: Linux distra na smatphone-u/tablet-u
a što ako prepravim u skripti ovo:
I napravim ovo
prepravim /dev/block/loop255 u /sdcard/loop255
Kod: Označi sve
###########################################
# Set up loop device and mount image #
###########################################
echo -n "Checking loop device... "
if [ -b /dev/block/loop255 ]; then
echo "FOUND"
else
echo "MISSING"
# Loop device not found so we create it and verify it was actually created
echo -n "Creating loop device... "
$bbox mknod /dev/block/loop255 b 7 255
if [ -b /dev/block/loop255 ]; then
echo "OK"
else
echo "FAILED"
error_exit "Unable to create loop device!"
fi
fi
$bbox losetup /dev/block/loop255 $imgfile
if [ $? -ne 0 ];then error_exit "Unable to attach image to loop device! (Image = $imgfile)"; fi
$bbox mount -t ext2 /dev/block/loop255 $mnt
if [ $? -ne 0 ];then error_exit "Unable to mount the loop device!"; fi
prepravim /dev/block/loop255 u /sdcard/loop255
Kod: Označi sve
###########################################
# Set up loop device and mount image #
###########################################
echo -n "Checking loop device... "
if [ -b /sdcard/loop255 ]; then
echo "FOUND"
else
echo "MISSING"
# Loop device not found so we create it and verify it was actually created
echo -n "Creating loop device... "
$bbox mknod /sdcard/loop255 b 7 255
if [ -b /sdcard/loop255 ]; then
echo "OK"
else
echo "FAILED"
error_exit "Unable to create loop device!"
fi
fi
$bbox losetup /sdcard/loop255 $imgfile
if [ $? -ne 0 ];then error_exit "Unable to attach image to loop device! (Image = $imgfile)"; fi
$bbox mount -t ext2 /sdcard/loop255 $mnt
if [ $? -ne 0 ];then error_exit "Unable to mount the loop device!"; fi